Can we apply mid force? #273
-
Hello, I am new to the community. I would like to model the deformation of a slender fiber. From the documentation, it looks like I can only apply end forces or uniform forces. Can I apply a force anywhere along the length of the fiber? If not, would I have to split the fiber into two rods and apply the force as EndForce? I don't see any connection that would capture a continuous smooth fiber. I apologize if the question is basic or silly. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @vkapre , Yes, you can do that on a single rod. You must define a custom force class (based on NoForces class) like the ones in the external_forces.py file. Then in the apply_forces function you have access to system.external_forces where you can apply forces on each node you want. Let me know if it helps |
Beta Was this translation helpful? Give feedback.
Hi @vkapre ,
Yes, you can do that on a single rod. You must define a custom force class (based on NoForces class) like the ones in the external_forces.py file. Then in the apply_forces function you have access to system.external_forces where you can apply forces on each node you want.
Let me know if it helps