| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /*
- * File: Subsystem.c
- *
- * Code generated for Simulink model 'Subsystem'.
- *
- * Model version : 1.2
- * Simulink Coder version : 9.4 (R2020b) 29-Jul-2020
- * C/C++ source code generated on : Fri Oct 14 20:06:32 2022
- *
- * Target selection: ert.tlc
- * Embedded hardware selection: ARM Compatible->ARM Cortex-M
- * Code generation objectives:
- * 1. Execution efficiency
- * 2. RAM efficiency
- * Validation result: Not run
- */
- #include "Subsystem.h"
- /* Block signals and states (default storage) */
- DW rtDW;
- /* External inputs (root inport signals with default storage) */
- ExtU rtU;
- /* External outputs (root outports fed by signals with default storage) */
- ExtY rtY;
- /* Model step function */
- void Subsystem_step(void)
- {
- real_T rtb_DiscreteTimeIntegrator;
- /* Outputs for Atomic SubSystem: '<Root>/Subsystem' */
- /* DiscreteIntegrator: '<S1>/Discrete-Time Integrator' */
- rtb_DiscreteTimeIntegrator = rtDW.DiscreteTimeIntegrator_DSTATE;
- /* Outport: '<Root>/target' incorporates:
- * DiscreteIntegrator: '<S1>/Discrete-Time Integrator1'
- */
- rtY.target = rtDW.DiscreteTimeIntegrator1_DSTATE;
- /* Update for DiscreteIntegrator: '<S1>/Discrete-Time Integrator' incorporates:
- * DiscreteIntegrator: '<S1>/Discrete-Time Integrator1'
- * Gain: '<S1>/Gain'
- * Gain: '<S1>/Gain1'
- * Inport: '<Root>/in'
- * Inport: '<Root>/time'
- * Math: '<S1>/Math Function'
- * Product: '<S1>/Product'
- * Product: '<S1>/Product1'
- * Sum: '<S1>/Sum'
- * Sum: '<S1>/Sum1'
- */
- rtDW.DiscreteTimeIntegrator_DSTATE += ((rtDW.DiscreteTimeIntegrator1_DSTATE -
- rtU.in) * -(rtU.time * rtU.time) + -2.0 * rtU.time *
- rtDW.DiscreteTimeIntegrator_DSTATE) * 6.25E-5;
- /* Update for DiscreteIntegrator: '<S1>/Discrete-Time Integrator1' */
- rtDW.DiscreteTimeIntegrator1_DSTATE += 6.25E-5 * rtb_DiscreteTimeIntegrator;
- /* End of Outputs for SubSystem: '<Root>/Subsystem' */
- /* Outport: '<Root>/diff' */
- rtY.diff = rtb_DiscreteTimeIntegrator;
- }
- /* Model initialize function */
- void Subsystem_initialize(void)
- {
- /* (no initialization code required) */
- }
- /*
- * File trailer for generated code.
- *
- * [EOF]
- */
|