Analysis Control Data hinge.cnt¶
Defines the analysis type, displacement boundary conditions, concentrated loads, and other settings, and also specifies controls for the solver and visualizer.
# Control File for FISTR
## Analysis Control
!VERSION
3
!SOLUTION, TYPE=STATIC
!WRITE,RESULT
!WRITE,VISUAL
## Solver Control
### Boundary Conditon
!BOUNDARY
BND0, 1, 3, 0.000000
!BOUNDARY
BND1, 1, 3, 0.000000
!CLOAD
CL0, 1, 0.01000
### Material
!MATERIAL, NAME=STEEL
!ELASTIC
210000.0, 0.3
!DENSITY
7.85e-6
### Solver Setting
!SOLVER,METHOD=CG,PRECOND=1,ITERLOG=YES,TIMELOG=YES
10000, 1
1.0e-08, 1.0, 0.0
## Post Control
!VISUAL,method=PSR
!surface_num=1
!surface 1
!output_type=VTK
!END
- !VERSION: Specify the file format version
- !SOLUTION: Specify the analysis type
- !WRITE,RESULT: Specify result data output
- !WRITE,VISUAL: Specify visualization data output
- !BOUNDARY: Set Dirichlet boundary conditions
- !CLOAD: Set concentrated loads
- !MATERIAL: Specify material properties
- !ELASTIC: Define elastic material properties
- !DENSITY: Define mass density
- !SOLVER: Control the solver
- !visual: Specify the visualization method
- !surface_num: Number of surfaces in one surface rendering
- !surface: Specify the surface contents
- !output_type: Specify the visualization file type
- !END: Indicate the end of the analysis control data