! ----------------------------------------------------------------------
! M06 - English course download: 06_start.mac
! Follow the matching English lesson for explanations and task details.
! Commands, parameter names, file names, CSV keys, and result tokens are preserved.
! ----------------------------------------------------------------------

/CLEAR,START
/FILNAME,m06_start,1
/UNITS,SI

beam_l=1.0
beam_h=0.10
beam_b=0.05
mesh_h=0.05
young=210E9
nu=0.30
tip_force=-1000

! TODO 1: rebuild the SOLID185 beam from M05.
! TODO 2: create fixed_nodes and tip_nodes without using IDs.
! TODO 3: apply the fixed support and distribute tip_force.
! TODO 4: declare a one-load-step linear static analysis.
!   ANTYPE,STATIC + NLGEOM,OFF define linear static.
!   KBC,1 and NSUBST,1 set a single stepped substep.
!   OUTRES,ALL,LAST keeps results from the last substep.
! TODO 5: solve and check that a result set exists.
!   SOLVE runs the load step; SET,LAST loads the last set in /POST1.
! TODO 6: sum the reactions and reconstruct their moment
!         about the center of the fixed face.
!   *GET,...,RF reads nodal reactions; SPOINT+FSUM checks totals.
! TODO 7: generate m06_equilibrium_audit.csv.
!
! Prediction:
! RFY=+1000 N, RMZ=+1000 N*m
! force_error<0.005, moment_error<0.005, passes=1

FINISH
