Delimit the main model code section

Syntax


model <model name>

Description


The MODEL keyword denoted the beginning of the outermost section in which most other model code is contained (with the exception of the experimental SUBMODEL section).  The MODEL keyword is followed by a model name, which must be a valid variable name in the CSL language.  A corresponding END statement denotes the end of the MODEL section.

Example


model Bounce

   derivative

       ! Derivative statements follow

   end ! derivative

end ! model