Skip to content

Commit

Permalink
Merge branch 'refs/heads/dev' into df/#856-tap-water
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/test/scala/edu/ie3/simona/test/common/input/CylindricalStorageInputTestData.scala
  • Loading branch information
danielfeismann committed Aug 20, 2024
2 parents bd2d3f8 + ef96fad commit e770997
Showing 1 changed file with 0 additions and 30 deletions.
Original file line number Diff line number Diff line change
@@ -1,30 +0,0 @@
/*
* © 2020. TU Dortmund University,
* Institute of Energy Systems, Energy Efficiency and Energy Economics,
* Research group Distribution grid planning and operation
*/

package edu.ie3.simona.test.common.input

import java.util.UUID
import edu.ie3.datamodel.models.StandardUnits
import edu.ie3.datamodel.models.input.thermal.{
CylindricalStorageInput,
ThermalBusInput,
}
import edu.ie3.util.quantities.PowerSystemUnits
import tech.units.indriya.quantity.Quantities.getQuantity

trait CylindricalStorageInputTestData {

protected val csInputModel = new CylindricalStorageInput(
UUID.randomUUID(),
"ThermalStorage",
new ThermalBusInput(UUID.randomUUID(), "ThermalBus"),
getQuantity(100, StandardUnits.VOLUME),
getQuantity(30, StandardUnits.TEMPERATURE),
getQuantity(40, StandardUnits.TEMPERATURE),
getQuantity(1.15, StandardUnits.SPECIFIC_HEAT_CAPACITY),
getQuantity(11d, PowerSystemUnits.KILOWATT),
)
}

0 comments on commit e770997

Please sign in to comment.