Hi all,
I’m currently working on writing Python code that performs the finite-element simulation from scratch using a tool called FeNiCS/dolfinx, so that I can learn more about how PrePoMax applies the loads/boundary conditions behind the scenes. This involves parsing the input .inp file myself, I just need some help understanding what some of the lines in the .inp file mean and was hoping someone in this group could help me clarify.
The boundary conditions are indicated like this:
** Boundary conditions +++++++++++++++++++++++++++++++++++++ ** *Boundary, op=New ** Name: Fixed-1 *Boundary Internal_Selection-1_Fixed-1, 1, 6, 0
I understand that “Internal_Selection-1_Fixed-1” is a node set that the boundary condition will be applied to. But I’m wondering what the “1, 6, 0” after that represents, and I couldn’t find much from Googling online – is that a range of DOFs?
I might have some follow-up questions depending on the response. I really appreciate your help in advance!
Thank you,
Mia