Search found 7 matches

by NewbieSimulator
Tue May 16, 2017 4:16 pm
Forum: Python scripting and macros
Topic: Sketch Feature to create linkage mechanism simulator
Replies: 7
Views: 4231

Re: Sketch Feature to create linkage mechanism simulator

this code is the one responsible for changing the value of the selected constraint, in this case, my angular constraint is number 9, but you must always subtract 1. I honestly don't know why. The OCC geometry kernel indexes arrays [1..n] rather than the usual C++/Python convention of [0..n-1]. The ...
by NewbieSimulator
Thu May 11, 2017 1:06 pm
Forum: Python scripting and macros
Topic: Sketch Feature to create linkage mechanism simulator
Replies: 7
Views: 4231

Re: Sketch Feature to create linkage mechanism simulator

I made a video regarding making a simple four-bar linkage and sliding linkage.

https://www.youtube.com/watch?v=8llFZxxloXg

there is no python scripting in the video , since the animation script doesn't seem to work in the version of freeCAD I'm using.
by NewbieSimulator
Tue Apr 18, 2017 12:49 pm
Forum: Python scripting and macros
Topic: Sketch Feature to create linkage mechanism simulator
Replies: 7
Views: 4231

Re: Sketch Feature to create linkage mechanism simulator

Hello, I'm new to FreeCad and the forum. Could you walk me through step by step on the procedure. I've tried what you did but it did not work for me. I'm hoping to simulate a Five Bar Mechanism one day similar to Dexter Robot. Thank You Sai This 2D technique is only limited to studying kinematics o...
by NewbieSimulator
Fri Apr 14, 2017 11:42 am
Forum: Help on using FreeCAD
Topic: Other open freecad files are blocking my macro and drawing workspace
Replies: 3
Views: 806

Re: Other open freecad files are blocking my macro and drawing workspace

For some users who are not familiar with choosing which files to install
This one worked for me.
FreeCAD_0.17-10808.8f5057a-OSX-x86_64-Qt5.dmg
by NewbieSimulator
Fri Apr 14, 2017 11:42 am
Forum: Help on using FreeCAD
Topic: Other open freecad files are blocking my macro and drawing workspace
Replies: 3
Views: 806

Re: Other open freecad files are blocking my macro and drawing workspace

Hi @NewbieSimulator. This is a known issue on macOS and it was resolved only recently. FreeCAD 0.17 development release is needed to be build against Qt 5 for the issue to be resolved. Luckily such builds for macOS are available here: https://github.com/FreeCAD/FreeCAD/releases Well that escalated ...
by NewbieSimulator
Fri Apr 14, 2017 8:41 am
Forum: Help on using FreeCAD
Topic: Other open freecad files are blocking my macro and drawing workspace
Replies: 3
Views: 806

Other open freecad files are blocking my macro and drawing workspace

OS: Mac OS X Word size of OS: 64-bit Word size of FreeCAD: 64-bit Version: 0.16.6706 (Git) Build type: Release Branch: tag: 0.16.6706 Hash: f86a4e411ff7848dea98d7242f43b7774bee8fa0 Python version: 2.7.11 Qt version: 4.8.7 Coin version: 3.1.3 OCC version: 6.8.0.oce-0.17 This happens all the time. If ...
by NewbieSimulator
Tue Apr 11, 2017 1:57 pm
Forum: Python scripting and macros
Topic: Sketch Feature to create linkage mechanism simulator
Replies: 7
Views: 4231

Sketch Feature to create linkage mechanism simulator

The sketch feature can be used to create linkage kinematics simulation using constraints such as lock, coincide, length, angle, etc... And using the python script you can make an animation out of it. It's good enough that you can make an animated jansen mechanism using it. I'm new at python scriptin...