File tree 1 file changed +0
-61
lines changed
src/main/java/edu/ie3/datamodel/models/input/thermal
1 file changed +0
-61
lines changed Original file line number Diff line number Diff line change @@ -115,66 +115,5 @@ public static class DomesticHotWaterStorageInputCopyBuilder
115
115
public DomesticHotWaterStorageInputCopyBuilder (DomesticHotWaterStorageInput entity ) {
116
116
super (entity );
117
117
}
118
-
119
- @ Override
120
- public DomesticHotWaterStorageInputCopyBuilder storageVolumeLvl (
121
- ComparableQuantity <Volume > storageVolumeLvl ) {
122
- this .storageVolumeLvl = storageVolumeLvl ;
123
- return this ;
124
- }
125
-
126
- @ Override
127
- public DomesticHotWaterStorageInputCopyBuilder inletTemp (
128
- ComparableQuantity <Temperature > inletTemp ) {
129
- this .inletTemp = inletTemp ;
130
- return this ;
131
- }
132
-
133
- @ Override
134
- public DomesticHotWaterStorageInputCopyBuilder returnTemp (
135
- ComparableQuantity <Temperature > returnTemp ) {
136
- this .returnTemp = returnTemp ;
137
- return this ;
138
- }
139
-
140
- @ Override
141
- public DomesticHotWaterStorageInputCopyBuilder c (ComparableQuantity <SpecificHeatCapacity > c ) {
142
- this .c = c ;
143
- return this ;
144
- }
145
-
146
- @ Override
147
- public DomesticHotWaterStorageInputCopyBuilder pThermalMax (
148
- ComparableQuantity <Power > pThermalMax ) {
149
- this .pThermalMax = pThermalMax ;
150
- return this ;
151
- }
152
-
153
- @ Override
154
- public DomesticHotWaterStorageInputCopyBuilder scale (Double factor ) {
155
- storageVolumeLvl (this .storageVolumeLvl .multiply (factor ));
156
- pThermalMax (this .pThermalMax .multiply (factor ));
157
- return this ;
158
- }
159
-
160
- @ Override
161
- public DomesticHotWaterStorageInput build () {
162
- return new DomesticHotWaterStorageInput (
163
- getUuid (),
164
- getId (),
165
- getOperator (),
166
- getOperationTime (),
167
- getThermalBus (),
168
- this .storageVolumeLvl ,
169
- this .inletTemp ,
170
- this .returnTemp ,
171
- this .c ,
172
- this .pThermalMax );
173
- }
174
-
175
- @ Override
176
- protected DomesticHotWaterStorageInputCopyBuilder thisInstance () {
177
- return this ;
178
- }
179
118
}
180
119
}
You can’t perform that action at this time.
0 commit comments