*COUPLING and *DISTRIBUTING with CPE8R

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!

It seems that you have BC applied to the same face (edge) as coupling constraint:

I guess you wanted to define:

*SURFACE, NAME=S1
1, S2

Thank you, @Calc_em, for the quick reply! You’re right, of course—but unfortunately, that doesn’t change the outcome for me. The deformation and stress components remain zero. Are you seeing the same results?

If I run this model with CalculiX - yes. But not when running the same model in Abaqus so it’s a CalculiX bug/limitation. Try with C3D20R element to which CPE8R is extended.

It works with DCOUP3D element but you will have to enter the weights manually for each node.

*ELEMENT,TYPE=DCOUP3D
2,9
*ELSET,ELSET=EL1
2
*DISTRIBUTING COUPLING,ELSET=EL1
2,0.166666666666683
6,0.666666666666633
3,0.166666666666683

Anyway would be best to report the bug.

@Calc_em:
Thanks a lot for testing and confirming this issue! I’ll definitely report this as a bug. Could you tell me where the best place is to report CalculiX bugs or issues? Is there a preferred forum, mailing list, or GitHub repository? Or should I report to @dhondt?

@Disla:
Thanks for suggesting DCOUP3D. It’s indeed a useful workaround, but unfortunately not practical for my case. I work at the Max Planck Institute in fusion research, and we’re developing a tool to rapidly evaluate structural loads on a toroidal field coil. Our geometries are more complex, so specifying node weights manually isn’t feasible.

I might have to switch to a full 3D model, but then I’d need to apply distributed electromagnetic body forces across volumes. I suspect that approach might also come with its own challenges.

Thanks again to both of you—I really appreciate your helpful feedback!

1 Like

It’s best to report issues here: GitHub · Where software is built

Although we often contact @dhondt directly via e-mail when it comes to particularly problematic bugs.