Learning a new type of modeling software can be an intimidating task, especially for someone who has not done a lot of previous modeling.
ALL DYNSYSTEM codes use a common library of simple commands. Because of DYNSYSTEM's familiar user interface amongst all of the code components, it is easy to use any of these components once you learn how to use one.
Below is an example of a DYNFLOW code used to complete a steady-state flow simulation run. Notice the simple, intuitive commands used.
Explanation:
|

|
!Sample.cfi - Simulation fixed heads
OUTPUT sample.out
!Restore starting save file containing grid and material properties
RESTORE sample_start.sav
!Set elevations for all levels
ELEVATION READ topo.elv LEVEL ALL
!Set boundary conditions
HEAD READ sample.hds
FIXHEAD 30. LEVEL ALL NODE &
1, 2, 5, 6, 77, 79, 85, 88, 91, 94 &
97, 100, 103, 106, 109, 112, 115, 118, 8, 10 &
16, 18, 20, 22, 24,
!Simulation controls
TOLERANCE 0.1
ITERATION 4
GOTIL 0.
SAVE sample.sav
END