diff --git a/src/libecalc/presentation/yaml/yaml_types/models/yaml_compressor_trains.py b/src/libecalc/presentation/yaml/yaml_types/models/yaml_compressor_trains.py index 9ff4bef2f..279099c63 100644 --- a/src/libecalc/presentation/yaml/yaml_types/models/yaml_compressor_trains.py +++ b/src/libecalc/presentation/yaml/yaml_types/models/yaml_compressor_trains.py @@ -97,11 +97,6 @@ def to_dto(self): class YamlVariableSpeedCompressorTrainMultipleStreamsAndPressures(YamlCompressorTrainBase): - name: str = Field( - ..., - description="Name of the model. See documentation for more information.", - title="NAME", - ) type: Literal[YamlModelType.VARIABLE_SPEED_COMPRESSOR_TRAIN_MULTIPLE_STREAMS_AND_PRESSURES] = Field( YamlModelType.VARIABLE_SPEED_COMPRESSOR_TRAIN_MULTIPLE_STREAMS_AND_PRESSURES, description="Defines the type of model. See documentation for more information.", @@ -119,9 +114,5 @@ class YamlVariableSpeedCompressorTrainMultipleStreamsAndPressures(YamlCompressor title="STREAMS", ) - maximum_power: str = Field( - ..., description="Optional constant MW maximum power the compressor train can require", title="MAXIMUM_POWER" - ) - def to_dto(self): raise NotImplementedError