Input/output
Input: u
Output: y
Parameters
Rules
u1, u2, etc are reserved for inputs
y1, y2, etc. are used for outputs
All inputs, outputs and modifiable parameters are double
Examples
double a = 1.23; b = 3.45
y1 = a · u1/* output 1 */
y2 = a · u2/* output 2 */
Notes
C code errors will only be detected during compilation. This block is intended for
simple C code only. For more complex code, use the User-coded Model (UCM)