@@ -364,7 +364,7 @@ def __init__(
364364 self ._optimization_options = {'startTime' : 0.0 , 'stopTime' : 1.0 , 'numberOfIntervals' : 500 , 'stepSize' : 0.002 ,
365365 'tolerance' : 1e-8 }
366366 self ._linearized_inputs : list [str ] = [] # linearization input list
367- self ._linearoutputs : list [str ] = [] # linearization output list
367+ self ._linearized_outputs : list [str ] = [] # linearization output list
368368 self ._linearstates : list [str ] = [] # linearization states list
369369
370370 if session is not None :
@@ -1460,7 +1460,7 @@ def load_module_from_path(module_name, file_path):
14601460 result = module .linearized_model ()
14611461 (n , m , p , x0 , u0 , A , B , C , D , stateVars , inputVars , outputVars ) = result
14621462 self ._linearized_inputs = inputVars
1463- self ._linearoutputs = outputVars
1463+ self ._linearized_outputs = outputVars
14641464 self ._linearstates = stateVars
14651465 return LinearizationResult (n , m , p , A , B , C , D , x0 , u0 , stateVars ,
14661466 inputVars , outputVars )
@@ -1473,7 +1473,7 @@ def getLinearInputs(self) -> list[str]:
14731473
14741474 def getLinearOutputs (self ) -> list [str ]:
14751475 """Get names of output variables of the linearized model."""
1476- return self ._linearoutputs
1476+ return self ._linearized_outputs
14771477
14781478 def getLinearStates (self ) -> list [str ]:
14791479 """Get names of state variables of the linearized model."""
0 commit comments