Allows to export a tailored Runge-Kutta sensitivity propagation for fast model predictive control. More...
#include <rk_sensitivities_export.hpp>
Protected Member Functions | |
virtual returnValue | sensitivitiesImplicitSystem (ExportStatementBlock *block, const ExportIndex &index1, const ExportIndex &index2, const ExportIndex &index3, const ExportIndex &tmp_index1, const ExportIndex &tmp_index2, const ExportVariable &Ah, const ExportVariable &Bh, const ExportVariable &det, bool STATES, uint number)=0 |
virtual returnValue | sensitivitiesInputSystem (ExportStatementBlock *block, const ExportIndex &index1, const ExportIndex &index2, const ExportVariable &Bh, bool STATES)=0 |
virtual returnValue | sensitivitiesOutputs (ExportStatementBlock *block, const ExportIndex &index0, const ExportIndex &index1, const ExportIndex &index2, const ExportIndex &tmp_index1, const ExportIndex &tmp_index2, const ExportIndex &tmp_index3, const ExportVariable &tmp_meas, const ExportVariable &time_tmp, bool STATES, uint base)=0 |
virtual returnValue | sensitivitiesOutputSystem (ExportStatementBlock *block, const ExportIndex &index1, const ExportIndex &index2, const ExportIndex &index3, const ExportIndex &index4, const ExportIndex &tmp_index1, const ExportIndex &tmp_index2, const ExportVariable &Ah, const ExportVariable &Bh, bool STATES, uint number)=0 |
Allows to export a tailored Runge-Kutta sensitivity propagation for fast model predictive control.
The class RKSensitivitiesExport allows to export a tailored Runge-Kutta sensitivity propagation for fast model predictive control.
Definition at line 53 of file rk_sensitivities_export.hpp.
|
protectedpure virtual |
Exports the code needed to compute the sensitivities of the states defined by the nonlinear, fully implicit system.
@param[in] block The block to which the code will be exported. @param[in] Ah The variable containing the internal coefficients of the RK method, multiplied with the step size. @param[in] Bh The variable containing the weights of the RK method, multiplied with the step size. @param[in] det The variable that holds the determinant of the matrix in the linear system. @param[in] STATES True if the sensitivities with respect to a state are needed, false otherwise. @param[in] number This number defines the stage of the state with respect to which the sensitivities are computed. \return SUCCESSFUL_RETURN
Implemented in DiagonallyImplicitRKExport, and ForwardIRKExport.
|
protectedpure virtual |
Exports the code needed to compute the sensitivities of the states, defined by the linear input system.
@param[in] block The block to which the code will be exported. @param[in] Bh The variable containing the weights of the RK method, multiplied with the step size. @param[in] STATES True if the sensitivities with respect to a state are needed, false otherwise. \return SUCCESSFUL_RETURN
Implemented in ForwardLiftedIRKExport, and ForwardIRKExport.
|
protectedpure virtual |
Exports the computation of the sensitivities for the continuous output.
@param[in] block The block to which the code will be exported. @param[in] tmp_meas The number of measurements in the current integration step (in case of an online grid). @param[in] rk_tPrev The time point, defining the beginning of the current integration step (in case of an online grid). @param[in] time_tmp A variable used for time transformations (in case of an online grid). @param[in] STATES True if the sensitivities with respect to a state are needed, false otherwise. @param[in] base The number of states in stages with respect to which the sensitivities have already been computed. \return SUCCESSFUL_RETURN
Implemented in ForwardLiftedIRKExport, and ForwardIRKExport.
|
protectedpure virtual |
Exports the code needed to compute the sensitivities of the states, defined by the linear output system.
@param[in] block The block to which the code will be exported. @param[in] Ah The variable containing the internal coefficients of the RK method, multiplied with the step size. @param[in] Bh The variable containing the weights of the RK method, multiplied with the step size. @param[in] STATES True if the sensitivities with respect to a state are needed, false otherwise. @param[in] number This number defines the stage of the state with respect to which the sensitivities are computed. \return SUCCESSFUL_RETURN
Implemented in ForwardLiftedIRKExport, ForwardIRKExport, and DiagonallyImplicitRKExport.