Hi everyone,
I’m having trouble with a minimal example using a plane‐stress CPE8R element in CalculiX. My goal is to model a unit square (representing a quarter of a plate) with symmetry boundary conditions on the x = 0 and y = 0 edges. I want to apply a load along the free right edge (x = 1) by using a coupling constraint that distributes the load from a reference node to that edge. However, when I run the simulation, I get zero deformations and stresses in the model.
Below is the minimal input file I’m using:
** Node definitions (all nodes lie in the x-y plane; z=0)
*NODE
1, 0.0, 0.0, 0.0
2, 1.0, 0.0, 0.0
3, 1.0, 1.0, 0.0
4, 0.0, 1.0, 0.0
5, 0.5, 0.0, 0.0
6, 1.0, 0.5, 0.0
7, 0.5, 1.0, 0.0
8, 0.0, 0.5, 0.0
9, 1.0, 1.0, 0.0
** Element definition for a single 8-node plane-strain element (CPE8R)
*ELEMENT, TYPE=CPE8R, ELSET=Eall
1, 1,2,3,4,5,6,7,8
** Define surface S1 representing the right edge (x=1 edge)
*SURFACE, NAME=S1
1, S4
** Define symmetry node sets for the quarter model:
** NSX: Nodes on the x=0 edge (constrain displacement in x)
*NSET, NSET=NSX
1,4,8
** NSY: Nodes on the y=0 edge (constrain displacement in y)
*NSET, NSET=NSY
1,2,5
** Material and section definitions
*MATERIAL, NAME=STEEL
*ELASTIC
210000, 0.3
** For plane stress elements a thickness is required (here set to 1.0)
*SOLID SECTION, MATERIAL=STEEL, ELSET=Eall
1.0
** Coupling definition:
** The reference node (node 9) is coupled to the right edge (surface S1).
** Any force in degree of freedom 1 (x-direction) applied at node 9
** will be distributed (area-weighted) over surface S1.
*COUPLING, REF NODE=9, SURFACE=S1, CONSTRAINT NAME=DistCoupling
*DISTRIBUTING
1,1
*STEP
*STATIC
** Apply symmetry boundary conditions:
** Constrain x-displacement for nodes on the x=0 edge (NSX)
*BOUNDARY
NSX, 1, 1, 0.0
** Constrain y-displacement for nodes on the y=0 edge (NSY)
*BOUNDARY
NSY, 2, 2, 0.0
** Apply load:
** A 1 N force in the x-direction is applied at the reference node (node 9)
*CLOAD
9, 1, 1.0
*NODE FILE
U, RF
*EL FILE
S, E
*END STEP
Problem Description:
When running this simulation, I always end up with zero deformation and stress results. I suspect either the load isn’t correctly transmitted via the coupling or that perhaps I misunderstand how the *COUPLING
and *DISTRIBUTING
cards function with CPE (plane-strain) elements.
Question:
Has anyone encountered similar issues when using *COUPLING
with a CPE8R element for load distribution? I’d appreciate any insights or suggestions on how to modify the setup so that the load is effectively transmitted into the model.
Thanks in advance!