You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add complete initial conditions for all state variables (L1.i, inertia.w, inertia.phi, pi_controller.int.x) to avoid underdetermined system warning
- Add note about Pluto-specific variable naming requirements
- Use unique variable names in sensitivity analysis to avoid conflicts
Fixes#410
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
If you're using this example in a Pluto notebook, note that Pluto requires each variable to have a unique name.
103
+
If you encounter "Multiple definitions" errors, rename variables accordingly (e.g., `simplified_sys1`, `simplified_sys2`, etc.).
104
+
This is due to Pluto's reactive behavior where all variables must be uniquely named for automatic dependency tracking.
105
+
90
106
## Closed-loop analysis
91
107
92
108
When implementing and tuning a control system in simulation, it is a good practice to analyze the closed-loop properties and verify robustness of the closed-loop with respect to, e.g., modeling errors. To facilitate this, we added two analysis points to the set of connections above, more specifically, we added the analysis points named `:y` and `:u` to the connections (for more details on analysis points, see [Linear Analysis](@ref))
0 commit comments