Hello,
I am encountering a silent termination issue when running an orthotropic material analysis in CalculiX.
The solver stops without any error message, and no .dat or .frd results are generated.
Details:
- CalculiX version: 2.20
- Platform: Windows
- Model: simple test model
- Material: orthotropic elastic constants
Observations:
- Isotropic material works fine
- When switching to orthotropic definition, the solver terminates silently
I suspect it might be related to:
- *ELASTIC, TYPE=ENGINEERING CONSTANTS
- or orientation definition
Could you please advise what might cause this behavior?
Thank you.
Here is the minimal input file:
The only difference between the two cases is the material definition.
iso_case.inp (works)
*HEADING
ISO VS ORTHO COMPARISON - ISO CASE
*NODE
1,0,0,0
2,1,0,0
3,1,1,0
4,0,1,0
5,0,0,1
6,1,0,1
7,1,1,1
8,0,1,1
*ELEMENT, TYPE=C3D8, ELSET=EALL
1,1,2,3,4,5,6,7,8
*SOLID SECTION, ELSET=EALL, MATERIAL=MAT1
*MATERIAL, NAME=MAT1
*ELASTIC
210000., 0.3
*BOUNDARY
1,1,3,0.
4,1,3,0.
5,1,3,0.
*STEP
*STATIC
*CLOAD
7,3,-1000.
*END STEP
ortho_case.inp (fails)
*HEADING
ISO VS ORTHO COMPARISON - ORTHO CASE
*NODE
1,0,0,0
2,1,0,0
3,1,1,0
4,0,1,0
5,0,0,1
6,1,0,1
7,1,1,1
8,0,1,1
*ELEMENT, TYPE=C3D8, ELSET=EALL
1,1,2,3,4,5,6,7,8
*SOLID SECTION, ELSET=EALL, MATERIAL=MAT1
*MATERIAL, NAME=MAT1
*ELASTIC, TYPE=ORTHOTROPIC
210000., 210000., 210000.,
0.3, 0.3, 0.3,
80769., 80769., 80769.
*BOUNDARY
1,1,3,0.
4,1,3,0.
5,1,3,0.
*STEP
*STATIC
*CLOAD
7,3,-1000.
*END STEP



