! ----------------------------------------------------------------------
! M05 - English course download: 05_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,m05_start,1
/UNITS,SI

beam_l=1.0
beam_h=0.10
beam_b=0.05
mesh_h=0.05
tip_force=-1000

! TODO 1: build the structured mesh inherited from M04.
! TODO 2: create fixed_nodes and tip_nodes without IDs.
! TODO 3: enter /SOLU and apply the fixed support.
!   D fixes degrees of freedom (constraints) on selected nodes.
! TODO 4: distribute tip_force among the tip nodes.
!   F applies concentrated nodal forces in the indicated direction.
! TODO 5: use DLIST, FLIST, and an audit with *GET.
!   DLIST and FLIST document applied BCs as readable evidence.
!   NDNEXT traverses nodes without IDs; *GET reads D and F stored in the database.
! Do not use ANTYPE, SOLVE, /POST1, or FSUM.

FINISH
