eggy wrote: ↑Sat Jun 24, 2017 3:56 pm
I need to place a Direction on the force constraint on my model. It is placed on the inside of the cylindrical face. I want to choose a Direction that does not match any face or edge in my model.
Is it possible to edit the .inp file (is that where I would find the Direction?) or other file to put in a vector?
[...]
Eggy
Hello,
here maybe some solution without support-geometry for general load vector:
1) possibility for defining general loadvector, if edges or faces in global x,y,z-direction are available:
-> Define 3 single forces in the FEM-modul on the identical face(s) you want. First force is pointing only in global x, 2nd only in y and last only in z-direction. Then give them the desired x,y,z-compents of your special force vector (every forces gets only one global force component).
2) regarding input file (inp):
Is the manipulation of the direction of the forces at nodes in the input file (.inp) a correct approach? The force values stay unaffected. Is afterwords the single force at every node correct regarding the global force distribution of the load regarding the new direction?
The structure of the inputfile for force looks like this for me:
nodenumber,direction,forcevalue
For example changing the given Y-Direction = 2 to Z-Direction = 3?
Original-FreeCAD inp-File (Y=2):
...
*CLOAD
** FemConstraintForce
** node loads on shape: Part__Feature:Face5
1,2,0.0000000000000E+00
2,2,0.0000000000000E+00
...
Manipulated inp-File (Z=3):
...
*CLOAD
** FemConstraintForce
** node loads on shape: Part__Feature:Face5
1,3,0.0000000000000E+00
2,3,0.0000000000000E+00
...
Point 2) would be helpfull if for example only one face in x-direction is available. The force in y- and z-direction could then be generated with a manipulated inp-file.