defines active flags for boundary aliases
The ACTIVE statement specifies whether BoundaryElements are participating in the initial filling and/or are visible for the pointcloud during the simulation phase.
A definition of an ACTIVE definition is a tupel. The first entry is for the initial filling phase (%ACTIVE_init%, %ACTIVE_noinit%, %ACTIVE_nofill%) (mandatory) and the second entry for the actual simulation (%ACTIVE_always%) (optional). Leaving away %ACTIVE_always% will deactivate the boundary during simulation.
The Common combinations for ACTIVE statements are:If the boundary has to be switched on/off after certain simulation times, or if there are activity intervals, the keyword %ACTIVE_interval% can be used:
Also a function can be provided for determining, if a boundary element shall be active or not.
The given function is evaluated for every boundary element in every timestep and if the result is > 0, then it is active. Else, it is inactive. In particular, BE_Functions can be used.
Good to know:| List of members: | |
|---|---|
| %ACTIVE_init% | active during initial filling |
| %ACTIVE_nofill% | only visible during initial filling |
| %ACTIVE_noinit% | not active during initial filling |
| %ACTIVE_always% | active during simulation |
| %ACTIVE_interval% | active during simulation in time intervals |
| %ACTIVE_function% | active during simulation by trigger function |