48 if (msg) msg->clear();
54 if (msg) *msg +=
"Controller not specified.\n";
60 if (msg) *msg +=
"Observer not specified.\n";
66 if (msg) *msg +=
"Plant not specified.\n";
68 if (!ret_val)
return false;
71 int controller_state_dim =
getController()->getStateDimension();
72 int controller_control_dim =
getController()->getControlInputDimension();
74 int observer_output_dim =
getObserver()->getOutputDimension();
75 int observer_state_dim =
getObserver()->getStateDimension();
77 int plant_input_dim =
getPlant()->getInputDimension();
78 int plant_output_dim =
getPlant()->getOutputDimension();
81 if (controller_control_dim != plant_input_dim)
86 *msg +=
"Contol input dimension (" + std::to_string(controller_control_dim) +
") does not match plant intput dimension (" +
87 std::to_string(plant_input_dim) +
").\n";
97 *msg +=
"Plant output dimension (" + std::to_string(plant_output_dim) +
") does not match the input dimension of the observer (" +
98 std::to_string(observer_output_dim) +
").\n";
103 if (observer_state_dim != controller_state_dim && observer_state_dim !=
property::INHERITED)
108 *msg +=
"Observer state dimension (" + std::to_string(observer_state_dim) +
") does not match the state dimension of the controller (" +
109 std::to_string(controller_state_dim) +
").\n";
117 if (observer_state_dim != controller_state_dim)
122 *msg +=
"Observer input dimension is inherited from the plant output dimension (" + std::to_string(plant_output_dim) +
123 ") and does not match the state dimension of the observer (" + std::to_string(observer_state_dim) +
").\n";
130 if (plant_output_dim != controller_state_dim)
135 *msg +=
"Observer state dimension is inherited from the plant output dimension (" + std::to_string(plant_output_dim) +
136 ") and does not match the state dimension of the controller (" + std::to_string(controller_state_dim) +
").\n";
143 if (observer_state_dim != controller_state_dim)
148 *msg +=
"Observer state dimension is inherited from the observer input dimension (" + std::to_string(observer_output_dim) +
149 ") and does not match the state dimension of the controller (" + std::to_string(controller_state_dim) +
").\n";