File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed
Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -1330,9 +1330,13 @@ end
13301330"""
13311331$(TYPEDSIGNATURES)
13321332
1333- Get the parameters of the system `sys` and its subsystems.
1333+ Get the standard parameters of the system `sys` and its subsystems.
13341334
1335- See also [`@parameters`](@ref) and [`ModelingToolkit.get_ps`](@ref).
1335+ # Keyword arguments
1336+
1337+ - `initial_parameters`: Whether to include parameters for initial values of variables in the initialization system.
1338+
1339+ See also [`full_parameters`](@ref) and [`ModelingToolkit.get_ps`](@ref).
13361340"""
13371341function parameters (sys:: AbstractSystem ; initial_parameters = false )
13381342 ps = get_ps (sys)
@@ -1387,6 +1391,13 @@ function parameter_dependencies(sys::AbstractSystem)
13871391 return vcat (namespaced_deps, pdeps)
13881392end
13891393
1394+ """
1395+ $(TYPEDSIGNATURES)
1396+
1397+ Get all parameters of the system `sys` and its subsystems, including initial values and dependent parameters.
1398+
1399+ See also [`parameters`](@ref) and [`ModelingToolkit.get_ps`](@ref).
1400+ """
13901401function full_parameters (sys:: AbstractSystem )
13911402 vcat (parameters (sys; initial_parameters = true ), dependent_parameters (sys))
13921403end
You can’t perform that action at this time.
0 commit comments