├── .gitattributes ├── .gitconfig ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── issue-branch.yml └── workflows │ └── github-action-slack.yml ├── .gitignore ├── .gitlab-ci.yml ├── AixLib ├── Airflow │ ├── AirCurtain │ │ ├── AirCurtainSimplified.mo │ │ ├── Examples │ │ │ ├── AirCurtain.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── AirHandlingUnit │ │ ├── AHU.mo │ │ ├── BaseClasses │ │ │ ├── PartialAHU.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── AHU.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ModularAirHandlingUnit │ │ │ ├── Components │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── HeatTransfer │ │ │ │ │ │ ├── ConvectiveHeatTransferCoefficient.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── PartialComponent.mo │ │ │ │ │ ├── PartialCooler.mo │ │ │ │ │ ├── PartialHeater.mo │ │ │ │ │ ├── PartialHumidifier.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Cooler.mo │ │ │ │ ├── FanSimple.mo │ │ │ │ ├── HeatRecoverySystem.mo │ │ │ │ ├── Heater.mo │ │ │ │ ├── PassThrough.mo │ │ │ │ ├── PressureDrop │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ ├── package.order │ │ │ │ │ │ └── partialPressureDrop.mo │ │ │ │ │ ├── PressureDrop.mo │ │ │ │ │ ├── PressureDropSimple.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── RecircFlap.mo │ │ │ │ ├── SensibleCooler.mo │ │ │ │ ├── SprayHumidifier.mo │ │ │ │ ├── SteamHumidifier.mo │ │ │ │ ├── Validation │ │ │ │ │ ├── Cooler.mo │ │ │ │ │ ├── Fan.mo │ │ │ │ │ ├── Heater.mo │ │ │ │ │ ├── SensibleCooler.mo │ │ │ │ │ ├── SprayHumidifier.mo │ │ │ │ │ ├── SteamHumidifier.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Controler │ │ │ │ ├── ControlerCooler.mo │ │ │ │ ├── ControlerHeatRecovery.mo │ │ │ │ ├── ControlerHumidifier.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── ExampleAHU.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ModularAHU.mo │ │ │ ├── Resources │ │ │ │ ├── ExampleAHU.png │ │ │ │ └── TRY2015_507931060546_Jahr_City_Aachen.mos │ │ │ ├── Verification │ │ │ │ ├── ComparisonToAHU.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── NoAHU.mo │ │ ├── package.mo │ │ └── package.order │ ├── FacadeVentilationUnit │ │ ├── BaseClasses │ │ │ ├── SetPower.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── DataBase │ │ │ ├── FVUBaseRecord.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── FacadeVentilationUnit.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── FacadeVentilationUnit.mo │ │ ├── package.mo │ │ └── package.order │ ├── Multizone │ │ ├── BaseClasses │ │ │ ├── Door.mo │ │ │ ├── DoorDiscretized.mo │ │ │ ├── ErrorControl.mo │ │ │ ├── Examples │ │ │ │ ├── PowerLaw.mo │ │ │ │ ├── PowerLawFixedM.mo │ │ │ │ ├── WindPressureLowRise.mo │ │ │ │ ├── WindPressureProfile.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── PartialOneWayFlowElement.mo │ │ │ ├── PowerLawResistanceParameters.mo │ │ │ ├── TwoWayFlowElement.mo │ │ │ ├── TwoWayFlowElementBuoyancy.mo │ │ │ ├── ZonalFlow.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ ├── powerLaw.mo │ │ │ ├── powerLawFixedM.mo │ │ │ ├── windPressureLowRise.mo │ │ │ └── windPressureProfile.mo │ │ ├── Coefficient_V_flow.mo │ │ ├── Coefficient_m_flow.mo │ │ ├── DoorDiscretizedOpen.mo │ │ ├── DoorDiscretizedOperable.mo │ │ ├── DoorOpen.mo │ │ ├── DoorOperable.mo │ │ ├── EffectiveAirLeakageArea.mo │ │ ├── Examples │ │ │ ├── CO2TransportStep.mo │ │ │ ├── ChimneyShaftNoVolume.mo │ │ │ ├── ChimneyShaftWithVolume.mo │ │ │ ├── ClosedDoors.mo │ │ │ ├── NaturalVentilation.mo │ │ │ ├── OneEffectiveAirLeakageArea.mo │ │ │ ├── OneOpenDoor.mo │ │ │ ├── OneRoom.mo │ │ │ ├── Orifice.mo │ │ │ ├── PowerLaw.mo │ │ │ ├── PressurizationData.mo │ │ │ ├── ReverseBuoyancy.mo │ │ │ ├── ReverseBuoyancy3Zones.mo │ │ │ ├── TrickleVent.mo │ │ │ ├── ZonalFlow.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── MediumColumn.mo │ │ ├── MediumColumnDynamic.mo │ │ ├── Orifice.mo │ │ ├── Point_m_flow.mo │ │ ├── Points_m_flow.mo │ │ ├── Table_V_flow.mo │ │ ├── Table_m_flow.mo │ │ ├── Types │ │ │ ├── densitySelection.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── UsersGuide.mo │ │ ├── Validation │ │ │ ├── DoorOpenClosed.mo │ │ │ ├── OneWayFlow.mo │ │ │ ├── OpenDoorBuoyancyDynamic.mo │ │ │ ├── OpenDoorBuoyancyPressureDynamic.mo │ │ │ ├── OpenDoorPressure.mo │ │ │ ├── OpenDoorTemperature.mo │ │ │ ├── ThreeRoomsContam.mo │ │ │ ├── ThreeRoomsContamDiscretizedDoor.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ZonalFlow_ACS.mo │ │ ├── ZonalFlow_m_flow.mo │ │ ├── package.mo │ │ └── package.order │ ├── WindowVentilation │ │ ├── BaseClasses │ │ │ ├── Functions │ │ │ │ ├── CoeffsSunshadingInstallationVDI2078.mo │ │ │ │ ├── OpeningAreaHinged │ │ │ │ │ ├── AngleToWidth.mo │ │ │ │ │ ├── CoeffOpeningAreaDIN16798.mo │ │ │ │ │ ├── EffectiveOpeningArea.mo │ │ │ │ │ ├── EquivalentOpeningArea.mo │ │ │ │ │ ├── GeometricOpeningArea.mo │ │ │ │ │ ├── PartialOpeningArea.mo │ │ │ │ │ ├── ProjectiveOpeningArea.mo │ │ │ │ │ ├── WidthToAngle.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── SmallestAngleDifference.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── PartialEmpiricalFlow.mo │ │ │ ├── PartialEmpiricalFlowStack.mo │ │ │ ├── PartialEmpiricalFlowStackWindIncidence.mo │ │ │ ├── PartialOpeningArea.mo │ │ │ ├── PartialOpeningAreaSash.mo │ │ │ ├── Types │ │ │ │ ├── OpeningAreaTypes.mo │ │ │ │ ├── SmallestAngleDifferenceTypes.mo │ │ │ │ ├── SunshadingInstallationTypesVDI2078.mo │ │ │ │ ├── WindowOpeningTypes.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── EmpiricalExpressions │ │ │ ├── ASHRAE.mo │ │ │ ├── Caciolo.mo │ │ │ ├── DIN16798.mo │ │ │ ├── DIN4108.mo │ │ │ ├── GidsPhaff.mo │ │ │ ├── Hall.mo │ │ │ ├── Jiang.mo │ │ │ ├── LarsenHeiselberg.mo │ │ │ ├── Maas.mo │ │ │ ├── Tang.mo │ │ │ ├── VDI2078.mo │ │ │ ├── WarrenParkins.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── OpeningArea.mo │ │ │ ├── VentilationFlowRateSashOpening.mo │ │ │ ├── VentilationFlowRateSimpleOpening.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── OpeningAreas │ │ │ ├── OpeningAreaSashCommon.mo │ │ │ ├── OpeningAreaSashDIN16798.mo │ │ │ ├── OpeningAreaSashDIN4108.mo │ │ │ ├── OpeningAreaSashHall.mo │ │ │ ├── OpeningAreaSashVDI2078.mo │ │ │ ├── OpeningAreaSimple.mo │ │ │ ├── OpeningAreaSimpleVDI2078.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Utilities │ │ │ ├── AngleToWidth.mo │ │ │ ├── WidthToAngle.mo │ │ │ ├── WindProfilePowerLaw.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── BoundaryConditions │ ├── GroundTemperature │ │ ├── DataSourceGroTem.mo │ │ ├── Examples │ │ │ ├── ExampleAachen.mo │ │ │ ├── ExampleSanFran.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── GroundTemperatureKusuda.mo │ │ ├── Options.mo │ │ ├── package.mo │ │ └── package.order │ ├── InternalGains │ │ ├── BaseClasses │ │ │ ├── PartialInternalGain.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── CO2 │ │ │ ├── CO2Balance.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── InternalGains │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── PartialHumansExample.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HumansSenTDep.mo │ │ │ │ ├── HumansSenTIndep.mo │ │ │ │ ├── HumansTotTDep.mo │ │ │ │ ├── Lights.mo │ │ │ │ ├── Machines.mo │ │ │ │ ├── OneOffice.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Humans │ │ │ ├── BaseClasses │ │ │ │ ├── PartialHuman.mo │ │ │ │ ├── TemperatureDependentHeatOutputSIA2024.mo │ │ │ │ ├── TemperatureDependentMoistureOutputSIA2024.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── HumanSensibleHeatTemperatureDependent.mo │ │ │ ├── HumanSensibleHeatTemperatureIndependent.mo │ │ │ ├── HumanTotalHeatTemperatureDependent.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Lights │ │ │ ├── LightsAreaSpecific.mo │ │ │ ├── LightsRelToMaxValue.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Machines │ │ │ ├── MachinesAreaSpecific.mo │ │ │ ├── MachinesDIN18599.mo │ │ │ ├── MachinesRelToMaxValue.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Moisture │ │ │ ├── MoistureGains.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Types.mo │ │ ├── package.mo │ │ └── package.order │ ├── SkyTemperature │ │ ├── BlackBody.mo │ │ ├── Examples │ │ │ ├── BlackBody.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── SolarGeometry │ │ ├── BaseClasses │ │ │ ├── AltitudeAngle.mo │ │ │ ├── Declination.mo │ │ │ ├── Examples │ │ │ │ ├── AltitudeAngle.mo │ │ │ │ ├── Declination.mo │ │ │ │ ├── IncidenceAngle.mo │ │ │ │ ├── SolarAzimuth.mo │ │ │ │ ├── SolarHourAngle.mo │ │ │ │ ├── WallSolarAzimuth.mo │ │ │ │ ├── ZenithAngle.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── IncidenceAngle.mo │ │ │ ├── SolarAzimuth.mo │ │ │ ├── SolarHourAngle.mo │ │ │ ├── WallSolarAzimuth.mo │ │ │ ├── ZenithAngle.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ ├── solarAzimuthNoEvent.mo │ │ │ └── solarAzimuthWithEvent.mo │ │ ├── Examples │ │ │ ├── IncidenceAngle.mo │ │ │ ├── ZenithAngle.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── IncidenceAngle.mo │ │ ├── ZenithAngle.mo │ │ ├── package.mo │ │ └── package.order │ ├── SolarIrradiation │ │ ├── BaseClasses │ │ │ ├── BrighteningCoefficient.mo │ │ │ ├── DiffuseIsotropic.mo │ │ │ ├── DiffusePerez.mo │ │ │ ├── DirectTiltedSurface.mo │ │ │ ├── Examples │ │ │ │ ├── BrighteningCoefficient.mo │ │ │ │ ├── DiffuseIsotropic.mo │ │ │ │ ├── RelativeAirMass.mo │ │ │ │ ├── SkyBrightness.mo │ │ │ │ ├── SkyClearness.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── PartialSolarIrradiation.mo │ │ │ ├── RelativeAirMass.mo │ │ │ ├── SkyBrightness.mo │ │ │ ├── SkyClearness.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── DiffuseIsotropic.mo │ │ ├── DiffusePerez.mo │ │ ├── DirectTiltedSurface.mo │ │ ├── Examples │ │ │ ├── DiffuseIsotropic.mo │ │ │ ├── DiffusePerez.mo │ │ │ ├── DirectTiltedSurface.mo │ │ │ ├── GlobalPerezTiltedSurface.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── GlobalPerezTiltedSurface.mo │ │ ├── package.mo │ │ └── package.order │ ├── Types.mo │ ├── UsersGuide.mo │ ├── Validation │ │ ├── BESTEST │ │ │ ├── WD100.mo │ │ │ ├── WD200.mo │ │ │ ├── WD300.mo │ │ │ ├── WD400.mo │ │ │ ├── WD500.mo │ │ │ ├── WD600.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── IsotropicAndPerezDiffuseRadiation.mo │ │ ├── UsersGuide.mo │ │ ├── package.mo │ │ └── package.order │ ├── WeatherData │ │ ├── BaseClasses │ │ │ ├── CheckBlackBodySkyTemperature.mo │ │ │ ├── CheckCeilingHeight.mo │ │ │ ├── CheckDewPointTemperature.mo │ │ │ ├── CheckDryBulbTemperature.mo │ │ │ ├── CheckIRRadiation.mo │ │ │ ├── CheckPressure.mo │ │ │ ├── CheckRadiation.mo │ │ │ ├── CheckRelativeHumidity.mo │ │ │ ├── CheckSkyCover.mo │ │ │ ├── CheckTemperature.mo │ │ │ ├── CheckWindDirection.mo │ │ │ ├── CheckWindSpeed.mo │ │ │ ├── ConvertRadiation.mo │ │ │ ├── ConvertRelativeHumidity.mo │ │ │ ├── ConvertTime.mo │ │ │ ├── EquationOfTime.mo │ │ │ ├── Examples │ │ │ │ ├── CheckBlackBodySkyTemperature.mo │ │ │ │ ├── CheckCeilingHeight.mo │ │ │ │ ├── CheckPressure.mo │ │ │ │ ├── CheckRadiation.mo │ │ │ │ ├── CheckRelativeHumidity.mo │ │ │ │ ├── CheckSkyCover.mo │ │ │ │ ├── CheckTemperature.mo │ │ │ │ ├── CheckWindDirection.mo │ │ │ │ ├── CheckWindSpeed.mo │ │ │ │ ├── ConvertRadiation.mo │ │ │ │ ├── ConvertRelativeHumidity.mo │ │ │ │ ├── ConvertTime.mo │ │ │ │ ├── ConvertTimeNegativeStart.mo │ │ │ │ ├── ConvertTimePositiveStart.mo │ │ │ │ ├── EquationOfTime.mo │ │ │ │ ├── GetAbsolutePath.mo │ │ │ │ ├── GetAltitudeTMY3.mo │ │ │ │ ├── GetHeaderElement.mo │ │ │ │ ├── GetTimeSpanTMY3.mo │ │ │ │ ├── GetTimeSpanTMY3LongHeader.mo │ │ │ │ ├── GetTimeSpanTMY3_NonzeroStart.mo │ │ │ │ ├── LimitMin.mo │ │ │ │ ├── LocalCivilTime.mo │ │ │ │ ├── SolarTime.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── LimiterCeilingHeight.mo │ │ │ ├── LimiterHorizontalInfraredIrradiation.mo │ │ │ ├── LimiterOpaqueSkyCover.mo │ │ │ ├── LimiterRelativeHumidity.mo │ │ │ ├── LimiterTotalSkyCover.mo │ │ │ ├── LimiterWindDirection.mo │ │ │ ├── LimiterWindSpeed.mo │ │ │ ├── LocalCivilTime.mo │ │ │ ├── PartialConvertTime.mo │ │ │ ├── PartialLimiter.mo │ │ │ ├── PartialLimiterMin.mo │ │ │ ├── SolarTime.mo │ │ │ ├── SourceSelector.mo │ │ │ ├── SourceSelectorRadiation.mo │ │ │ ├── getAbsolutePath.mo │ │ │ ├── getAltitudeLocationTMY3.mo │ │ │ ├── getHeaderElementTMY3.mo │ │ │ ├── getLastHeaderElementTMY3.mo │ │ │ ├── getLatitudeTMY3.mo │ │ │ ├── getLongitudeTMY3.mo │ │ │ ├── getTimeSpanTMY3.mo │ │ │ ├── getTimeZoneTMY3.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Bus.mo │ │ ├── Examples │ │ │ ├── ReaderTMY3.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Old │ │ │ ├── WeatherTRY │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── CalculateNrOfOutputs.mo │ │ │ │ │ ├── DeterminePositionsInWeatherVector.mo │ │ │ │ │ ├── Sun.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Examples │ │ │ │ │ ├── WeatherModels.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── RadiationOnTiltedSurface │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── PartialRadOnTiltedSurf.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── RadOnTiltedSurf_Liu.mo │ │ │ │ │ ├── RadOnTiltedSurf_Perez.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Weather.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ReaderTMY3.mo │ │ ├── Validation │ │ │ ├── DecemberToJanuary.mo │ │ │ ├── OverAYear_usingOneYearData.mo │ │ │ ├── ReaderTMY3HDirNor.mo │ │ │ ├── ThreeYears_usingTwoYearData.mo │ │ │ ├── ThreeYears_usingTwoYearDataNegativeStart.mo │ │ │ ├── ThreeYears_usingTwoYearDataPositiveStart.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── Controls │ ├── AirHandling │ │ ├── FVUController.mo │ │ ├── package.mo │ │ └── package.order │ ├── Continuous │ │ ├── Examples │ │ │ ├── LimPID.mo │ │ │ ├── LimPIDWithReset.mo │ │ │ ├── NumberOfRequests.mo │ │ │ ├── OffTimer.mo │ │ │ ├── SignalRanker.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── LimPID.mo │ │ ├── NumberOfRequests.mo │ │ ├── OffTimer.mo │ │ ├── PITemp.mo │ │ ├── SignalRanker.mo │ │ ├── Validation │ │ │ ├── LimPIDReset.mo │ │ │ ├── OffTimerNonZeroStart.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Discrete │ │ ├── BooleanDelay.mo │ │ ├── Examples │ │ │ ├── BooleanDelay.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── HVACAgentBasedControl │ │ ├── Agents │ │ │ ├── Broker.mo │ │ │ ├── ColdProducerAgent.mo │ │ │ ├── ConsumerAgent.mo │ │ │ ├── HeatProducerAgent.mo │ │ │ ├── IntermediateAgent.mo │ │ │ ├── MessageNotification.mo │ │ │ ├── RoomAgent.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── BaseClasses │ │ │ ├── Internal │ │ │ │ ├── package.mo │ │ │ │ ├── package.order │ │ │ │ ├── sendTo.mo │ │ │ │ └── sendToUDP.mo │ │ │ ├── PartialAgent.mo │ │ │ ├── PartialCostFunction.mo │ │ │ ├── SendSample.mo │ │ │ ├── UDPSend_adapted.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── CostFunctions │ │ │ ├── Economic │ │ │ │ ├── Constant_Economic_Cost.mo │ │ │ │ ├── PV_Variable_Economic_Cost.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Exergy │ │ │ │ ├── Boiler_ExergyDestruction.mo │ │ │ │ ├── Boiler_ExergyDestruction_Simplified.mo │ │ │ │ ├── HeatPump_ExergyDestruction_Cooling.mo │ │ │ │ ├── HeatPump_ExergyDestruction_Heating.mo │ │ │ │ ├── HeatingRod_ExergyDestruction.mo │ │ │ │ ├── HeatingRod_ExergyDestruction_Simplified.mo │ │ │ │ ├── MixingValveAndHEX_ExergyDestruction.mo │ │ │ │ ├── MixingValveAndHEX_ExergyDestruction_Simplified.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── PrimaryExergy │ │ │ │ ├── Boiler_PrimaryExergyDestruction_Simplified.mo │ │ │ │ ├── HeatPump_PrimaryExergyDestruction_Cooling.mo │ │ │ │ ├── HeatPump_PrimaryExergyDestruction_Heating.mo │ │ │ │ ├── HeatingRod_PrimaryExergyDestruction_Simplified.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── BookTrading │ │ │ │ ├── BookBuyerAgent.mo │ │ │ │ ├── BookSellerAgent.mo │ │ │ │ ├── BookTrading.mo │ │ │ │ ├── NetworkCommunication1.mo │ │ │ │ ├── NetworkCommunication2.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── BuildingHeatingSystems │ │ │ │ ├── BuildingHeating.mo │ │ │ │ ├── BuildingHeating_usePoke.mo │ │ │ │ ├── BuildingWithPV.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── HVACAgentsCommunications │ │ │ │ ├── SimpleCommunication.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── UsersGuide │ │ │ ├── Award.mo │ │ │ ├── Gettingstarted.mo │ │ │ ├── Overview.mo │ │ │ ├── Requirements.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── HeatPump │ │ ├── AntiLegionella.mo │ │ ├── BaseClasses │ │ │ ├── PartialHPController.mo │ │ │ ├── PartialTSetToNSet.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── DefrostControl.mo │ │ ├── Examples │ │ │ ├── InverterControlledHeatPump.mo │ │ │ ├── PartialHeatPumpController.mo │ │ │ ├── TwoPointControlledHeatPump.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── HPControl.mo │ │ ├── InverterControlledHP.mo │ │ ├── ModularHeatPumps │ │ │ ├── BaseClasses │ │ │ │ ├── PartialModularController.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ModularCompressorController.mo │ │ │ ├── ModularExpansionValveController.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── TwoPointControlledHP.mo │ │ ├── package.mo │ │ └── package.order │ ├── Interfaces │ │ ├── BoilerControlBus.mo │ │ ├── CHPControlBus.mo │ │ ├── FVUControlBus.mo │ │ ├── ModularCompressorControlBus.mo │ │ ├── ModularExpansionValveControlBus.mo │ │ ├── ModularHeatPumpControlBus.mo │ │ ├── ModularSensorControlBus.mo │ │ ├── package.mo │ │ └── package.order │ ├── OBC │ │ ├── CDL │ │ │ ├── Constants.mo │ │ │ ├── Conversions │ │ │ │ ├── BooleanToInteger.mo │ │ │ │ ├── BooleanToReal.mo │ │ │ │ ├── IntegerToReal.mo │ │ │ │ ├── RealToInteger.mo │ │ │ │ ├── Validation │ │ │ │ │ ├── BooleanToInteger.mo │ │ │ │ │ ├── BooleanToReal.mo │ │ │ │ │ ├── IntegerToReal.mo │ │ │ │ │ ├── RealToInteger.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Discrete │ │ │ │ ├── FirstOrderHold.mo │ │ │ │ ├── Sampler.mo │ │ │ │ ├── TriggeredMax.mo │ │ │ │ ├── TriggeredMovingMean.mo │ │ │ │ ├── TriggeredSampler.mo │ │ │ │ ├── UnitDelay.mo │ │ │ │ ├── Validation │ │ │ │ │ ├── FirstOrderHold.mo │ │ │ │ │ ├── Sampler.mo │ │ │ │ │ ├── TriggeredMax.mo │ │ │ │ │ ├── TriggeredMovingMean.mo │ │ │ │ │ ├── TriggeredSampler.mo │ │ │ │ │ ├── UnitDelay.mo │ │ │ │ │ ├── ZeroOrderHold.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── ZeroOrderHold.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Integers │ │ │ │ ├── Abs.mo │ │ │ │ ├── Add.mo │ │ │ │ ├── AddParameter.mo │ │ │ │ ├── Change.mo │ │ │ │ ├── Equal.mo │ │ │ │ ├── Greater.mo │ │ │ │ ├── GreaterEqual.mo │ │ │ │ ├── GreaterEqualThreshold.mo │ │ │ │ ├── GreaterThreshold.mo │ │ │ │ ├── Less.mo │ │ │ │ ├── LessEqual.mo │ │ │ │ ├── LessEqualThreshold.mo │ │ │ │ ├── LessThreshold.mo │ │ │ │ ├── Max.mo │ │ │ │ ├── Min.mo │ │ │ │ ├── MultiSum.mo │ │ │ │ ├── Multiply.mo │ │ │ │ ├── OnCounter.mo │ │ │ │ ├── Sources │ │ │ │ │ ├── Constant.mo │ │ │ │ │ ├── Pulse.mo │ │ │ │ │ ├── TimeTable.mo │ │ │ │ │ ├── Validation │ │ │ │ │ │ ├── Constant.mo │ │ │ │ │ │ ├── Pulse.mo │ │ │ │ │ │ ├── TimeTable.mo │ │ │ │ │ │ ├── TimeTableNegativeStartTime.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Stage.mo │ │ │ │ ├── Subtract.mo │ │ │ │ ├── Switch.mo │ │ │ │ ├── Validation │ │ │ │ │ ├── Abs.mo │ │ │ │ │ ├── Add.mo │ │ │ │ │ ├── AddParameter.mo │ │ │ │ │ ├── Change.mo │ │ │ │ │ ├── Equal.mo │ │ │ │ │ ├── Greater.mo │ │ │ │ │ ├── GreaterEqual.mo │ │ │ │ │ ├── GreaterEqualThreshold.mo │ │ │ │ │ ├── GreaterThreshold.mo │ │ │ │ │ ├── Less.mo │ │ │ │ │ ├── LessEqual.mo │ │ │ │ │ ├── LessEqualThreshold.mo │ │ │ │ │ ├── LessThreshold.mo │ │ │ │ │ ├── Max.mo │ │ │ │ │ ├── Min.mo │ │ │ │ │ ├── MultiSum.mo │ │ │ │ │ ├── Multiply.mo │ │ │ │ │ ├── OnCounter.mo │ │ │ │ │ ├── Stage.mo │ │ │ │ │ ├── Subtract.mo │ │ │ │ │ ├── Switch.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Interfaces │ │ │ │ ├── BooleanInput.mo │ │ │ │ ├── BooleanOutput.mo │ │ │ │ ├── IntegerInput.mo │ │ │ │ ├── IntegerOutput.mo │ │ │ │ ├── RealInput.mo │ │ │ │ ├── RealOutput.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Logical │ │ │ │ ├── And.mo │ │ │ │ ├── Change.mo │ │ │ │ ├── Edge.mo │ │ │ │ ├── FallingEdge.mo │ │ │ │ ├── Latch.mo │ │ │ │ ├── MultiAnd.mo │ │ │ │ ├── MultiOr.mo │ │ │ │ ├── Nand.mo │ │ │ │ ├── Nor.mo │ │ │ │ ├── Not.mo │ │ │ │ ├── Or.mo │ │ │ │ ├── Pre.mo │ │ │ │ ├── Proof.mo │ │ │ │ ├── Sources │ │ │ │ │ ├── Constant.mo │ │ │ │ │ ├── Pulse.mo │ │ │ │ │ ├── SampleTrigger.mo │ │ │ │ │ ├── TimeTable.mo │ │ │ │ │ ├── Validation │ │ │ │ │ │ ├── Constant.mo │ │ │ │ │ │ ├── Pulse.mo │ │ │ │ │ │ ├── PulseNegativeStartTime.mo │ │ │ │ │ │ ├── PulsePositiveStartTime.mo │ │ │ │ │ │ ├── SampleTrigger.mo │ │ │ │ │ │ ├── SampleTriggerNegativeStartTime.mo │ │ │ │ │ │ ├── SampleTriggerPositiveStartTime.mo │ │ │ │ │ │ ├── TimeTable.mo │ │ │ │ │ │ ├── TimeTableNegativeStartTime.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Switch.mo │ │ │ │ ├── Timer.mo │ │ │ │ ├── TimerAccumulating.mo │ │ │ │ ├── Toggle.mo │ │ │ │ ├── TrueDelay.mo │ │ │ │ ├── TrueFalseHold.mo │ │ │ │ ├── Validation │ │ │ │ │ ├── And.mo │ │ │ │ │ ├── Change.mo │ │ │ │ │ ├── Edge.mo │ │ │ │ │ ├── FallingEdge.mo │ │ │ │ │ ├── Latch.mo │ │ │ │ │ ├── MultiAnd.mo │ │ │ │ │ ├── MultiOr.mo │ │ │ │ │ ├── Nand.mo │ │ │ │ │ ├── Nor.mo │ │ │ │ │ ├── Not.mo │ │ │ │ │ ├── Or.mo │ │ │ │ │ ├── Proof.mo │ │ │ │ │ ├── Switch.mo │ │ │ │ │ ├── Timer.mo │ │ │ │ │ ├── TimerAccumulating.mo │ │ │ │ │ ├── TimerAccumulatingNegativeStartTime.mo │ │ │ │ │ ├── TimerNegativeStartTime.mo │ │ │ │ │ ├── Toggle.mo │ │ │ │ │ ├── TrueDelay.mo │ │ │ │ │ ├── TrueFalseHold.mo │ │ │ │ │ ├── VariablePulse.mo │ │ │ │ │ ├── VariablePulseMinHold.mo │ │ │ │ │ ├── Xor.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── VariablePulse.mo │ │ │ │ ├── Xor.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Psychrometrics │ │ │ │ ├── DewPoint_TDryBulPhi.mo │ │ │ │ ├── SpecificEnthalpy_TDryBulPhi.mo │ │ │ │ ├── Validation │ │ │ │ │ ├── DewPoint_TDryBulPhi.mo │ │ │ │ │ ├── SpecificEnthalpy_TDryBulPhi.mo │ │ │ │ │ ├── WetBulb_TDryBulPhi.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── WetBulb_TDryBulPhi.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Reals │ │ │ │ ├── Abs.mo │ │ │ │ ├── Acos.mo │ │ │ │ ├── Add.mo │ │ │ │ ├── AddParameter.mo │ │ │ │ ├── Asin.mo │ │ │ │ ├── Atan.mo │ │ │ │ ├── Atan2.mo │ │ │ │ ├── Average.mo │ │ │ │ ├── Cos.mo │ │ │ │ ├── Derivative.mo │ │ │ │ ├── Divide.mo │ │ │ │ ├── Exp.mo │ │ │ │ ├── Greater.mo │ │ │ │ ├── GreaterThreshold.mo │ │ │ │ ├── Hysteresis.mo │ │ │ │ ├── IntegratorWithReset.mo │ │ │ │ ├── Less.mo │ │ │ │ ├── LessThreshold.mo │ │ │ │ ├── LimitSlewRate.mo │ │ │ │ ├── Limiter.mo │ │ │ │ ├── Line.mo │ │ │ │ ├── Log.mo │ │ │ │ ├── Log10.mo │ │ │ │ ├── MatrixGain.mo │ │ │ │ ├── MatrixMax.mo │ │ │ │ ├── MatrixMin.mo │ │ │ │ ├── Max.mo │ │ │ │ ├── Min.mo │ │ │ │ ├── Modulo.mo │ │ │ │ ├── MovingAverage.mo │ │ │ │ ├── MultiMax.mo │ │ │ │ ├── MultiMin.mo │ │ │ │ ├── MultiSum.mo │ │ │ │ ├── Multiply.mo │ │ │ │ ├── MultiplyByParameter.mo │ │ │ │ ├── PID.mo │ │ │ │ ├── PIDWithReset.mo │ │ │ │ ├── Ramp.mo │ │ │ │ ├── Round.mo │ │ │ │ ├── Sin.mo │ │ │ │ ├── Sort.mo │ │ │ │ ├── Sources │ │ │ │ │ ├── CalendarTime.mo │ │ │ │ │ ├── CivilTime.mo │ │ │ │ │ ├── Constant.mo │ │ │ │ │ ├── Pulse.mo │ │ │ │ │ ├── Ramp.mo │ │ │ │ │ ├── Sin.mo │ │ │ │ │ ├── TimeTable.mo │ │ │ │ │ ├── Validation │ │ │ │ │ │ ├── CalendarTimeMonths.mo │ │ │ │ │ │ ├── CalendarTimeMonthsMinus.mo │ │ │ │ │ │ ├── CalendarTimeMonthsPlus.mo │ │ │ │ │ │ ├── CivilTime.mo │ │ │ │ │ │ ├── Constant.mo │ │ │ │ │ │ ├── Pulse.mo │ │ │ │ │ │ ├── Ramp.mo │ │ │ │ │ │ ├── Sin.mo │ │ │ │ │ │ ├── TimeTable.mo │ │ │ │ │ │ ├── TimeTableNegativeStartTime.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Sqrt.mo │ │ │ │ ├── Subtract.mo │ │ │ │ ├── Switch.mo │ │ │ │ ├── Tan.mo │ │ │ │ ├── Validation │ │ │ │ │ ├── Abs.mo │ │ │ │ │ ├── Acos.mo │ │ │ │ │ ├── Add.mo │ │ │ │ │ ├── AddParameter.mo │ │ │ │ │ ├── Asin.mo │ │ │ │ │ ├── Atan.mo │ │ │ │ │ ├── Atan2.mo │ │ │ │ │ ├── Average.mo │ │ │ │ │ ├── Cos.mo │ │ │ │ │ ├── Derivative.mo │ │ │ │ │ ├── Divide.mo │ │ │ │ │ ├── Exp.mo │ │ │ │ │ ├── Greater.mo │ │ │ │ │ ├── GreaterThreshold.mo │ │ │ │ │ ├── Hysteresis.mo │ │ │ │ │ ├── IntegratorWithReset.mo │ │ │ │ │ ├── Less.mo │ │ │ │ │ ├── LessThreshold.mo │ │ │ │ │ ├── LimitSlewRate.mo │ │ │ │ │ ├── Limiter.mo │ │ │ │ │ ├── Line.mo │ │ │ │ │ ├── Log.mo │ │ │ │ │ ├── Log10.mo │ │ │ │ │ ├── MatrixGain.mo │ │ │ │ │ ├── MatrixMax.mo │ │ │ │ │ ├── MatrixMin.mo │ │ │ │ │ ├── Max.mo │ │ │ │ │ ├── Min.mo │ │ │ │ │ ├── Modulo.mo │ │ │ │ │ ├── MovingAverage.mo │ │ │ │ │ ├── MovingAverage_nonZeroStart.mo │ │ │ │ │ ├── MultiMax.mo │ │ │ │ │ ├── MultiMin.mo │ │ │ │ │ ├── MultiSum.mo │ │ │ │ │ ├── Multiply.mo │ │ │ │ │ ├── MultiplyByParameter.mo │ │ │ │ │ ├── PID.mo │ │ │ │ │ ├── PIDInitialDerivativeOutput.mo │ │ │ │ │ ├── PIDInitialState.mo │ │ │ │ │ ├── PIDScale.mo │ │ │ │ │ ├── PIDWithReset.mo │ │ │ │ │ ├── PIDWithResetScale.mo │ │ │ │ │ ├── Ramp.mo │ │ │ │ │ ├── Round.mo │ │ │ │ │ ├── Sin.mo │ │ │ │ │ ├── Sort.mo │ │ │ │ │ ├── Sqrt.mo │ │ │ │ │ ├── Subtract.mo │ │ │ │ │ ├── Switch.mo │ │ │ │ │ ├── Tan.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Routing │ │ │ │ ├── BooleanExtractSignal.mo │ │ │ │ ├── BooleanExtractor.mo │ │ │ │ ├── BooleanScalarReplicator.mo │ │ │ │ ├── BooleanVectorFilter.mo │ │ │ │ ├── BooleanVectorReplicator.mo │ │ │ │ ├── IntegerExtractSignal.mo │ │ │ │ ├── IntegerExtractor.mo │ │ │ │ ├── IntegerScalarReplicator.mo │ │ │ │ ├── IntegerVectorFilter.mo │ │ │ │ ├── IntegerVectorReplicator.mo │ │ │ │ ├── RealExtractSignal.mo │ │ │ │ ├── RealExtractor.mo │ │ │ │ ├── RealScalarReplicator.mo │ │ │ │ ├── RealVectorFilter.mo │ │ │ │ ├── RealVectorReplicator.mo │ │ │ │ ├── Validation │ │ │ │ │ ├── BooleanExtractSignal.mo │ │ │ │ │ ├── BooleanExtractor.mo │ │ │ │ │ ├── BooleanScalarReplicator.mo │ │ │ │ │ ├── BooleanVectorFilter.mo │ │ │ │ │ ├── BooleanVectorReplicator.mo │ │ │ │ │ ├── IntegerExtractSignal.mo │ │ │ │ │ ├── IntegerExtractor.mo │ │ │ │ │ ├── IntegerScalarReplicator.mo │ │ │ │ │ ├── IntegerVectorFilter.mo │ │ │ │ │ ├── IntegerVectorReplicator.mo │ │ │ │ │ ├── RealExtractSignal.mo │ │ │ │ │ ├── RealExtractor.mo │ │ │ │ │ ├── RealScalarReplicator.mo │ │ │ │ │ ├── RealVectorFilter.mo │ │ │ │ │ ├── RealVectorReplicator.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Types │ │ │ │ ├── Extrapolation.mo │ │ │ │ ├── SimpleController.mo │ │ │ │ ├── Smoothness.mo │ │ │ │ ├── ZeroTime.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Utilities │ │ │ │ ├── Assert.mo │ │ │ │ ├── SunRiseSet.mo │ │ │ │ ├── Validation │ │ │ │ │ ├── Assert.mo │ │ │ │ │ ├── SunRiseSet.mo │ │ │ │ │ ├── SunRiseSetNegativeStartTime.mo │ │ │ │ │ ├── SunRiseSetPositiveStartTime.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── UsersGuide.mo │ │ ├── Utilities │ │ │ ├── BaseClasses │ │ │ │ ├── OptimalStartCalculation.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── OptimalStart.mo │ │ │ ├── PIDWithInputGains.mo │ │ │ ├── SetPoints │ │ │ │ ├── SupplyReturnTemperatureReset.mo │ │ │ │ ├── Validation │ │ │ │ │ ├── SupplyReturnTemperatureReset.mo │ │ │ │ │ ├── SupplyReturnTemperatureResetExponent.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Validation │ │ │ │ ├── OptimalStartCoolingNegativeStartTime.mo │ │ │ │ ├── OptimalStartCoolingPositiveStartTime.mo │ │ │ │ ├── OptimalStartHeating.mo │ │ │ │ ├── OptimalStartHeatingCooling.mo │ │ │ │ ├── OptimalStartNoHeatingNoCooling.mo │ │ │ │ ├── PIDWithInputGains.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── SetPoints │ │ ├── Examples │ │ │ ├── OccupancySchedule.mo │ │ │ ├── SupplyReturnTemperatureReset.mo │ │ │ ├── Table.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Functions │ │ │ ├── HeatingCurveFunction.mo │ │ │ ├── PartialBaseFct.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── HeatingCurve.mo │ │ ├── OccupancySchedule.mo │ │ ├── SupplyReturnTemperatureReset.mo │ │ ├── Table.mo │ │ ├── Validation │ │ │ ├── OccupancyScheduleNegativeStartTime.mo │ │ │ ├── OccupancySchedulePositiveStartTime.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Types.mo │ ├── VentilationController │ │ ├── BaseClasses │ │ │ ├── DEMA.mo │ │ │ ├── OptimalTempDeCarliHumidity.mo │ │ │ ├── coefficients.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── VentilationController.mo │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── DataBase │ ├── ActiveWalls │ │ ├── ActiveWallBaseDataDefinition.mo │ │ ├── JocoKlimaBodenTOP2000_Parkett.mo │ │ ├── UponorComfortPanelHL_Cooling.mo │ │ ├── UponorComfortPanelHL_Heating.mo │ │ ├── package.mo │ │ └── package.order │ ├── Boiler │ │ ├── DayNightMode │ │ │ ├── HeatingCurvesDayNightBaseDataDefinition.mo │ │ │ ├── HeatingCurves_Vitotronic_Day23_Night10.mo │ │ │ ├── HeatingCurves_Vitotronic_Day25_Night10.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── General │ │ │ ├── BoilerTwoPointBaseDataDefinition.mo │ │ │ ├── Boiler_Virtual_1kW.mo │ │ │ ├── Boiler_Vitocrossal200_311kW.mo │ │ │ ├── Boiler_Vitodens300W_13kW.mo │ │ │ ├── Boiler_Vitogas200F_11kW.mo │ │ │ ├── Boiler_Vitogas200F_15kW.mo │ │ │ ├── Boiler_Vitogas200F_18kW.mo │ │ │ ├── Boiler_Vitogas200F_22kW.mo │ │ │ ├── Boiler_Vitogas200F_29kW.mo │ │ │ ├── Boiler_Vitogas200F_35kW.mo │ │ │ ├── Boiler_Vitogas200F_42kW.mo │ │ │ ├── Boiler_Vitogas200F_48kW.mo │ │ │ ├── Boiler_Vitogas200F_60kW.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── WorkLoad │ │ │ ├── Buderus_GB202_40_30.mo │ │ │ ├── Buderus_GB202_75_60.mo │ │ │ ├── WorkLoadBaseDataDefinition.mo │ │ │ ├── ideal.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── CHP │ │ ├── CHPDataSimple │ │ │ ├── CHPBaseDataDefinition.mo │ │ │ ├── CHP_Cleanergy_C9G.mo │ │ │ ├── CHP_FMB_1500_GSMK.mo │ │ │ ├── CHP_FMB_155_GSK.mo │ │ │ ├── CHP_FMB_2500_GSMK.mo │ │ │ ├── CHP_FMB_270_GSMK.mo │ │ │ ├── CHP_FMB_31_GSK.mo │ │ │ ├── CHP_FMB_410_GSMK.mo │ │ │ ├── CHP_FMB_65_GSK.mo │ │ │ ├── CHP_FMB_750_GSMK.mo │ │ │ ├── CHP_GG_113.mo │ │ │ ├── CHP_GG_50.mo │ │ │ ├── CHP_GG_70.mo │ │ │ ├── CHP_XRGI_9kWel.mo │ │ │ ├── CHP_mikro_ECO_POWER_1.mo │ │ │ ├── CHP_mini_ECO_POWER_3.mo │ │ │ ├── CHP_mini_ECO_POWER_3_LiquidGas.mo │ │ │ ├── CHP_mini_ECO_POWER_5.mo │ │ │ ├── CHP_mini_ECO_POWER_5_LiquidGas.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ModularCHPEngineData │ │ │ ├── CHPEngDataBaseRecord.mo │ │ │ ├── CHP_ECPowerXRGI15.mo │ │ │ ├── CHP_ECPowerXRGI9.mo │ │ │ ├── CHP_Kirsch_L4_12.mo │ │ │ ├── CHP_SenerTecDachsG5_5.mo │ │ │ ├── CHP_Vitoblock200_EM5_13.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ModularCHPEngineMedia │ │ │ ├── CHPCombustionMixtureGasNasa.mo │ │ │ ├── CHPCoolantPropyleneGlycolWater.mo │ │ │ ├── CHPFlueGasLambdaOnePlus.mo │ │ │ ├── CombustionEngineFuelDataBaseRecord.mo │ │ │ ├── EngineCombustionAir.mo │ │ │ ├── LiquidFuel_Diesel.mo │ │ │ ├── LiquidFuel_LPG.mo │ │ │ ├── LiquidFuel_Petrol.mo │ │ │ ├── NaturalGasMixture_GeneralType.mo │ │ │ ├── NaturalGasMixture_TypeAachen.mo │ │ │ ├── NaturalGasMixture_TypeH.mo │ │ │ ├── NaturalGasMixture_TypeL.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Media │ │ ├── Refrigerants │ │ │ ├── BubbleDewStatePropertiesBaseDataDefinition.mo │ │ │ ├── HelmholtzEquationOfStateBaseDateDefinition.mo │ │ │ ├── R134a │ │ │ │ ├── BDSP_IIR_P1_395_T233_370.mo │ │ │ │ ├── EoS_IIR_P1_395_T233_370.mo │ │ │ │ ├── TSP_IIR_P1_395_T233_370.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── R290 │ │ │ │ ├── BDSP_IIR_P05_30_T263_343.mo │ │ │ │ ├── EoS_IIR_P05_30_T263_343.mo │ │ │ │ ├── TSP_IIR_P05_30_T263_343.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── R410a │ │ │ │ ├── BDSP_IIR_P1_48_T233_340.mo │ │ │ │ ├── EoS_IIR_P1_48_T233_340.mo │ │ │ │ ├── TSP_IIR_P1_48_T233_340.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ThermodynamicStatePropertiesBaseDataDefinition.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Pipes │ │ ├── Copper │ │ │ ├── Copper_108x1_5.mo │ │ │ ├── Copper_108x2_5.mo │ │ │ ├── Copper_10x0_6.mo │ │ │ ├── Copper_10x0_7.mo │ │ │ ├── Copper_10x0_8.mo │ │ │ ├── Copper_10x1.mo │ │ │ ├── Copper_12x0_6.mo │ │ │ ├── Copper_12x0_7.mo │ │ │ ├── Copper_12x0_8.mo │ │ │ ├── Copper_12x1.mo │ │ │ ├── Copper_133x1_5.mo │ │ │ ├── Copper_133x3.mo │ │ │ ├── Copper_14x0_8.mo │ │ │ ├── Copper_14x1.mo │ │ │ ├── Copper_159x2.mo │ │ │ ├── Copper_159x3.mo │ │ │ ├── Copper_15x0_7.mo │ │ │ ├── Copper_15x0_8.mo │ │ │ ├── Copper_15x1.mo │ │ │ ├── Copper_16x1.mo │ │ │ ├── Copper_18x0_8.mo │ │ │ ├── Copper_18x1.mo │ │ │ ├── Copper_219x3.mo │ │ │ ├── Copper_22x0_9.mo │ │ │ ├── Copper_22x1.mo │ │ │ ├── Copper_22x1_1.mo │ │ │ ├── Copper_22x1_2.mo │ │ │ ├── Copper_22x1_5.mo │ │ │ ├── Copper_267x3.mo │ │ │ ├── Copper_28x0_9.mo │ │ │ ├── Copper_28x1.mo │ │ │ ├── Copper_28x1_2.mo │ │ │ ├── Copper_28x1_5.mo │ │ │ ├── Copper_35x1.mo │ │ │ ├── Copper_35x1_2.mo │ │ │ ├── Copper_35x1_5.mo │ │ │ ├── Copper_40x1.mo │ │ │ ├── Copper_42x1.mo │ │ │ ├── Copper_42x1_2.mo │ │ │ ├── Copper_42x1_5.mo │ │ │ ├── Copper_54x1.mo │ │ │ ├── Copper_54x1_2.mo │ │ │ ├── Copper_54x1_5.mo │ │ │ ├── Copper_54x2.mo │ │ │ ├── Copper_64x2.mo │ │ │ ├── Copper_66_7x1_2.mo │ │ │ ├── Copper_66_7x2.mo │ │ │ ├── Copper_6x0_6.mo │ │ │ ├── Copper_6x0_8.mo │ │ │ ├── Copper_6x1.mo │ │ │ ├── Copper_76_1x1_5.mo │ │ │ ├── Copper_76_1x2.mo │ │ │ ├── Copper_88_9x2.mo │ │ │ ├── Copper_8x0_6.mo │ │ │ ├── Copper_8x0_8.mo │ │ │ ├── Copper_8x1.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Insulation │ │ │ ├── Iso100pc.mo │ │ │ ├── Iso25pc.mo │ │ │ ├── Iso50pc.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── InsulationBaseDataDefinition.mo │ │ ├── PE_X │ │ │ ├── DIN_16893_SDR11_d160.mo │ │ │ ├── DIN_16893_SDR11_d25.mo │ │ │ ├── DIN_16893_SDR11_d32.mo │ │ │ ├── DIN_16893_SDR11_d40.mo │ │ │ ├── DIN_16893_SDR11_d50.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── PipeBaseDataDefinition.mo │ │ ├── package.mo │ │ └── package.order │ ├── Pools │ │ ├── ChildrensPool.mo │ │ ├── IndoorSwimmingPoolBaseDataDefinition.mo │ │ ├── IndoorSwimmingPoolDummy.mo │ │ ├── SportPool.mo │ │ ├── SwimmingPoolWalls │ │ │ ├── ConcreteInsulationConstruction.mo │ │ │ ├── StainlessSteelConstruction.mo │ │ │ ├── WallDummy.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Profiles │ │ ├── ASHRAE140 │ │ │ ├── SetTemp_caseX40.mo │ │ │ ├── SetTemp_caseX50.mo │ │ │ ├── Ventilation_caseX50.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ProfileBaseDataDefinition.mo │ │ ├── SetTemperaturesVentilation2perDay.mo │ │ ├── Ventilation2perDayMean05perH.mo │ │ ├── package.mo │ │ └── package.order │ ├── Pumps │ │ ├── MinMaxCharacteristicsBaseDataDefinition.mo │ │ ├── Pump1.mo │ │ ├── PumpPolynomialBased │ │ │ ├── Examples │ │ │ │ ├── package.mo │ │ │ │ ├── package.order │ │ │ │ ├── testMaxMinHeightTable.mo │ │ │ │ ├── testPumpHeadCalculation.mo │ │ │ │ ├── testPumpPowerCalculation.mo │ │ │ │ └── testPumpSpeedCalculation.mo │ │ │ ├── PumpBaseRecord.mo │ │ │ ├── Pump_DN100.mo │ │ │ ├── Pump_DN100_H1_17.mo │ │ │ ├── Pump_DN200.mo │ │ │ ├── Pump_DN25_H05_12.mo │ │ │ ├── Pump_DN25_H1_4_V3.mo │ │ │ ├── Pump_DN25_H1_6_V4.mo │ │ │ ├── Pump_DN25_H1_6_V8.mo │ │ │ ├── Pump_DN25_H1_8_V5.mo │ │ │ ├── Pump_DN25_H1_8_V9.mo │ │ │ ├── Pump_DN30_H1_12.mo │ │ │ ├── Pump_DN30_H1_12_V13.mo │ │ │ ├── Pump_DN32.mo │ │ │ ├── Pump_DN40.mo │ │ │ ├── Pump_DN40_H10.mo │ │ │ ├── Pump_DN40_H1_12_V24.mo │ │ │ ├── Pump_DN40_H1_16_V29.mo │ │ │ ├── Pump_DN40_H1_45.mo │ │ │ ├── Pump_DN40_H1_8_V17.mo │ │ │ ├── Pump_DN50.mo │ │ │ ├── Pump_DN50_H05_16.mo │ │ │ ├── Pump_DN50_H10.mo │ │ │ ├── Pump_DN50_H1_10.mo │ │ │ ├── Pump_DN50_H1_38.mo │ │ │ ├── Pump_DN50_H1_9_V29.mo │ │ │ ├── Pump_DN65.mo │ │ │ ├── Pump_DN65_H15.mo │ │ │ ├── Pump_DN65_H1_12_V48.mo │ │ │ ├── Pump_DN65_H1_16_V26.mo │ │ │ ├── Pump_DN65_H1_17.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Radiators │ │ ├── RadiatorBaseDataDefinition.mo │ │ ├── Standard_MFD_WSchV1984_OneAppartment │ │ │ ├── Radiator_Bathroom.mo │ │ │ ├── Radiator_Bedroom.mo │ │ │ ├── Radiator_Children.mo │ │ │ ├── Radiator_Kitchen.mo │ │ │ ├── Radiator_Livingroom.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── SolarElectric │ │ ├── AleoS24185.mo │ │ ├── CanadianSolarCS6P250P.mo │ │ ├── PVBaseDataDefinition.mo │ │ ├── QPlusBFRG41285.mo │ │ ├── SchuecoSPV170SME1.mo │ │ ├── SharpNUU235F2.mo │ │ ├── ShellSP70.mo │ │ ├── package.mo │ │ └── package.order │ ├── SolarThermal │ │ ├── AirCollector.mo │ │ ├── ConcentratingCollector.mo │ │ ├── FlatCollector.mo │ │ ├── SimpleAbsorber.mo │ │ ├── SolarThermalBaseDataDefinition.mo │ │ ├── VacuumCollector.mo │ │ ├── package.mo │ │ └── package.order │ ├── Storage │ │ ├── Generic_New_2000l.mo │ │ ├── StorageDetailedBaseDataDefinition.mo │ │ ├── package.mo │ │ └── package.order │ ├── Surfaces │ │ ├── RoughnessForHT │ │ │ ├── Brick_RoughPlaster.mo │ │ │ ├── ClearPine.mo │ │ │ ├── Concrete.mo │ │ │ ├── Glass.mo │ │ │ ├── PolynomialCoefficients_ASHRAEHandbook.mo │ │ │ ├── SmoothPlaster.mo │ │ │ ├── Stucco.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── ThermalZones │ │ ├── MultizoneInterzonalsFixedHeater │ │ │ ├── MorschenichSfhFixedHeater_attic.mo │ │ │ ├── MorschenichSfhFixedHeater_basement.mo │ │ │ ├── MorschenichSfhFixedHeater_storey_1.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── OfficePassiveHouse │ │ │ ├── OPH_1_Office.mo │ │ │ ├── OPH_1_OfficeNoHeaterCooler.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Office_1995_1000.mo │ │ ├── SwimmingFacility │ │ │ ├── Changing.mo │ │ │ ├── Entrance.mo │ │ │ ├── Showers.mo │ │ │ ├── Supervisory.mo │ │ │ ├── SwimmingHall.mo │ │ │ ├── Technichal.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ZoneBaseRecord.mo │ │ ├── ZoneRecordDummy.mo │ │ ├── package.mo │ │ └── package.order │ ├── Walls │ │ ├── ASHRAE140 │ │ │ ├── DummyDefinition.mo │ │ │ ├── FL_Case600.mo │ │ │ ├── FL_Case600_eps01.mo │ │ │ ├── FL_Case900.mo │ │ │ ├── OW_Case600.mo │ │ │ ├── OW_Case600_eps01.mo │ │ │ ├── OW_Case900.mo │ │ │ ├── RO_Case600.mo │ │ │ ├── RO_Case600_eps01.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Collections │ │ │ ├── ASHRAE140 │ │ │ │ ├── HighMassCases.mo │ │ │ │ ├── LightMassCases.mo │ │ │ │ ├── LightMassCases_eps01.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── BaseDataMultiWalls.mo │ │ │ ├── EmpricalValidation │ │ │ │ ├── TwinHouseN2.mo │ │ │ │ ├── Warehouse.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── OFD │ │ │ │ ├── BaseDataMultiInnerWalls.mo │ │ │ │ ├── EnEV2002Heavy.mo │ │ │ │ ├── EnEV2002Light.mo │ │ │ │ ├── EnEV2002Medium.mo │ │ │ │ ├── EnEV2009Heavy.mo │ │ │ │ ├── EnEV2009Light.mo │ │ │ │ ├── EnEV2009Medium.mo │ │ │ │ ├── WSchV1984Heavy.mo │ │ │ │ ├── WSchV1984Light.mo │ │ │ │ ├── WSchV1984Medium.mo │ │ │ │ ├── WSchV1995Heavy.mo │ │ │ │ ├── WSchV1995Light.mo │ │ │ │ ├── WSchV1995Medium.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── EmpiricalValidation │ │ │ ├── CE_TwinHouses.mo │ │ │ ├── DummyDefinition.mo │ │ │ ├── FL_TwinHouses.mo │ │ │ ├── FL_Warehouse.mo │ │ │ ├── IW_LightMass_TwinHouses.mo │ │ │ ├── IW_TwinHouses.mo │ │ │ ├── OW_E_TwinHouses.mo │ │ │ ├── OW_S_N_TwinHouses.mo │ │ │ ├── OW_W_TwinHouses.mo │ │ │ ├── OW_Warehouse.mo │ │ │ ├── RO_Warehouse.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── EnEV2002 │ │ │ ├── Ceiling │ │ │ │ ├── CEattic_EnEV2002_SML_loHalf.mo │ │ │ │ ├── CEcellar_EnEV2002_SML_loHalf.mo │ │ │ │ ├── CEpartition_EnEV2002_L_loHalf.mo │ │ │ │ ├── CEpartition_EnEV2002_SM_loHalf.mo │ │ │ │ ├── ROsaddleAttic_EnEV2002_SML.mo │ │ │ │ ├── ROsaddleRoom_EnEV2002_SML.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Floor │ │ │ │ ├── FLattic_EnEV2002_SML_upHalf.mo │ │ │ │ ├── FLcellar_EnEV2002_SML_upHalf.mo │ │ │ │ ├── FLground_EnEV2002_SML.mo │ │ │ │ ├── FLground_EnEV2002_SML_loHalf.mo │ │ │ │ ├── FLground_EnEV2002_SML_upHalf.mo │ │ │ │ ├── FLpartition_EnEV2002_L_upHalf.mo │ │ │ │ ├── FLpartition_EnEV2002_SM_upHalf.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── IW │ │ │ │ ├── IWload_EnEV2002_L_half.mo │ │ │ │ ├── IWload_EnEV2002_M_half.mo │ │ │ │ ├── IWload_EnEV2002_S_half.mo │ │ │ │ ├── IWneighbour_EnEV2002_L_half.mo │ │ │ │ ├── IWneighbour_EnEV2002_M_half.mo │ │ │ │ ├── IWneighbour_EnEV2002_S_half.mo │ │ │ │ ├── IWsimple_EnEV2002_L_half.mo │ │ │ │ ├── IWsimple_EnEV2002_M_half.mo │ │ │ │ ├── IWsimple_EnEV2002_S_half.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── OW │ │ │ │ ├── OW_EnEV2002_L.mo │ │ │ │ ├── OW_EnEV2002_M.mo │ │ │ │ ├── OW_EnEV2002_M_MFD.mo │ │ │ │ ├── OW_EnEV2002_S.mo │ │ │ │ ├── OW_EnEV2002_S_MFD.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── EnEV2009 │ │ │ ├── Ceiling │ │ │ │ ├── CEattic_EnEV2009_SML_loHalf.mo │ │ │ │ ├── CEcellar_EnEV2009_SML_loHalf.mo │ │ │ │ ├── CEpartition_EnEV2009_L_loHalf.mo │ │ │ │ ├── CEpartition_EnEV2009_SM_loHalf.mo │ │ │ │ ├── ROsaddleAttic_EnEV2009_SML.mo │ │ │ │ ├── ROsaddleRoom_EnEV2009_SML.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Floor │ │ │ │ ├── FLattic_EnEV2009_SML_upHalf.mo │ │ │ │ ├── FLcellar_EnEV2009_SML_upHalf.mo │ │ │ │ ├── FLground_EnEV2009_SML.mo │ │ │ │ ├── FLground_EnEV2009_SML_loHalf.mo │ │ │ │ ├── FLground_EnEV2009_SML_upHalf.mo │ │ │ │ ├── FLpartition_EnEV2009_L_upHalf.mo │ │ │ │ ├── FLpartition_EnEV2009_SM_upHalf.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── IW │ │ │ │ ├── IWload_EnEV2009_L_half.mo │ │ │ │ ├── IWload_EnEV2009_M_half.mo │ │ │ │ ├── IWload_EnEV2009_S_half.mo │ │ │ │ ├── IWneighbour_EnEV2009_L_half.mo │ │ │ │ ├── IWneighbour_EnEV2009_M_half.mo │ │ │ │ ├── IWneighbour_EnEV2009_S_half.mo │ │ │ │ ├── IWsimple_EnEV2009_L_half.mo │ │ │ │ ├── IWsimple_EnEV2009_M_half.mo │ │ │ │ ├── IWsimple_EnEV2009_S_half.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── OW │ │ │ │ ├── OW_EnEV2009_L.mo │ │ │ │ ├── OW_EnEV2009_M.mo │ │ │ │ ├── OW_EnEV2009_M_MFD.mo │ │ │ │ ├── OW_EnEV2009_S.mo │ │ │ │ ├── OW_EnEV2009_S_MFD.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── WSchV1984 │ │ │ ├── Ceiling │ │ │ │ ├── CEattic_WSchV1984_SML_loHalf.mo │ │ │ │ ├── CEcellar_WSchV1984_SML_loHalf.mo │ │ │ │ ├── CEpartition_WSchV1984_L_loHalf.mo │ │ │ │ ├── CEpartition_WSchV1984_SM_loHalf.mo │ │ │ │ ├── ROsaddleAttic_WSchV1984_SML.mo │ │ │ │ ├── ROsaddleRoom_WSchV1984_SML.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Floor │ │ │ │ ├── FLattic_WSchV1984_SML_upHalf.mo │ │ │ │ ├── FLcellar_WSchV1984_SML_upHalf.mo │ │ │ │ ├── FLground_WSchV1984_SML.mo │ │ │ │ ├── FLground_WSchV1984_SML_loHalf.mo │ │ │ │ ├── FLground_WSchV1984_SML_upHalf.mo │ │ │ │ ├── FLpartition_WSchV1984_L_upHalf.mo │ │ │ │ ├── FLpartition_WSchV1984_SM_upHalf.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── IW │ │ │ │ ├── IWload_WSchV1984_L_half.mo │ │ │ │ ├── IWload_WSchV1984_M_half.mo │ │ │ │ ├── IWload_WSchV1984_S_half.mo │ │ │ │ ├── IWneighbour_WSchV1984_L_half.mo │ │ │ │ ├── IWneighbour_WSchV1984_M_half.mo │ │ │ │ ├── IWneighbour_WSchV1984_S_half.mo │ │ │ │ ├── IWsimple_WSchV1984_L_half.mo │ │ │ │ ├── IWsimple_WSchV1984_M_half.mo │ │ │ │ ├── IWsimple_WSchV1984_S_half.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── OW │ │ │ │ ├── OW_WSchV1984_L.mo │ │ │ │ ├── OW_WSchV1984_M.mo │ │ │ │ ├── OW_WSchV1984_M_MFD.mo │ │ │ │ ├── OW_WSchV1984_S.mo │ │ │ │ ├── OW_WSchV1984_S_MFD.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── WSchV1995 │ │ │ ├── Ceiling │ │ │ │ ├── CEattic_WSchV1995_SML_loHalf.mo │ │ │ │ ├── CEcellar_WSchV1995_SML_loHalf.mo │ │ │ │ ├── CEpartition_WSchV1995_L_loHalf.mo │ │ │ │ ├── CEpartition_WSchV1995_SM_loHalf.mo │ │ │ │ ├── ROsaddleAttic_WSchV1995_SML.mo │ │ │ │ ├── ROsaddleRoom_WSchV1995_SML.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Floor │ │ │ │ ├── FLattic_WSchV1995_SML_upHalf.mo │ │ │ │ ├── FLcellar_WSchV1995_SML_upHalf.mo │ │ │ │ ├── FLground_WSchV1995_SML.mo │ │ │ │ ├── FLground_WSchV1995_SML_loHalf.mo │ │ │ │ ├── FLground_WSchV1995_SML_upHalf.mo │ │ │ │ ├── FLpartition_WSchV1995_L_upHalf.mo │ │ │ │ ├── FLpartition_WSchV1995_SM_upHalf.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── IW │ │ │ │ ├── IWload_WSchV1995_L_half.mo │ │ │ │ ├── IWload_WSchV1995_M_half.mo │ │ │ │ ├── IWload_WSchV1995_S_half.mo │ │ │ │ ├── IWneighbour_WSchV1995_L_half.mo │ │ │ │ ├── IWneighbour_WSchV1995_M_half.mo │ │ │ │ ├── IWneighbour_WSchV1995_S_half.mo │ │ │ │ ├── IWsimple_WSchV1995_L_half.mo │ │ │ │ ├── IWsimple_WSchV1995_M_half.mo │ │ │ │ ├── IWsimple_WSchV1995_S_half.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── OW │ │ │ │ ├── OW_WSchV1995_L.mo │ │ │ │ ├── OW_WSchV1995_M.mo │ │ │ │ ├── OW_WSchV1995_M_MFD.mo │ │ │ │ ├── OW_WSchV1995_S.mo │ │ │ │ ├── OW_WSchV1995_S_MFD.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── WallBaseDataDefinition.mo │ │ ├── package.mo │ │ └── package.order │ ├── Weather │ │ ├── SummerDay.mo │ │ ├── SurfaceOrientation │ │ │ ├── SurfaceOrientationBaseDataDefinition.mo │ │ │ ├── SurfaceOrientationData_NE_SE_SW_NW_Hor.mo │ │ │ ├── SurfaceOrientationData_N_E_S_W_Hor.mo │ │ │ ├── SurfaceOrientationData_N_E_S_W_RoofN_Roof_S.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── TRYWeatherBaseDataDefinition.mo │ │ ├── TRYWinterDay.mo │ │ ├── WeatherBaseDataDefinition.mo │ │ ├── WinterDay.mo │ │ ├── package.mo │ │ └── package.order │ ├── WindowsDoors │ │ ├── ASHRAE140WithPanes │ │ │ ├── Default.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Simple │ │ │ ├── OWBaseDataDefinition_Simple.mo │ │ │ ├── WindowSimple_ASHRAE140.mo │ │ │ ├── WindowSimple_ASHRAE140_NoSWTrans.mo │ │ │ ├── WindowSimple_EnEV2002.mo │ │ │ ├── WindowSimple_EnEV2009.mo │ │ │ ├── WindowSimple_TwinHouses.mo │ │ │ ├── WindowSimple_WSchV1984.mo │ │ │ ├── WindowSimple_WSchV1995.mo │ │ │ ├── WindowSimple_Warehouse.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── Electrical │ ├── AC │ │ ├── Interfaces │ │ │ ├── PowerOutput.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── OnePhase │ │ │ ├── Basics │ │ │ │ ├── Ground.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Conversion │ │ │ │ ├── ACACConverter.mo │ │ │ │ ├── ACACTransformer.mo │ │ │ │ ├── ACACTransformerFull.mo │ │ │ │ ├── ACDCConverter.mo │ │ │ │ ├── Examples │ │ │ │ │ ├── ACACConverter.mo │ │ │ │ │ ├── ACACTransformer.mo │ │ │ │ │ ├── ACACTransformerFull.mo │ │ │ │ │ ├── ACDCConverter.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── GeneratorLoadGrid.mo │ │ │ │ ├── GridDCLoad.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Interfaces │ │ │ │ ├── Terminal_n.mo │ │ │ │ ├── Terminal_p.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Lines │ │ │ │ ├── Examples │ │ │ │ │ ├── ACLine.mo │ │ │ │ │ ├── ACLine_L.mo │ │ │ │ │ ├── ACLine_R.mo │ │ │ │ │ ├── ACLine_RL.mo │ │ │ │ │ ├── ACSimpleGrid.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Line.mo │ │ │ │ ├── Network.mo │ │ │ │ ├── TwoPortInductance.mo │ │ │ │ ├── TwoPortRL.mo │ │ │ │ ├── TwoPortRLC.mo │ │ │ │ ├── TwoPortResistance.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Loads │ │ │ │ ├── Capacitive.mo │ │ │ │ ├── Examples │ │ │ │ │ ├── DynamicLoads.mo │ │ │ │ │ ├── ParallelLoads.mo │ │ │ │ │ ├── ParallelResistors.mo │ │ │ │ │ ├── TestImpedance.mo │ │ │ │ │ ├── ThreePhases.mo │ │ │ │ │ ├── VariableImpedance.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Impedance.mo │ │ │ │ ├── Inductive.mo │ │ │ │ ├── Resistive.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Sensors │ │ │ │ ├── Examples │ │ │ │ │ ├── GeneralizedSensor.mo │ │ │ │ │ ├── Probe.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── GeneralizedSensor.mo │ │ │ │ ├── Probe.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Sources │ │ │ │ ├── Examples │ │ │ │ │ ├── FixedVoltageSource.mo │ │ │ │ │ ├── VariablePowerSource.mo │ │ │ │ │ ├── WindTurbine.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── FixedVoltage.mo │ │ │ │ ├── Generator.mo │ │ │ │ ├── Grid.mo │ │ │ │ ├── WindTurbine.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ThreePhasesBalanced │ │ │ ├── Conversion │ │ │ │ ├── ACACConverter.mo │ │ │ │ ├── ACACTransformer.mo │ │ │ │ ├── ACACTransformerFull.mo │ │ │ │ ├── ACDCConverter.mo │ │ │ │ ├── Examples │ │ │ │ │ ├── ACACConverter.mo │ │ │ │ │ ├── ACACTransformer.mo │ │ │ │ │ ├── ACACTransformerFull.mo │ │ │ │ │ ├── ACDCConverter.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Interfaces │ │ │ │ ├── Terminal_n.mo │ │ │ │ ├── Terminal_p.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Lines │ │ │ │ ├── Examples │ │ │ │ │ ├── ACLine.mo │ │ │ │ │ ├── ACLineMedium.mo │ │ │ │ │ ├── ACLine_L.mo │ │ │ │ │ ├── ACLine_R.mo │ │ │ │ │ ├── ACLine_RL.mo │ │ │ │ │ ├── ACSimpleGrid.mo │ │ │ │ │ ├── ACSimpleGridMedium.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Line.mo │ │ │ │ ├── Network.mo │ │ │ │ ├── TwoPortInductance.mo │ │ │ │ ├── TwoPortRL.mo │ │ │ │ ├── TwoPortRLC.mo │ │ │ │ ├── TwoPortResistance.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Loads │ │ │ │ ├── Capacitive.mo │ │ │ │ ├── Examples │ │ │ │ │ ├── Impedances.mo │ │ │ │ │ ├── ParallelLoads.mo │ │ │ │ │ ├── ThreePhases.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Impedance.mo │ │ │ │ ├── Inductive.mo │ │ │ │ ├── Resistive.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Sensors │ │ │ │ ├── Examples │ │ │ │ │ ├── GeneralizedSensor.mo │ │ │ │ │ ├── Probe.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── GeneralizedSensor.mo │ │ │ │ ├── Probe.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Sources │ │ │ │ ├── Examples │ │ │ │ │ ├── FixedVoltageSource.mo │ │ │ │ │ ├── VariablePowerSource.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── FixedVoltage.mo │ │ │ │ ├── Generator.mo │ │ │ │ ├── Grid.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ThreePhasesUnbalanced │ │ │ ├── Conversion │ │ │ │ ├── ACACConverter.mo │ │ │ │ ├── ACACTransformer.mo │ │ │ │ ├── ACACTransformerDD.mo │ │ │ │ ├── ACACTransformerFull.mo │ │ │ │ ├── ACACTransformerStepDownDY.mo │ │ │ │ ├── ACACTransformerStepDownYD.mo │ │ │ │ ├── ACACTransformerStepUpDY.mo │ │ │ │ ├── ACACTransformerStepUpYD.mo │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── PartialConverter.mo │ │ │ │ │ ├── PartialConverterDD.mo │ │ │ │ │ ├── PartialConverterStepDownDY.mo │ │ │ │ │ ├── PartialConverterStepDownYD.mo │ │ │ │ │ ├── PartialConverterStepUpDY.mo │ │ │ │ │ ├── PartialConverterStepUpYD.mo │ │ │ │ │ ├── PartialConverterYY.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Examples │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── TransformerExample.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── Converter.mo │ │ │ │ │ ├── Transformer.mo │ │ │ │ │ ├── TransformerDD.mo │ │ │ │ │ ├── TransformerFull.mo │ │ │ │ │ ├── TransformerStepDownDY.mo │ │ │ │ │ ├── TransformerStepDownYD.mo │ │ │ │ │ ├── TransformerStepUpDY.mo │ │ │ │ │ ├── TransformerStepUpYD.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Interfaces │ │ │ │ ├── Adapter3to3.mo │ │ │ │ ├── Connection3to3Ground_n.mo │ │ │ │ ├── Connection3to3Ground_p.mo │ │ │ │ ├── Connection3to4_n.mo │ │ │ │ ├── Connection3to4_p.mo │ │ │ │ ├── Examples │ │ │ │ │ ├── WyeToDelta.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Terminal4_n.mo │ │ │ │ ├── Terminal4_p.mo │ │ │ │ ├── Terminal_n.mo │ │ │ │ ├── Terminal_p.mo │ │ │ │ ├── TwoPort.mo │ │ │ │ ├── TwoPort_N.mo │ │ │ │ ├── WyeToDelta.mo │ │ │ │ ├── WyeToWyeGround.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Lines │ │ │ │ ├── Examples │ │ │ │ │ ├── ACLine.mo │ │ │ │ │ ├── ACLineMatrix_RL.mo │ │ │ │ │ ├── ACLineMatrix_RLC.mo │ │ │ │ │ ├── ACLineMatrix_RLC_N.mo │ │ │ │ │ ├── ACLineMatrix_RL_N.mo │ │ │ │ │ ├── ACLine_L.mo │ │ │ │ │ ├── ACLine_L_N.mo │ │ │ │ │ ├── ACLine_N.mo │ │ │ │ │ ├── ACLine_R.mo │ │ │ │ │ ├── ACLine_RL.mo │ │ │ │ │ ├── ACLine_RLC.mo │ │ │ │ │ ├── ACLine_RLC_N.mo │ │ │ │ │ ├── ACLine_RL_N.mo │ │ │ │ │ ├── ACLine_R_N.mo │ │ │ │ │ ├── ACSimpleGrid.mo │ │ │ │ │ ├── ACSimpleGrid_N.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Line.mo │ │ │ │ ├── Line_N.mo │ │ │ │ ├── Network.mo │ │ │ │ ├── Network_N.mo │ │ │ │ ├── TwoPortInductance.mo │ │ │ │ ├── TwoPortInductance_N.mo │ │ │ │ ├── TwoPortMatrixRL.mo │ │ │ │ ├── TwoPortMatrixRLC.mo │ │ │ │ ├── TwoPortMatrixRLC_N.mo │ │ │ │ ├── TwoPortMatrixRL_N.mo │ │ │ │ ├── TwoPortRL.mo │ │ │ │ ├── TwoPortRLC.mo │ │ │ │ ├── TwoPortRLC_N.mo │ │ │ │ ├── TwoPortRL_N.mo │ │ │ │ ├── TwoPortResistance.mo │ │ │ │ ├── TwoPortResistance_N.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Loads │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── BaseImpedance.mo │ │ │ │ │ ├── BaseLoadCtrl.mo │ │ │ │ │ ├── Impedance.mo │ │ │ │ │ ├── Impedance_N.mo │ │ │ │ │ ├── LoadCtrl.mo │ │ │ │ │ ├── LoadCtrl_N.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Capacitive.mo │ │ │ │ ├── Capacitive_N.mo │ │ │ │ ├── Examples │ │ │ │ │ ├── Impedances.mo │ │ │ │ │ ├── LoadCtrl.mo │ │ │ │ │ ├── Loads.mo │ │ │ │ │ ├── Loads_N.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Impedance.mo │ │ │ │ ├── Impedance_N.mo │ │ │ │ ├── Inductive.mo │ │ │ │ ├── Inductive_N.mo │ │ │ │ ├── Resistive.mo │ │ │ │ ├── Resistive_N.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Sensors │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── GeneralizedProbe.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Examples │ │ │ │ │ ├── Sensors.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── GeneralizedSensor.mo │ │ │ │ ├── GeneralizedSensor_N.mo │ │ │ │ ├── ProbeDelta.mo │ │ │ │ ├── ProbeWye.mo │ │ │ │ ├── ProbeWye_N.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Sources │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── BaseUnbalancedWindTurbine.mo │ │ │ │ │ ├── PartialSource.mo │ │ │ │ │ ├── PartialSource_N.mo │ │ │ │ │ ├── UnbalancedWindTurbine.mo │ │ │ │ │ ├── UnbalancedWindTurbine_N.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Examples │ │ │ │ │ ├── FixedVoltageSource.mo │ │ │ │ │ ├── WindTurbine.mo │ │ │ │ │ ├── WindTurbine_N.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── FixedVoltage.mo │ │ │ │ ├── FixedVoltage_N.mo │ │ │ │ ├── Grid.mo │ │ │ │ ├── Grid_N.mo │ │ │ │ ├── WindTurbine.mo │ │ │ │ ├── WindTurbine_N.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Validation │ │ │ │ ├── IEEETests │ │ │ │ │ ├── Test4NodesFeeder │ │ │ │ │ │ ├── BalancedStepDown │ │ │ │ │ │ │ ├── DD.mo │ │ │ │ │ │ │ ├── DY.mo │ │ │ │ │ │ │ ├── YD.mo │ │ │ │ │ │ │ ├── YY.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── BalancedStepUp │ │ │ │ │ │ │ ├── DD.mo │ │ │ │ │ │ │ ├── DY.mo │ │ │ │ │ │ │ ├── YD.mo │ │ │ │ │ │ │ ├── YY.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ │ ├── IEEE4.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── UnbalancedStepDown │ │ │ │ │ │ │ ├── DD.mo │ │ │ │ │ │ │ ├── DY.mo │ │ │ │ │ │ │ ├── YD.mo │ │ │ │ │ │ │ ├── YY.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── UnbalancedStepUp │ │ │ │ │ │ │ ├── DD.mo │ │ │ │ │ │ │ ├── DY.mo │ │ │ │ │ │ │ ├── YD.mo │ │ │ │ │ │ │ ├── YY.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── BaseClasses │ │ ├── WindTurbine │ │ │ ├── PartialWindTurbine.mo │ │ │ ├── PartialWindTurbineBase.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── DC │ │ ├── Conversion │ │ │ ├── DCDCConverter.mo │ │ │ ├── Examples │ │ │ │ ├── DCDCConverter.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Interfaces │ │ │ ├── Terminal_n.mo │ │ │ ├── Terminal_p.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Lines │ │ │ ├── Examples │ │ │ │ ├── DCLine.mo │ │ │ │ ├── DCLines.mo │ │ │ │ ├── DCLinesLinearized.mo │ │ │ │ ├── RCModel.mo │ │ │ │ ├── Resistance.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Line.mo │ │ │ ├── TwoPortRCLine.mo │ │ │ ├── TwoPortResistance.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Loads │ │ │ ├── Conductor.mo │ │ │ ├── Examples │ │ │ │ ├── LinearizedLoad.mo │ │ │ │ ├── Resistor.mo │ │ │ │ ├── VariableLoad.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Resistor.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Sensors │ │ │ ├── Examples │ │ │ │ ├── GeneralizedSensor.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── GeneralizedSensor.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Sources │ │ │ ├── BaseClasses │ │ │ │ ├── WindCorrection.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ConstantVoltage.mo │ │ │ ├── Examples │ │ │ │ ├── VoltageSource.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── VoltageSource.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Icons │ │ ├── GeneralizedProbe.mo │ │ ├── GeneralizedSensor.mo │ │ ├── RefAngleConversion.mo │ │ ├── package.mo │ │ └── package.order │ ├── Interfaces │ │ ├── BaseTerminal.mo │ │ ├── CapacitiveLoad.mo │ │ ├── Ground.mo │ │ ├── Impedance.mo │ │ ├── InductiveLoad.mo │ │ ├── Load.mo │ │ ├── PartialAcDcParameters.mo │ │ ├── PartialBaseTwoPort.mo │ │ ├── PartialConversion.mo │ │ ├── PartialPluggableUnbalanced.mo │ │ ├── PartialTwoPort.mo │ │ ├── ResistiveLoad.mo │ │ ├── Source.mo │ │ ├── Terminal.mo │ │ ├── VariableVoltageSource.mo │ │ ├── package.mo │ │ └── package.order │ ├── Machines │ │ ├── Examples │ │ │ ├── InductionMotor.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── InductionMachine.mo │ │ ├── PVInverterRMS.mo │ │ ├── package.mo │ │ └── package.order │ ├── PVSystem │ │ ├── BaseClasses │ │ │ ├── CellTemperatureMountingCloseToGround.mo │ │ │ ├── CellTemperatureMountingContactToGround.mo │ │ │ ├── CellTemperatureOpenRack.mo │ │ │ ├── IVCharacteristics5pAnalytical.mo │ │ │ ├── PVRadiationHorizontal.mo │ │ │ ├── PartialCellTemperature.mo │ │ │ ├── PartialIVCharacteristics.mo │ │ │ ├── Wsimple.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── ExamplePVSystem.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── PVSystem.mo │ │ ├── Validation │ │ │ ├── ValidationPVSystem.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── PhaseSystems │ │ ├── DirectCurrent.mo │ │ ├── OnePhase.mo │ │ ├── PartialPhaseSystem.mo │ │ ├── ThreePhase_d.mo │ │ ├── ThreePhase_dq.mo │ │ ├── ThreePhase_dq0.mo │ │ ├── TwoConductor.mo │ │ ├── package.mo │ │ └── package.order │ ├── Transmission │ │ ├── BaseClasses │ │ │ ├── BaseCable.mo │ │ │ ├── PartialBaseLine.mo │ │ │ ├── PartialLine.mo │ │ │ ├── PartialNetwork.mo │ │ │ ├── PartialTwoPortInductance.mo │ │ │ ├── PartialTwoPortRLC.mo │ │ │ ├── PartialTwoPortResistance.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Functions │ │ │ ├── R_AC_correction.mo │ │ │ ├── Validation │ │ │ │ ├── SelectCable_low.mo │ │ │ │ ├── SelectCable_med.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── computeGMD.mo │ │ │ ├── computeGMR.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ ├── selectCable_low.mo │ │ │ ├── selectCable_med.mo │ │ │ └── selectVoltageLevel.mo │ │ ├── Grids │ │ │ ├── IEEE_34_AL120.mo │ │ │ ├── PartialGrid.mo │ │ │ ├── TestGrid2Nodes.mo │ │ │ ├── TestGrid2NodesMedium.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── LowVoltageCables │ │ │ ├── Cu10.mo │ │ │ ├── Cu100.mo │ │ │ ├── Cu20.mo │ │ │ ├── Cu25.mo │ │ │ ├── Cu35.mo │ │ │ ├── Cu50.mo │ │ │ ├── Cu95.mo │ │ │ ├── Generic.mo │ │ │ ├── PvcAl120.mo │ │ │ ├── PvcAl120_ECM.mo │ │ │ ├── PvcAl150.mo │ │ │ ├── PvcAl16.mo │ │ │ ├── PvcAl16_ECM.mo │ │ │ ├── PvcAl25.mo │ │ │ ├── PvcAl25_ECM.mo │ │ │ ├── PvcAl35.mo │ │ │ ├── PvcAl35_ECM.mo │ │ │ ├── PvcAl50.mo │ │ │ ├── PvcAl70.mo │ │ │ ├── PvcAl70_ECM.mo │ │ │ ├── PvcAl75.mo │ │ │ ├── PvcAl95.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── MediumVoltageCables │ │ │ ├── Annealed_Al_10.mo │ │ │ ├── Annealed_Al_1000.mo │ │ │ ├── Annealed_Al_1500.mo │ │ │ ├── Annealed_Al_30.mo │ │ │ ├── Annealed_Al_350.mo │ │ │ ├── Annealed_Al_40.mo │ │ │ ├── Annealed_Al_500.mo │ │ │ ├── Generic.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Types │ │ │ ├── Material.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Types │ │ ├── CableMode.mo │ │ ├── CharacteristicReactance.mo │ │ ├── CharacteristicResistance.mo │ │ ├── InitMode.mo │ │ ├── Load.mo │ │ ├── LoadConnection.mo │ │ ├── PerUnit.mo │ │ ├── VoltageLevel.mo │ │ ├── package.mo │ │ └── package.order │ ├── UsersGuide.mo │ ├── Utilities │ │ ├── Controllers │ │ │ ├── StateMachineVoltCtrl.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── TestVoltageCTRL.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── VoltageControl.mo │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── Examples │ ├── SimpleHouse.mo │ ├── Tutorial │ │ ├── SimpleHouse │ │ │ ├── SimpleHouse0.mo │ │ │ ├── SimpleHouse1.mo │ │ │ ├── SimpleHouse2.mo │ │ │ ├── SimpleHouse3.mo │ │ │ ├── SimpleHouse4.mo │ │ │ ├── SimpleHouse5.mo │ │ │ ├── SimpleHouse6.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── Fluid │ ├── Actuators │ │ ├── BaseClasses │ │ │ ├── ActuatorSignal.mo │ │ │ ├── Examples │ │ │ │ ├── EqualPercentageDerivativeCheck.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── PartialDamperExponential.mo │ │ │ ├── PartialThreeWayValve.mo │ │ │ ├── PartialTwoWayValve.mo │ │ │ ├── PartialTwoWayValveKv.mo │ │ │ ├── ValveParameters.mo │ │ │ ├── der_equalPercentage.mo │ │ │ ├── equalPercentage.mo │ │ │ ├── exponentialDamper.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Dampers │ │ │ ├── Examples │ │ │ │ ├── Damper.mo │ │ │ │ ├── MixingBox.mo │ │ │ │ ├── VAVBoxExponential.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Exponential.mo │ │ │ ├── MixingBox.mo │ │ │ ├── PressureIndependent.mo │ │ │ ├── VAVBoxExponential.mo │ │ │ ├── Validation │ │ │ │ ├── PressureIndependent.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Motors │ │ │ ├── Examples │ │ │ │ ├── IdealMotor.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── IdealMotor.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Valves │ │ │ ├── Data │ │ │ │ ├── EqualPercentage.mo │ │ │ │ ├── Generic.mo │ │ │ │ ├── GenericThreeWay.mo │ │ │ │ ├── Linear.mo │ │ │ │ ├── LinearEqualPercentage.mo │ │ │ │ ├── LinearLinear.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── MixingValveBackwardDirection.mo │ │ │ │ ├── MixingValveForwardDirection.mo │ │ │ │ ├── ThreeWayValves.mo │ │ │ │ ├── TwoWayValvePressureIndependent.mo │ │ │ │ ├── TwoWayValveTable.mo │ │ │ │ ├── TwoWayValves.mo │ │ │ │ ├── TwoWayValvesMotor.mo │ │ │ │ ├── TwoWayValvesTable.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ExpansionValves │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── PartialExpansionValve.mo │ │ │ │ │ ├── PartialFlowCoefficient.mo │ │ │ │ │ ├── PartialIsenthalpicExpansionValve.mo │ │ │ │ │ ├── PartialModularExpansionVavles.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Examples │ │ │ │ │ ├── BaseModelStaticHeatPumps.mo │ │ │ │ │ ├── ExpansionValveMassFlowRate.mo │ │ │ │ │ ├── ExpansionValvePressureDifference.mo │ │ │ │ │ ├── ModularExpansionValvesMassFlowRate.mo │ │ │ │ │ ├── ModularExpansionValvesPressureDifference.mo │ │ │ │ │ ├── StaticHeatPumpBoundaries.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── ModularExpansionValves │ │ │ │ │ ├── ModularExpansionValves.mo │ │ │ │ │ ├── ModularExpansionValvesSensors.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── SimpleExpansionValves │ │ │ │ │ ├── IsenthalpicExpansionValve.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── UsersGuide │ │ │ │ │ ├── Approaches.mo │ │ │ │ │ ├── Composition.mo │ │ │ │ │ ├── References.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Utilities │ │ │ │ │ ├── FlowCoefficient │ │ │ │ │ │ ├── PolynomialFlowCoefficient.mo │ │ │ │ │ │ ├── PowerFlowCoefficient.mo │ │ │ │ │ │ ├── SpecifiedFlowCoefficients │ │ │ │ │ │ │ ├── Buck_R22R407CR410A_EEV_15_22.mo │ │ │ │ │ │ │ ├── Buck_R22R407CR410A_EEV_16_18.mo │ │ │ │ │ │ │ ├── ConstantFlowCoefficient.mo │ │ │ │ │ │ │ ├── Poly_R22R407CR410A_EEV_15_22.mo │ │ │ │ │ │ │ ├── Poly_R22_EEV_16.mo │ │ │ │ │ │ │ ├── Poly_R407c_EEV_18.mo │ │ │ │ │ │ │ ├── Poly_R410a_EEV_18.mo │ │ │ │ │ │ │ ├── Power_R134a_EEV_15.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── ModularSensors.mo │ │ │ │ │ ├── Types │ │ │ │ │ │ ├── CalcProc.mo │ │ │ │ │ │ ├── PolynomialModels.mo │ │ │ │ │ │ ├── PowerModels.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ThreeWayEqualPercentageLinear.mo │ │ │ ├── ThreeWayLinear.mo │ │ │ ├── ThreeWayTable.mo │ │ │ ├── TwoWayButterfly.mo │ │ │ ├── TwoWayEqualPercentage.mo │ │ │ ├── TwoWayLinear.mo │ │ │ ├── TwoWayPolynomial.mo │ │ │ ├── TwoWayPressureIndependent.mo │ │ │ ├── TwoWayQuickOpening.mo │ │ │ ├── TwoWayTable.mo │ │ │ ├── Validation │ │ │ │ ├── ThreeWayValveParameterization.mo │ │ │ │ ├── TwoWayValveParameterization.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── BaseClasses │ │ ├── ActuatorFilter.mo │ │ ├── FlowModels │ │ │ ├── Validation │ │ │ │ ├── BasicFlowFunction_dp_DerivativeCheck.mo │ │ │ │ ├── BasicFlowFunction_dp_DerivativeCheck2.mo │ │ │ │ ├── BasicFlowFunction_m_flow_DerivativeCheck.mo │ │ │ │ ├── BasicFlowFunction_m_flow_DerivativeCheck2.mo │ │ │ │ ├── InverseFlowFunctions.mo │ │ │ │ ├── InvertingBasicFlowFunction_dp.mo │ │ │ │ ├── InvertingBasicFlowFunction_m_flow.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── basicFlowFunction_dp.mo │ │ │ ├── basicFlowFunction_dp_der.mo │ │ │ ├── basicFlowFunction_dp_der2.mo │ │ │ ├── basicFlowFunction_m_flow.mo │ │ │ ├── basicFlowFunction_m_flow_der.mo │ │ │ ├── basicFlowFunction_m_flow_der2.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── IndexMassFraction.mo │ │ ├── MassFlowRateMultiplier.mo │ │ ├── PartialResistance.mo │ │ ├── PartialThreeWayResistance.mo │ │ ├── Validation │ │ │ ├── ActuatorFilter.mo │ │ │ ├── MassFlowRateMultiplier.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── BoilerCHP │ │ ├── BaseClasses │ │ │ ├── CondensingBoilerEfficiency.mo │ │ │ ├── Controllers │ │ │ │ ├── ControllerOnOff.mo │ │ │ │ ├── ControllerOnOffModularCHP.mo │ │ │ │ ├── DelayedOnOffController.mo │ │ │ │ ├── ExternalControlNightDayHC.mo │ │ │ │ ├── InternalControl.mo │ │ │ │ ├── PIController.mo │ │ │ │ ├── PartialExternalControl.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── DesignOperation.mo │ │ │ ├── OffDesignOperation.mo │ │ │ ├── PartialHeatGenerator.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Boiler.mo │ │ ├── BoilerGeneric.mo │ │ ├── BoilerNoControl.mo │ │ ├── CHP.mo │ │ ├── CHPNoControl.mo │ │ ├── Data.mo │ │ ├── Examples │ │ │ ├── BoilerGeneric.mo │ │ │ ├── BoilerNoControlSystem.mo │ │ │ ├── BoilerSystem.mo │ │ │ ├── CHPSystem.mo │ │ │ ├── CHPSystemNoControl.mo │ │ │ ├── HeatGeneratorNoControllSystem.mo │ │ │ ├── ModularCHPSystem.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── HeatGeneratorNoControl.mo │ │ ├── ModularCHP │ │ │ ├── BaseClasses │ │ │ │ ├── BaseClassComponents │ │ │ │ │ ├── GasolineEngineChp_EngineHousing.mo │ │ │ │ │ ├── GasolineEngineChp_EngineHousing_CylToInnerWall.mo │ │ │ │ │ ├── GasolineEngineChp_EngineHousing_EngineBlock.mo │ │ │ │ │ ├── GasolineEngineChp_EngineModel.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── CHP_ElectricMachine.mo │ │ │ │ ├── ExhaustHeatExchanger.mo │ │ │ │ ├── GasolineEngineChp.mo │ │ │ │ ├── ModularCHP_PowerUnit.mo │ │ │ │ ├── SubmodelCooling.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ModularCHPIntegrated.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── CHPs │ │ ├── OrganicRankine │ │ │ ├── BaseClasses │ │ │ │ ├── FixedEvaporating.mo │ │ │ │ ├── InterpolateStates.mo │ │ │ │ ├── Validation │ │ │ │ │ ├── DryFluid.mo │ │ │ │ │ ├── WetFluid.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ConstantEvaporation.mo │ │ │ ├── Data │ │ │ │ ├── Generic.mo │ │ │ │ ├── WorkingFluids │ │ │ │ │ ├── Acetone.mo │ │ │ │ │ ├── Ethanol.mo │ │ │ │ │ ├── Heptane.mo │ │ │ │ │ ├── Pentane.mo │ │ │ │ │ ├── Propane.mo │ │ │ │ │ ├── R123.mo │ │ │ │ │ ├── R134a.mo │ │ │ │ │ ├── R245fa.mo │ │ │ │ │ ├── R32.mo │ │ │ │ │ ├── Toluene.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── ORCHotWater.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Validation │ │ │ │ ├── VariableSource.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Chillers │ │ ├── BaseClasses │ │ │ ├── Carnot.mo │ │ │ ├── PartialCarnot_T.mo │ │ │ ├── PartialCarnot_y.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Carnot_TEva.mo │ │ ├── Carnot_y.mo │ │ ├── Examples │ │ │ ├── Carnot_TEva.mo │ │ │ ├── Carnot_y.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ModularReversible │ │ │ ├── BaseClasses │ │ │ │ ├── RefrigerantCycle.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── CarnotWithLosses.mo │ │ │ ├── Controls │ │ │ │ ├── Safety │ │ │ │ │ ├── OperationalEnvelope.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Data │ │ │ │ ├── TableData2D │ │ │ │ │ ├── EN14511 │ │ │ │ │ │ ├── Carrier30XWP1012_1MW.mo │ │ │ │ │ │ ├── SingleSplitRXM20R.mo │ │ │ │ │ │ ├── Vitocal251A08.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── Generic.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── CarnotWithLosses.mo │ │ │ │ ├── LargeScaleWaterToWater.mo │ │ │ │ ├── Modular.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── LargeScaleWaterToWater.mo │ │ │ ├── Modular.mo │ │ │ ├── RefrigerantCycle │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── NoCooling.mo │ │ │ │ │ ├── PartialChillerCycle.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── ConstantCarnotEffectiveness.mo │ │ │ │ ├── TableData2D.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── UsersGuide.mo │ │ │ ├── Validation │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── PartialModularComparison.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Carnot_y.mo │ │ │ │ ├── ConstantCarnotEffectiveness.mo │ │ │ │ ├── TableData2D.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Validation │ │ │ ├── CarnotVerifyCOP.mo │ │ │ ├── CarnotVerifyEtaCarnot.mo │ │ │ ├── Carnot_TEva_2ndLaw.mo │ │ │ ├── Carnot_TEva_HighTemperature.mo │ │ │ ├── Carnot_TEva_LimitedCapacity.mo │ │ │ ├── Carnot_TEva_etaPL.mo │ │ │ ├── Carnot_TEva_reverseFlow.mo │ │ │ ├── Carnot_y_etaPL.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Delays │ │ ├── DelayFirstOrder.mo │ │ ├── Examples │ │ │ ├── Delay.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── DistrictHeatingCooling │ │ ├── BaseClasses │ │ │ ├── Supplies │ │ │ │ ├── OpenLoop │ │ │ │ │ ├── PartialSupply.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Demands │ │ │ ├── ClosedLoop │ │ │ │ ├── DHCSubstationHeatPumpChiller.mo │ │ │ │ ├── DHCSubstationHeatPumpDirectCooling.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── DHCSubstationHeatPumpChiller.mo │ │ │ │ ├── DHCSubstationHeatPumpDirectCooling.mo │ │ │ │ ├── OpenLoopHeatPumpCarnot.mo │ │ │ │ ├── OpenLoopVarTSupplyDp.mo │ │ │ │ ├── OpenLoopVarTSupplyDpBypass.mo │ │ │ │ ├── OpenLoopVarTSupplyDpFixedTempDifferenceBypass.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── OpenLoop │ │ │ │ ├── HeatPumpCarnot.mo │ │ │ │ ├── VarTSupplyDp.mo │ │ │ │ ├── VarTSupplyDpBypass.mo │ │ │ │ ├── VarTSupplyDpFixedTempDifferenceBypass.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Pipes │ │ │ ├── BaseClassesStatic │ │ │ │ ├── StaticCore.mo │ │ │ │ ├── StaticTransportDelay.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── DHCPipe.mo │ │ │ ├── Examples │ │ │ │ ├── DHCPipe.mo │ │ │ │ ├── PlugFlowPipeEmbedded.mo │ │ │ │ ├── PlugFlowPipeZeta.mo │ │ │ │ ├── StaticPipe.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── PlugFlowPipeEmbedded.mo │ │ │ ├── PlugFlowPipeZeta.mo │ │ │ ├── StaticPipe.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Supplies │ │ │ ├── ClosedLoop │ │ │ │ ├── DHCSupplyHeaterCoolerStorage.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── DHCSupplyHeaterCoolerStorage.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── OpenLoop │ │ │ │ ├── SourceIdeal.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── UsersGuide.mo │ │ ├── package.mo │ │ └── package.order │ ├── Examples │ │ ├── FlowSystem │ │ │ ├── Basic.mo │ │ │ ├── Simplified1.mo │ │ │ ├── Simplified2.mo │ │ │ ├── Simplified3.mo │ │ │ ├── Simplified4.mo │ │ │ ├── Simplified5.mo │ │ │ ├── Simplified6.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── GeothermalHeatPump │ │ │ ├── BaseClasses │ │ │ │ ├── GeothermalHeatPumpBase.mo │ │ │ │ ├── GeothermalHeatPumpControlledBase.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Components │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── BoilerBase.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── BoilerExternalControl.mo │ │ │ │ ├── BoilerStandAlone.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Control │ │ │ │ ├── PumpControlBus.mo │ │ │ │ ├── ValveControlBus.mo │ │ │ │ ├── geothermalFieldController.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── GeothermalHeatPump.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Performance │ │ │ ├── BaseClasses │ │ │ │ ├── Example1.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Example1v1.mo │ │ │ ├── Example1v2.mo │ │ │ ├── Example2.mo │ │ │ ├── Example3.mo │ │ │ ├── Example4.mo │ │ │ ├── Example5.mo │ │ │ ├── Example6.mo │ │ │ ├── Example7.mo │ │ │ ├── Example8.mo │ │ │ ├── PressureDrop │ │ │ │ ├── ParallelDp.mo │ │ │ │ ├── ParallelDpOptimised.mo │ │ │ │ ├── ParallelFlow.mo │ │ │ │ ├── ParallelFlowOptimised.mo │ │ │ │ ├── SeriesDp.mo │ │ │ │ ├── SeriesDpOptimised.mo │ │ │ │ ├── SeriesFlow.mo │ │ │ │ ├── SeriesFlowOptimised.mo │ │ │ │ ├── SeriesParallelDp.mo │ │ │ │ ├── SeriesParallelDpOptimised.mo │ │ │ │ ├── SeriesParallelFlow.mo │ │ │ │ ├── SeriesParallelFlowOptimised.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ResistanceVolumeFlowReversal.mo │ │ ├── package.mo │ │ └── package.order │ ├── FMI │ │ ├── Adaptors │ │ │ ├── Examples │ │ │ │ ├── ThermalZoneHVACNoExhaust.mo │ │ │ │ ├── ThermalZoneHVACWithExhaust.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── HVAC.mo │ │ │ ├── Inlet.mo │ │ │ ├── Outlet.mo │ │ │ ├── ThermalZone.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── BaseClasses │ │ │ ├── X_w_toX.mo │ │ │ ├── hOut_toT.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Conversion │ │ │ ├── AirToOutlet.mo │ │ │ ├── InletToAir.mo │ │ │ ├── Validation │ │ │ │ ├── AirToOutlet.mo │ │ │ │ ├── AirToOutletFlowReversal.mo │ │ │ │ ├── InletToAirDryAir.mo │ │ │ │ ├── InletToAirDryAirCO2.mo │ │ │ │ ├── InletToAirMoistAir.mo │ │ │ │ ├── InletToAirMoistAirCO2.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ExportContainers │ │ │ ├── Examples │ │ │ │ ├── FMUs │ │ │ │ │ ├── Fan.mo │ │ │ │ │ ├── FlowSplitter_u.mo │ │ │ │ │ ├── HVACZone.mo │ │ │ │ │ ├── HVACZones.mo │ │ │ │ │ ├── HeaterCooler_u.mo │ │ │ │ │ ├── Heater_T.mo │ │ │ │ │ ├── Humidifier_u.mo │ │ │ │ │ ├── IdealSource_m_flow.mo │ │ │ │ │ ├── MixingVolume.mo │ │ │ │ │ ├── PressureDrop.mo │ │ │ │ │ ├── ResistanceVolume.mo │ │ │ │ │ ├── ThermalZone.mo │ │ │ │ │ ├── ThermalZones.mo │ │ │ │ │ ├── TwoPortPassThrough.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── HVACZone.mo │ │ │ ├── HVACZones.mo │ │ │ ├── PartialTwoPort.mo │ │ │ ├── ReplaceableTwoPort.mo │ │ │ ├── ThermalZone.mo │ │ │ ├── ThermalZones.mo │ │ │ ├── Validation │ │ │ │ ├── FMUs │ │ │ │ │ ├── HVACThermalZoneAir1.mo │ │ │ │ │ ├── HVACThermalZoneAir2.mo │ │ │ │ │ ├── HVACThermalZoneAir3.mo │ │ │ │ │ ├── HVACThermalZoneSimpleAir1.mo │ │ │ │ │ ├── HVACThermalZoneSimpleAir2.mo │ │ │ │ │ ├── HVACThermalZoneSimpleAir3.mo │ │ │ │ │ ├── ThermalZoneAir1.mo │ │ │ │ │ ├── ThermalZoneAir2.mo │ │ │ │ │ ├── ThermalZoneAir3.mo │ │ │ │ │ ├── ThermalZoneSimpleAir1.mo │ │ │ │ │ ├── ThermalZoneSimpleAir2.mo │ │ │ │ │ ├── ThermalZoneSimpleAir3.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── FlowSplitter_u.mo │ │ ├── Interfaces │ │ │ ├── FluidProperties.mo │ │ │ ├── Inlet.mo │ │ │ ├── MassFractionConnector.mo │ │ │ ├── Outlet.mo │ │ │ ├── PressureInput.mo │ │ │ ├── PressureOutput.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Sink_T.mo │ │ ├── Source_T.mo │ │ ├── UsersGuide.mo │ │ ├── Validation │ │ │ ├── FlowSplitter_u.mo │ │ │ ├── HeaterFan.mo │ │ │ ├── HeaterFanPressureDriven.mo │ │ │ ├── HeaterFan_noReverseFlow.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── FixedResistances │ │ ├── BaseClasses │ │ │ ├── PlugFlow.mo │ │ │ ├── PlugFlowCore.mo │ │ │ ├── PlugFlowHeatLoss.mo │ │ │ ├── PlugFlowPipe.mo │ │ │ ├── PlugFlowTransportDelay.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── CheckValve.mo │ │ ├── Examples │ │ │ ├── CheckValve.mo │ │ │ ├── CompareFixedResistances.mo │ │ │ ├── FlowJunction.mo │ │ │ ├── GenericPipe.mo │ │ │ ├── HydraulicDiameter.mo │ │ │ ├── Pipe.mo │ │ │ ├── PlugFlowPipe.mo │ │ │ ├── PlugFlowPipeDiscretized.mo │ │ │ ├── PressureDrop.mo │ │ │ ├── SimplePipe.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── GenericPipe.mo │ │ ├── HydraulicDiameter.mo │ │ ├── HydraulicResistance.mo │ │ ├── Junction.mo │ │ ├── LosslessPipe.mo │ │ ├── Pipe.mo │ │ ├── PlugFlowPipe.mo │ │ ├── PlugFlowPipeDiscretized.mo │ │ ├── PressureDrop.mo │ │ ├── SimplePipe.mo │ │ ├── Validation │ │ │ ├── FlowJunctionSteadyState.mo │ │ │ ├── FlowJunctionSteadyStateNoPressureDrop.mo │ │ │ ├── LosslessPipe.mo │ │ │ ├── PlugFlowPipes │ │ │ │ ├── Data │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── PipeDataBaseDefinition.mo │ │ │ │ │ │ ├── PipeDataULg.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── PipeDataAIT151218.mo │ │ │ │ │ ├── PipeDataULg150801.mo │ │ │ │ │ ├── PipeDataULg151202.mo │ │ │ │ │ ├── PipeDataULg151204_1.mo │ │ │ │ │ ├── PipeDataULg151204_2.mo │ │ │ │ │ ├── PipeDataULg151204_4.mo │ │ │ │ │ ├── PipeDataULg160104_2.mo │ │ │ │ │ ├── PipeDataULg160118_1.mo │ │ │ │ │ ├── TestData.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── FlowReversal.mo │ │ │ │ ├── MSLAIT.mo │ │ │ │ ├── MSLAIT2Nodes.mo │ │ │ │ ├── PlugFlowAIT.mo │ │ │ │ ├── PlugFlowULg.mo │ │ │ │ ├── TransportWaterAir.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── PressureDropsExplicit.mo │ │ │ ├── PressureDropsExplicitLinearized.mo │ │ │ ├── PressureDropsParallel.mo │ │ │ ├── PressureDropsSeries.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Geothermal │ │ ├── Aquifer │ │ │ ├── Data │ │ │ │ ├── Rock.mo │ │ │ │ ├── Template.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── CoolingOffice.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── MultiWell.mo │ │ │ ├── Validation │ │ │ │ ├── NumberWells.mo │ │ │ │ ├── SimulationTest.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Borefields │ │ │ ├── BaseClasses │ │ │ │ ├── Boreholes │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ │ ├── InternalHEXOneUTube.mo │ │ │ │ │ │ │ ├── InternalHEXTwoUTube.mo │ │ │ │ │ │ │ ├── InternalResistancesOneUTube.mo │ │ │ │ │ │ │ ├── InternalResistancesTwoUTube.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── Functions │ │ │ │ │ │ │ ├── Validation │ │ │ │ │ │ │ │ ├── ConvectionResistanceCircularPipe.mo │ │ │ │ │ │ │ │ ├── InternalResistancesOneUTube.mo │ │ │ │ │ │ │ │ ├── InternalResistancesOneUTubeNegative.mo │ │ │ │ │ │ │ │ ├── InternalResistancesTwoUTube.mo │ │ │ │ │ │ │ │ ├── InternalResistancesTwoUTubeNegative.mo │ │ │ │ │ │ │ │ ├── MultipoleThermalResistances_OneUTube.mo │ │ │ │ │ │ │ │ ├── MultipoleThermalResistances_TwoUTube.mo │ │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ │ ├── convectionResistanceCircularPipe.mo │ │ │ │ │ │ │ ├── internalResistancesOneUTube.mo │ │ │ │ │ │ │ ├── internalResistancesTwoUTube.mo │ │ │ │ │ │ │ ├── multipoleFluidTemperature.mo │ │ │ │ │ │ │ ├── multipoleFmk.mo │ │ │ │ │ │ │ ├── multipoleThermalResistances.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ ├── package.order │ │ │ │ │ │ │ └── partialInternalResistances.mo │ │ │ │ │ │ ├── InternalHEXOneUTube.mo │ │ │ │ │ │ ├── InternalHEXTwoUTube.mo │ │ │ │ │ │ ├── InternalResistancesOneUTube.mo │ │ │ │ │ │ ├── InternalResistancesTwoUTube.mo │ │ │ │ │ │ ├── PartialBorehole.mo │ │ │ │ │ │ ├── PartialInternalHEX.mo │ │ │ │ │ │ ├── PartialInternalResistances.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ │ ├── PartialBorehole.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── BoreholeDynamics.mo │ │ │ │ │ │ ├── BoreholeOneUTube.mo │ │ │ │ │ │ ├── BoreholeTwoUTube.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── OneUTube.mo │ │ │ │ │ ├── TwoUTube.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HeatTransfer │ │ │ │ │ ├── Cylindrical.mo │ │ │ │ │ ├── GroundTemperatureResponse.mo │ │ │ │ │ ├── LoadAggregation │ │ │ │ │ │ ├── Validation │ │ │ │ │ │ │ ├── AggregationCellTimes.mo │ │ │ │ │ │ │ ├── AggregationWeightingFactors.mo │ │ │ │ │ │ │ ├── CountAggregationCells.mo │ │ │ │ │ │ │ ├── ShiftAggregationCells.mo │ │ │ │ │ │ │ ├── TemperatureResponseMatrix.mo │ │ │ │ │ │ │ ├── TemporalSuperposition.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── aggregationCellTimes.mo │ │ │ │ │ │ ├── aggregationWeightingFactors.mo │ │ │ │ │ │ ├── countAggregationCells.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ ├── package.order │ │ │ │ │ │ ├── shiftAggregationCells.mo │ │ │ │ │ │ ├── temperatureResponseMatrix.mo │ │ │ │ │ │ └── temporalSuperposition.mo │ │ │ │ │ ├── ThermalResponseFactors │ │ │ │ │ │ ├── Validation │ │ │ │ │ │ │ ├── ClusterBoreholes_100boreholes.mo │ │ │ │ │ │ │ ├── CylindricalHeatSource.mo │ │ │ │ │ │ │ ├── CylindricalHeatSource_Integrand.mo │ │ │ │ │ │ │ ├── FiniteLineSource.mo │ │ │ │ │ │ │ ├── FiniteLineSource_Equivalent.mo │ │ │ │ │ │ │ ├── FiniteLineSource_Erfint.mo │ │ │ │ │ │ │ ├── FiniteLineSource_Integrand.mo │ │ │ │ │ │ │ ├── FiniteLineSource_Integrand_Equivalent.mo │ │ │ │ │ │ │ ├── FiniteLineSource_Integrand_Length.mo │ │ │ │ │ │ │ ├── FiniteLineSource_SteadyState.mo │ │ │ │ │ │ │ ├── GFunction_100boreholes.mo │ │ │ │ │ │ │ ├── GFunction_1borehole_5meters.mo │ │ │ │ │ │ │ ├── GFunction_SmallScaleValidation.mo │ │ │ │ │ │ │ ├── InfiniteLineSource.mo │ │ │ │ │ │ │ ├── ShaGFunction.mo │ │ │ │ │ │ │ ├── TimeGeometric.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── clusterBoreholes.mo │ │ │ │ │ │ ├── cylindricalHeatSource.mo │ │ │ │ │ │ ├── cylindricalHeatSource_Integrand.mo │ │ │ │ │ │ ├── finiteLineSource.mo │ │ │ │ │ │ ├── finiteLineSource_Equivalent.mo │ │ │ │ │ │ ├── finiteLineSource_Erfint.mo │ │ │ │ │ │ ├── finiteLineSource_Integrand.mo │ │ │ │ │ │ ├── finiteLineSource_Integrand_Equivalent.mo │ │ │ │ │ │ ├── finiteLineSource_SteadyState.mo │ │ │ │ │ │ ├── gFunction.mo │ │ │ │ │ │ ├── infiniteLineSource.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ ├── package.order │ │ │ │ │ │ ├── shaGFunction.mo │ │ │ │ │ │ └── timeGeometric.mo │ │ │ │ │ ├── Validation │ │ │ │ │ │ ├── Analytic_20Years.mo │ │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ │ ├── SmallScale_Borefield.mo │ │ │ │ │ │ │ ├── SmallScale_Configuration.mo │ │ │ │ │ │ │ ├── SmallScale_Filling.mo │ │ │ │ │ │ │ ├── SmallScale_Soil.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── Cylindrical.mo │ │ │ │ │ │ ├── FiniteDifference_1Week.mo │ │ │ │ │ │ ├── Measured_SmallScale.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── PartialBorefield.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Data │ │ │ │ ├── Borefield │ │ │ │ │ ├── Example.mo │ │ │ │ │ ├── Template.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Configuration │ │ │ │ │ ├── Example.mo │ │ │ │ │ ├── Template.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Filling │ │ │ │ │ ├── Bentonite.mo │ │ │ │ │ ├── Template.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Soil │ │ │ │ │ ├── SandStone.mo │ │ │ │ │ ├── Template.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── Borefields.mo │ │ │ │ ├── RectangularBorefield.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── OneUTube.mo │ │ │ ├── TwoUTubes.mo │ │ │ ├── Types.mo │ │ │ ├── UsersGuide.mo │ │ │ ├── Validation │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── ConstantHeatInjection_100Boreholes_Borefield.mo │ │ │ │ │ ├── ConstantHeatInjection_100Boreholes_Configuration.mo │ │ │ │ │ ├── ConstantHeatInjection_100Boreholes_Filling.mo │ │ │ │ │ ├── ConstantHeatInjection_100Boreholes_Soil.mo │ │ │ │ │ ├── SandBox_Borefield.mo │ │ │ │ │ ├── SandBox_Configuration.mo │ │ │ │ │ ├── SandBox_Filling.mo │ │ │ │ │ ├── SandBox_Soil.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── ConstantHeatInjection_100Boreholes.mo │ │ │ │ ├── Sandbox.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── HeatExchangers │ │ ├── ActiveBeams │ │ │ ├── BaseClasses │ │ │ │ ├── Convector.mo │ │ │ │ ├── DerivativesCubicSpline.mo │ │ │ │ ├── Examples │ │ │ │ │ ├── Convector.mo │ │ │ │ │ ├── DerivateCubicSpline.mo │ │ │ │ │ ├── ModificationFactor.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── ModificationFactor.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Cooling.mo │ │ │ ├── CoolingAndHeating.mo │ │ │ ├── Data │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── AirFlow.mo │ │ │ │ │ ├── TemperatureDifference.mo │ │ │ │ │ ├── WaterFlow.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Generic.mo │ │ │ │ ├── Trox.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── CoolingAndHeating.mo │ │ │ │ ├── CoolingOnly.mo │ │ │ │ ├── HeatingOnly.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── UsersGuide.mo │ │ │ ├── Validation │ │ │ │ ├── NumberOfBeams.mo │ │ │ │ ├── NumberOfBeamsDynamics.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ActiveWalls │ │ │ ├── BaseClasses │ │ │ │ ├── HeatCapacityPerArea.mo │ │ │ │ ├── HeatConductionSegment.mo │ │ │ │ ├── PanelHeatingSegment.mo │ │ │ │ ├── PressureDropPH.mo │ │ │ │ ├── logDT.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Distributor.mo │ │ │ ├── Examples │ │ │ │ ├── PanelHeatingMultiple.mo │ │ │ │ ├── PanelHeatingSingle.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── PanelHeating.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── BaseClasses │ │ │ ├── Examples │ │ │ │ ├── HACoilInside.mo │ │ │ │ ├── HADryCoil.mo │ │ │ │ ├── HANaturalCylinder.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── HACoilInside.mo │ │ │ ├── HADryCoil.mo │ │ │ ├── HANaturalCylinder.mo │ │ │ ├── PartialEffectiveness.mo │ │ │ ├── PartialEffectivenessNTU.mo │ │ │ ├── PartialPrescribedOutlet.mo │ │ │ ├── WetCoilDryRegime.mo │ │ │ ├── WetCoilDryWetRegime.mo │ │ │ ├── WetCoilUARated.mo │ │ │ ├── WetCoilWetRegime.mo │ │ │ ├── determineWaterIndex.mo │ │ │ ├── dynamicViscosityWater.mo │ │ │ ├── epsilon_C.mo │ │ │ ├── epsilon_ntuZ.mo │ │ │ ├── isobaricExpansionCoefficientWater.mo │ │ │ ├── lmtd.mo │ │ │ ├── ntu_epsilonZ.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ └── prandtlNumberWater.mo │ │ ├── ConstantEffectiveness.mo │ │ ├── DryCoilEffectivenessNTU.mo │ │ ├── DynamicHX.mo │ │ ├── EvaporatorCondenser.mo │ │ ├── Examples │ │ │ ├── AirHeater_T.mo │ │ │ ├── AirHeater_u.mo │ │ │ ├── BaseClasses │ │ │ │ ├── EffectivenessNTUMassFlow.mo │ │ │ │ ├── Heater.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── DryCoilEffectivenessNTUMassFlow.mo │ │ │ ├── DryCoilEffectivenessNTUPControl.mo │ │ │ ├── DynamicHX.mo │ │ │ ├── HeatingRod.mo │ │ │ ├── WaterCooler_T.mo │ │ │ ├── WaterHeater_T.mo │ │ │ ├── WaterHeater_u.mo │ │ │ ├── WetCoilEffectivenessNTUMassFlow.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── HeaterCooler_u.mo │ │ ├── Heater_T.mo │ │ ├── HeatingRod.mo │ │ ├── PrescribedOutlet.mo │ │ ├── Radiators │ │ │ ├── BaseClasses │ │ │ │ ├── CalcExcessTemp.mo │ │ │ │ ├── HeatConvRadiator.mo │ │ │ │ ├── MultiLayerThermalDelta.mo │ │ │ │ ├── PressureDropRadiator.mo │ │ │ │ ├── RadiatorTypes.mo │ │ │ │ ├── RadiatorTypes │ │ │ │ │ ├── RadiatorType.mo │ │ │ │ │ └── package.order │ │ │ │ ├── RadiatorWall.mo │ │ │ │ ├── calcHeaterExcessTemp.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── Radiator.mo │ │ │ │ ├── RadiatorEN442_2.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Radiator.mo │ │ │ ├── RadiatorEN442_2.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── SensibleCooler_T.mo │ │ ├── Validation │ │ │ ├── ConstantEffectiveness.mo │ │ │ ├── DryCoilEffectivenessNTU.mo │ │ │ ├── EvaporatorCondenser.mo │ │ │ ├── HeaterCooler_u.mo │ │ │ ├── PrescribedOutlet.mo │ │ │ ├── PrescribedOutlet_dynamic.mo │ │ │ ├── WetCoilEffectivenessNTU.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── WetCoilEffectivenessNTU.mo │ │ ├── package.mo │ │ └── package.order │ ├── HeatPumps │ │ ├── BaseClasses │ │ │ ├── PartialWaterToWater.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Calibration │ │ │ ├── BaseClasses │ │ │ │ ├── PartialWaterToWater.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ScrollWaterToWater.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Carnot_TCon.mo │ │ ├── Carnot_y.mo │ │ ├── Compressors │ │ │ ├── BaseClasses │ │ │ │ ├── PartialCompressor.mo │ │ │ │ ├── TemperatureProtection.mo │ │ │ │ ├── Validation │ │ │ │ │ ├── TemperatureProtection.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ReciprocatingCompressor.mo │ │ │ ├── ScrollCompressor.mo │ │ │ ├── Validation │ │ │ │ ├── ReciprocatingCompressor.mo │ │ │ │ ├── ReciprocatingCompressor_ZeroInput.mo │ │ │ │ ├── ScrollCompressor.mo │ │ │ │ ├── ScrollCompressor_ZeroInput.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Data │ │ │ ├── BaseClasses │ │ │ │ ├── HeatPumps.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ReciprocatingWaterToWater │ │ │ │ ├── Generic.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ScrollWaterToWater │ │ │ │ ├── Generic.mo │ │ │ │ ├── Heating │ │ │ │ │ ├── Carrier_50PSW122_38kW_4_29COP_R410A.mo │ │ │ │ │ ├── Carrier_50PSW180_52kW_4_50COP_R410A.mo │ │ │ │ │ ├── Carrier_50PSW210_70kW_4_40COP_R410A.mo │ │ │ │ │ ├── Carrier_50PSW240_93kW_4_40COP_R410A.mo │ │ │ │ │ ├── Carrier_50PSW360_105kW_4_50COP_R410A.mo │ │ │ │ │ ├── Carrier_50PSW420_140kW_4_40COP_R410A.mo │ │ │ │ │ ├── ClimateMaster_TMW036_12kW_4_90COP_R410A.mo │ │ │ │ │ ├── ClimateMaster_TMW060_21kW_4_60COP_R410A.mo │ │ │ │ │ ├── ClimateMaster_TMW120_42kW_4_50COP_R410A.mo │ │ │ │ │ ├── ClimateMaster_TMW170_48kW_4_30COP_R410A.mo │ │ │ │ │ ├── ClimateMaster_TMW340_98kW_4_40COP_R410A.mo │ │ │ │ │ ├── Daikin_WRA036_13kW_4_50COP_R410A.mo │ │ │ │ │ ├── Daikin_WRA048_16kW_4_60COP_R410A.mo │ │ │ │ │ ├── Daikin_WRA060_19kW_4_50COP_R410A.mo │ │ │ │ │ ├── Daikin_WRA072_24kW_4_30COP_R410A.mo │ │ │ │ │ ├── Daikin_WRA120_37kW_4_40COP_R410A.mo │ │ │ │ │ ├── Daikin_WRA150_49kW_4_70COP_R410A.mo │ │ │ │ │ ├── Daikin_WRA180_63kW_4_50COP_R410A.mo │ │ │ │ │ ├── Daikin_WRA240_79kW_4_40COP_R410A.mo │ │ │ │ │ ├── Daikin_WRA300_93kW_4_60COP_R410A.mo │ │ │ │ │ ├── Daikin_WRA360_116kW_4_60COP_R410A.mo │ │ │ │ │ ├── Daikin_WRA420_137kW_4_50COP_R410A.mo │ │ │ │ │ ├── Trane_EXW060_21kW_4_30COP_R410A.mo │ │ │ │ │ ├── Trane_EXW120_40kW_3_90COP_R410A.mo │ │ │ │ │ ├── Trane_EXW240_76kW_4_10COP_R410A.mo │ │ │ │ │ ├── Viessmann_BW301A21_28kW_5_94COP_R410A.mo │ │ │ │ │ ├── Viessmann_BW301A29_37kW_6_0COP_R410A.mo │ │ │ │ │ ├── Viessmann_BW301A45_58kW_5_50COP_R410A.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── Carnot_TCon.mo │ │ │ ├── Carnot_y.mo │ │ │ ├── ScrollWaterToWater_OneRoomRadiator.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ModularReversible │ │ │ ├── AirToWaterTableData2D.mo │ │ │ ├── BaseClasses │ │ │ │ ├── CalculateEfficiency.mo │ │ │ │ ├── EvaporatorCondenserWithCapacity.mo │ │ │ │ ├── LargeScaleWaterToWaterDeclarations.mo │ │ │ │ ├── PartialModularRefrigerantCycle.mo │ │ │ │ ├── PartialReversibleRefrigerantMachine.mo │ │ │ │ ├── RefrigerantCycle.mo │ │ │ │ ├── RefrigerantMachineControlBus.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── CarnotWithLosses.mo │ │ │ ├── Controls │ │ │ │ ├── Safety │ │ │ │ │ ├── AntiFreeze.mo │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── BoundaryMap.mo │ │ │ │ │ │ ├── CycleRateBoundary.mo │ │ │ │ │ │ ├── OnOffFuzzyLogic.mo │ │ │ │ │ │ ├── OnPastThreshold.mo │ │ │ │ │ │ ├── PartialOperationalEnvelope.mo │ │ │ │ │ │ ├── PartialSafety.mo │ │ │ │ │ │ ├── PartialSafetyWithCounter.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── Generic.mo │ │ │ │ │ │ ├── Wuellhorst2021.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── AntiFreeze.mo │ │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ │ ├── PartialSafety.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── MinimalFlowRate.mo │ │ │ │ │ │ ├── OnOff.mo │ │ │ │ │ │ ├── OperationalEnvelope.mo │ │ │ │ │ │ ├── Safety.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── MinimalFlowRate.mo │ │ │ │ │ ├── OnOff.mo │ │ │ │ │ ├── OperationalEnvelope.mo │ │ │ │ │ ├── Safety.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Data │ │ │ │ ├── TableData2D │ │ │ │ │ ├── EN14511 │ │ │ │ │ │ ├── AlphaInnotec_LW80MA.mo │ │ │ │ │ │ ├── AverageAirToWaterResidential.mo │ │ │ │ │ │ ├── Dimplex_LA11AS.mo │ │ │ │ │ │ ├── NIBE_F2050_10.mo │ │ │ │ │ │ ├── NIBE_F2120_20.mo │ │ │ │ │ │ ├── NIBE_S2125_12.mo │ │ │ │ │ │ ├── Novelan_L12_Split.mo │ │ │ │ │ │ ├── Ochsner_GMLW_19.mo │ │ │ │ │ │ ├── Ochsner_GMLW_19plus.mo │ │ │ │ │ │ ├── Ochsner_GMSW_15plus.mo │ │ │ │ │ │ ├── Remko_CMFCMT_180.mo │ │ │ │ │ │ ├── SingleSplitRXM20R.mo │ │ │ │ │ │ ├── StiebelEltron_WPL18.mo │ │ │ │ │ │ ├── Vaillant_VWL_101.mo │ │ │ │ │ │ ├── Vitocal222A08.mo │ │ │ │ │ │ ├── Vitocal222S08.mo │ │ │ │ │ │ ├── Vitocal251A08.mo │ │ │ │ │ │ ├── WAMAK_WaterToWater_220kW.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── EN255 │ │ │ │ │ │ ├── AlphaInnotec_SW170I.mo │ │ │ │ │ │ ├── NibeFighter1140_15.mo │ │ │ │ │ │ ├── Vitocal350AWI114.mo │ │ │ │ │ │ ├── Vitocal350BWH110.mo │ │ │ │ │ │ ├── Vitocal350BWH113.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── Generic.mo │ │ │ │ │ ├── GenericAirToWater.mo │ │ │ │ │ ├── GenericHeatPump.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── TableDataSDF │ │ │ │ │ ├── Generic.mo │ │ │ │ │ ├── GenericHeatPump.mo │ │ │ │ │ ├── GenericVCLibPy.mo │ │ │ │ │ ├── TableData3D │ │ │ │ │ │ ├── Generic.mo │ │ │ │ │ │ ├── VCLibPy │ │ │ │ │ │ │ ├── Generic.mo │ │ │ │ │ │ │ ├── VCLibStandardPropane.mo │ │ │ │ │ │ │ ├── VCLibStandardR134a.mo │ │ │ │ │ │ │ ├── VCLibStandardR152a.mo │ │ │ │ │ │ │ ├── VCLibStandardR410A.mo │ │ │ │ │ │ │ ├── VCLibVaporInjectionPhaseSeparatorPropane.mo │ │ │ │ │ │ │ ├── VCLibVaporInjectionPhaseSeparatorR134a.mo │ │ │ │ │ │ │ ├── VCLibVaporInjectionPhaseSeparatorR152a.mo │ │ │ │ │ │ │ ├── VCLibVaporInjectionPhaseSeparatorR410A.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── VZH088AG.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── AirToWater2D_OneRoomRadiator.mo │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── OneRoomRadiatorHeatPumpControl.mo │ │ │ │ │ ├── PartialOneRoomRadiator.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── CarnotWithLosses_OneRoomRadiator.mo │ │ │ │ ├── LargeScaleWaterToWater_OneRoomRadiator.mo │ │ │ │ ├── Modular_OneRoomRadiator.mo │ │ │ │ ├── TableData3D_OneRoomRadiator.mo │ │ │ │ ├── VCLibAirToWater_OneRoomRadiator.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── LargeScaleWaterToWater.mo │ │ │ ├── Modular.mo │ │ │ ├── RefrigerantCycle │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── NoHeating.mo │ │ │ │ │ ├── PartialCarnot.mo │ │ │ │ │ ├── PartialHeatPumpCycle.mo │ │ │ │ │ ├── PartialHeatPumpTableDataND.mo │ │ │ │ │ ├── PartialRefrigerantCycle.mo │ │ │ │ │ ├── PartialTableData2D.mo │ │ │ │ │ ├── PartialTableData3D.mo │ │ │ │ │ ├── PartialTableDataSDF.mo │ │ │ │ │ ├── RearrangeInputs.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── ConstantCarnotEffectiveness.mo │ │ │ │ ├── Frosting │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── PartialIcingFactor.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── FunctionalIcingFactor.mo │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ ├── package.order │ │ │ │ │ │ ├── partialIcingFactor.mo │ │ │ │ │ │ └── wetterAfjei1997.mo │ │ │ │ │ ├── NoFrosting.mo │ │ │ │ │ ├── Validation │ │ │ │ │ │ ├── WetterAfjei1997.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Inertias │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── PartialInertia.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── NoInertia.mo │ │ │ │ │ ├── VariableOrder.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── TableData2D.mo │ │ │ │ ├── TableData3D.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── TableData2D.mo │ │ │ ├── UsersGuide.mo │ │ │ ├── Validation │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── PartialValidation.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Comparative │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── PartialComparison.mo │ │ │ │ │ │ ├── PartialModularComparison.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── Carnot_y.mo │ │ │ │ │ ├── ConstantCarnotEffectiveness.mo │ │ │ │ │ ├── TableData2D.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── ConstantCarnotEffectiveness.mo │ │ │ │ ├── TableData2D.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ReciprocatingWaterToWater.mo │ │ ├── ScrollWaterToWater.mo │ │ ├── Validation │ │ │ ├── Carnot_TCon_LimitedCapacity.mo │ │ │ ├── Carnot_TCon_LowTemperature.mo │ │ │ ├── Carnot_TCon_etaPL.mo │ │ │ ├── Carnot_TCon_reverseFlow.mo │ │ │ ├── Carnot_y_etaCar.mo │ │ │ ├── Carnot_y_etaPL.mo │ │ │ ├── ReciprocatingWaterToWater_Dynamic.mo │ │ │ ├── ReciprocatingWaterToWater_ScalingFactor.mo │ │ │ ├── ReciprocatingWaterToWater_Static.mo │ │ │ ├── ReciprocatingWaterToWater_VariableSpeed.mo │ │ │ ├── ScrollWaterToWater_Dynamic.mo │ │ │ ├── ScrollWaterToWater_ScalingFactor.mo │ │ │ ├── ScrollWaterToWater_Static.mo │ │ │ ├── ScrollWaterToWater_TemperatureProtection.mo │ │ │ ├── ScrollWaterToWater_VariableSpeed.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Humidifiers │ │ ├── Examples │ │ │ ├── GenericHumidifier_u.mo │ │ │ ├── Humidifier_u.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── GenericHumidifier_u.mo │ │ ├── Humidifier_u.mo │ │ ├── SprayAirWasher_X.mo │ │ ├── SteamHumidifier_X.mo │ │ ├── Validation │ │ │ ├── SprayAirWasher_X.mo │ │ │ ├── SprayAirWasher_X_dynamic.mo │ │ │ ├── SteamHumidifier_X.mo │ │ │ ├── SteamHumidifier_X_dynamic.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Interfaces │ │ ├── ConservationEquation.mo │ │ ├── EightPort.mo │ │ ├── EightPortFlowResistanceParameters.mo │ │ ├── EightPortHeatMassExchanger.mo │ │ ├── Examples │ │ │ ├── BaseClasses │ │ │ │ ├── PrescribedOutletState.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ConservationEquation.mo │ │ │ ├── EightPortHeatMassExchanger.mo │ │ │ ├── FourPortHeatMassExchanger.mo │ │ │ ├── HeaterCooler_u.mo │ │ │ ├── Humidifier_u.mo │ │ │ ├── PrescribedOutlet.mo │ │ │ ├── PrescribedOutlet_TSetOnly.mo │ │ │ ├── PrescribedOutlet_Water.mo │ │ │ ├── PrescribedOutlet_X_wSetOnly.mo │ │ │ ├── ReverseFlowHumidifier.mo │ │ │ ├── ReverseFlowMassExchanger.mo │ │ │ ├── StaticTwoPortConservationEquation.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── FourPortFlowResistanceParameters.mo │ │ ├── FourPortHeatExchanger.mo │ │ ├── FourPortHeatMassExchanger.mo │ │ ├── LumpedVolumeDeclarations.mo │ │ ├── PartialEightPortInterface.mo │ │ ├── PartialFourPort.mo │ │ ├── PartialFourPortInterface.mo │ │ ├── PartialFourPortParallel.mo │ │ ├── PartialModularPort_a.mo │ │ ├── PartialModularPort_ab.mo │ │ ├── PartialModularPort_b.mo │ │ ├── PartialTwoPort.mo │ │ ├── PartialTwoPortInterface.mo │ │ ├── PartialTwoPortTransport.mo │ │ ├── PartialTwoPortVector.mo │ │ ├── PassThroughMedium.mo │ │ ├── PortAThroughPortsB.mo │ │ ├── PortsAThroughPortB.mo │ │ ├── PrescribedOutlet.mo │ │ ├── StaticFourPortHeatMassExchanger.mo │ │ ├── StaticTwoPortConservationEquation.mo │ │ ├── StaticTwoPortHeatMassExchanger.mo │ │ ├── TwoPortFlowResistanceParameters.mo │ │ ├── TwoPortHeatMassExchanger.mo │ │ ├── package.mo │ │ └── package.order │ ├── MassExchangers │ │ ├── ConstantEffectiveness.mo │ │ ├── Examples │ │ │ ├── ConstantEffectiveness.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── MembraneBasedEnthalpyExchangers │ │ │ ├── BaseClasses │ │ │ │ ├── AirDuct.mo │ │ │ │ ├── Functions │ │ │ │ │ ├── CoefficientCrossToCounterFlow.mo │ │ │ │ │ ├── CollisionIntegral.mo │ │ │ │ │ ├── DiffusionCoefficient.mo │ │ │ │ │ ├── NusseltNumberMuzychka.mo │ │ │ │ │ ├── NusseltNumberStephan.mo │ │ │ │ │ ├── SherwoodNumberMuzychka.mo │ │ │ │ │ ├── SherwoodNumberStephan.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HeatTransfer │ │ │ │ │ ├── AdsorptionEnthalpy.mo │ │ │ │ │ ├── CrossFlowReduction.mo │ │ │ │ │ ├── LocalDuctConvectiveHeatFlow.mo │ │ │ │ │ ├── MembraneHeatTransfer.mo │ │ │ │ │ ├── PartialDuctHeatTransfer.mo │ │ │ │ │ ├── PartialFlowHeatTransfer.mo │ │ │ │ │ ├── PartialHeatTransfer.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── MassTransfer │ │ │ │ │ ├── CrossFlowReduction.mo │ │ │ │ │ ├── LocalDuctConvectiveMassFlow.mo │ │ │ │ │ ├── MembraneMassTransfer.mo │ │ │ │ │ ├── PartialDuctMassTransfer.mo │ │ │ │ │ ├── PartialFlowMassTransfer.mo │ │ │ │ │ ├── PartialMassTransfer.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Membrane.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── EnthalpyExchanger.mo │ │ │ ├── Examples │ │ │ │ ├── Test_EnthalpyExchanger.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Validation │ │ │ │ ├── DynamicValidation.mo │ │ │ │ ├── StaticValidation.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Validation │ │ │ ├── ConstantEffectivenessZeroFlow.mo │ │ │ ├── ConstantEffectivenessZeroFlowBothStreams.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── MixingVolumes │ │ ├── BaseClasses │ │ │ ├── MixingVolumeHeatMoisturePort.mo │ │ │ ├── MixingVolumeHeatPort.mo │ │ │ ├── PartialMixingVolume.mo │ │ │ ├── Validation │ │ │ │ ├── MixingVolumeHeatMoisturePort.mo │ │ │ │ ├── MixingVolumeHeatPortAir.mo │ │ │ │ ├── MixingVolumeHeatPortWater.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── HydraulicSeparator.mo │ │ │ ├── MixingVolumeHeatConduction.mo │ │ │ ├── MixingVolumeMoistAir.mo │ │ │ ├── MixingVolumePrescribedHeatFlowRate.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── HydraulicSeparator.mo │ │ ├── MixingVolume.mo │ │ ├── MixingVolumeMoistAir.mo │ │ ├── Validation │ │ │ ├── BaseClasses │ │ │ │ ├── MixingVolumeReverseFlow.mo │ │ │ │ ├── MoistureMixingConservation.mo │ │ │ │ ├── TraceSubstanceConservation.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── CoupledVolumesAir.mo │ │ │ ├── CoupledVolumesGlycol47.mo │ │ │ ├── CoupledVolumesSpecializedAirPerfectGas.mo │ │ │ ├── CoupledVolumesSpecializedWaterConstantProperties_pT.mo │ │ │ ├── CoupledVolumesSpecializedWaterTemperatureDependentDensity.mo │ │ │ ├── CoupledVolumesWater.mo │ │ │ ├── MSLCombustionAir.mo │ │ │ ├── MSLFlueGasSixComponents.mo │ │ │ ├── MixingVolume.mo │ │ │ ├── MixingVolumeAdiabaticCooling.mo │ │ │ ├── MixingVolumeHeatReverseFlow.mo │ │ │ ├── MixingVolumeHeatReverseFlowPrescribedHeatFlowRate.mo │ │ │ ├── MixingVolumeInitialization.mo │ │ │ ├── MixingVolumeMFactor.mo │ │ │ ├── MixingVolumeMassFlow.mo │ │ │ ├── MixingVolumeMoistureReverseFlow.mo │ │ │ ├── MixingVolumeMoistureReverseFlowPrescribedHeatFlowRate.mo │ │ │ ├── MixingVolumeSteadyStateMass.mo │ │ │ ├── MixingVolumeTraceSubstance.mo │ │ │ ├── MixingVolumeTraceSubstanceReverseFlow.mo │ │ │ ├── MixingVolumeTraceSubstanceReverseFlowPrescribedHeatFlowRate.mo │ │ │ ├── MixingVolumeZeroFlow.mo │ │ │ ├── MoistureMixingConservationDynamicBalance.mo │ │ │ ├── MoistureMixingConservationSteadyState.mo │ │ │ ├── TraceSubstanceConservationDynamicBalance.mo │ │ │ ├── TraceSubstanceConservationSteadyState.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Movers │ │ ├── BaseClasses │ │ │ ├── Characteristics │ │ │ │ ├── efficiency.mo │ │ │ │ ├── efficiencyParameters.mo │ │ │ │ ├── efficiencyParameters_yMot.mo │ │ │ │ ├── efficiency_yMot.mo │ │ │ │ ├── flowParameters.mo │ │ │ │ ├── flowParametersInternal.mo │ │ │ │ ├── motorEfficiencyCurve.mo │ │ │ │ ├── package.mo │ │ │ │ ├── package.order │ │ │ │ ├── power.mo │ │ │ │ ├── powerParameters.mo │ │ │ │ └── pressure.mo │ │ │ ├── Euler │ │ │ │ ├── correlation.mo │ │ │ │ ├── efficiency.mo │ │ │ │ ├── getPeak.mo │ │ │ │ ├── package.mo │ │ │ │ ├── package.order │ │ │ │ ├── peak.mo │ │ │ │ ├── power.mo │ │ │ │ └── powerWithDerivative.mo │ │ │ ├── FlowMachineInterface.mo │ │ │ ├── IdealSource.mo │ │ │ ├── PartialFlowMachine.mo │ │ │ ├── PowerInterface.mo │ │ │ ├── Types.mo │ │ │ ├── Validation │ │ │ │ ├── EulerComparison.mo │ │ │ │ ├── EulerCurve.mo │ │ │ │ ├── EulerReducedSpeed.mo │ │ │ │ ├── FlowMachineInterface.mo │ │ │ │ ├── HydraulicEfficiencyMethods.mo │ │ │ │ ├── MotorEfficiencyMethods.mo │ │ │ │ ├── NegativePressureOrFlow.mo │ │ │ │ ├── PowerInterface.mo │ │ │ │ ├── TotalEfficiencyMethods.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Compressors │ │ │ ├── BaseClasses │ │ │ │ ├── PartialCompression.mo │ │ │ │ ├── PartialCompressor.mo │ │ │ │ ├── PartialEfficiency.mo │ │ │ │ ├── PartialModularCompressors.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── ModularRotaryCompressor.mo │ │ │ │ ├── RotaryCompressor.mo │ │ │ │ ├── RotaryCompressorPressureHeatLosses.mo │ │ │ │ ├── RotaryCompressorPressureLosses.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ModularCompressors │ │ │ │ ├── ModularCompressors.mo │ │ │ │ ├── ModularCompressorsSensors.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── SimpleCompressors │ │ │ │ ├── CompressionProcesses │ │ │ │ │ ├── RotaryCompression.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── RotaryCompressors │ │ │ │ │ ├── RotaryCompressor.mo │ │ │ │ │ ├── RotaryCompressorPressureHeatLosses.mo │ │ │ │ │ ├── RotaryCompressorPressureLosses.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── UsersGuide │ │ │ │ ├── Approaches.mo │ │ │ │ ├── Composition.mo │ │ │ │ ├── References.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Utilities │ │ │ │ ├── EngineEfficiency │ │ │ │ │ ├── PartialEngineEfficiency.mo │ │ │ │ │ ├── PolynomialEngineEfficiency.mo │ │ │ │ │ ├── PowerEngineEfficiency.mo │ │ │ │ │ ├── SpecifiedEfficiencies │ │ │ │ │ │ ├── Buck_R134aR450aR1234yfR1234zee_VarDisVol_ReciprocatingRotaryScroll.mo │ │ │ │ │ │ ├── ConstantEfficiency.mo │ │ │ │ │ │ ├── Generic_VarRef_VarDisVol_RotaryScroll.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HeatTransfer │ │ │ │ │ ├── SimpleFictitiousWall.mo │ │ │ │ │ ├── SimpleHeatTransfer.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── IsentropicEfficiency │ │ │ │ │ ├── PartialIsentropicEfficiency.mo │ │ │ │ │ ├── PolynomialIsentropicEfficiency.mo │ │ │ │ │ ├── PowerIsentropicEfficiency.mo │ │ │ │ │ ├── SpecifiedEfficiencies │ │ │ │ │ │ ├── Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating.mo │ │ │ │ │ │ ├── Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary.mo │ │ │ │ │ │ ├── Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll.mo │ │ │ │ │ │ ├── ConstantEfficiency.mo │ │ │ │ │ │ ├── Generic_VarRef_VarDisVol_RotaryScroll.mo │ │ │ │ │ │ ├── Poly_R134a_169_Reciprocating.mo │ │ │ │ │ │ ├── Poly_R407C_Unknown_Scroll.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Types.mo │ │ │ │ ├── VolumetricEfficiency │ │ │ │ │ ├── PartialVolumetricEfficiency.mo │ │ │ │ │ ├── PolynomialVolumetricEfficiency.mo │ │ │ │ │ ├── PowerVolumetricEfficiency.mo │ │ │ │ │ ├── SpecifiedEfficiencies │ │ │ │ │ │ ├── Buck_R134aR450aR1234yfR1234zee_VarDisVol_Reciprocating.mo │ │ │ │ │ │ ├── Buck_R134aR450aR1234yfR1234zee_VarDisVol_Rotary.mo │ │ │ │ │ │ ├── Buck_R134aR450aR1234yfR1234zee_VarDisVol_Scroll.mo │ │ │ │ │ │ ├── ConstantEfficiency.mo │ │ │ │ │ │ ├── Generic_VarRef_VarDisVol_RotaryScroll.mo │ │ │ │ │ │ ├── Poly_R134a_169_Reciprocating.mo │ │ │ │ │ │ ├── Poly_R134a_170_Reciprocating.mo │ │ │ │ │ │ ├── Poly_R134a_54_Scroll.mo │ │ │ │ │ │ ├── Poly_R22_20_Rotary.mo │ │ │ │ │ │ ├── Poly_R407C_Unknown_Scroll.mo │ │ │ │ │ │ ├── Poly_R410a_130_Rotary.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Validation │ │ │ │ ├── EfficiencyModels.mo │ │ │ │ ├── ModularInactiveCompressors.mo │ │ │ │ ├── SimpleHeatTransfer.mo │ │ │ │ ├── StaticHeatPumpBoundaries │ │ │ │ │ ├── BaseModelStaticBoundaries.mo │ │ │ │ │ ├── BaseModelStaticHeatPump.mo │ │ │ │ │ ├── BaseModelStaticHeatPumpController.mo │ │ │ │ │ ├── SpecifiedModels │ │ │ │ │ │ ├── RefrigerantR134aScrollCompressor.mo │ │ │ │ │ │ ├── RefrigerantR410aScrollCompressor.mo │ │ │ │ │ │ ├── RefrigerantR410aScrollCompressorController.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Data │ │ │ ├── Fans │ │ │ │ ├── Greenheck │ │ │ │ │ ├── BIDW12.mo │ │ │ │ │ ├── BIDW13.mo │ │ │ │ │ ├── BIDW15.mo │ │ │ │ │ ├── BIDW16.mo │ │ │ │ │ ├── BIDW18.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Generic.mo │ │ │ ├── Pumps │ │ │ │ ├── Wilo │ │ │ │ │ ├── CronolineIL80slash220dash4slash4.mo │ │ │ │ │ ├── Stratos25slash1to4.mo │ │ │ │ │ ├── Stratos25slash1to6.mo │ │ │ │ │ ├── Stratos25slash1to8.mo │ │ │ │ │ ├── Stratos30slash1to4.mo │ │ │ │ │ ├── Stratos30slash1to8.mo │ │ │ │ │ ├── Stratos32slash1to12.mo │ │ │ │ │ ├── Stratos40slash1to12.mo │ │ │ │ │ ├── Stratos40slash1to8.mo │ │ │ │ │ ├── Stratos50slash1to12.mo │ │ │ │ │ ├── Stratos80slash1to12.mo │ │ │ │ │ ├── TopS25slash10.mo │ │ │ │ │ ├── TopS30slash10.mo │ │ │ │ │ ├── TopS30slash5.mo │ │ │ │ │ ├── TopS40slash10.mo │ │ │ │ │ ├── TopS40slash7.mo │ │ │ │ │ ├── VeroLine50slash150dash4slash2.mo │ │ │ │ │ ├── VeroLine80slash115dash2comma2slash2.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── DpControlledMovers │ │ │ ├── DpControlled_dp.mo │ │ │ ├── Examples │ │ │ │ ├── DpConst.mo │ │ │ │ ├── DpVar.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Types │ │ │ │ ├── CtrlType.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── ClosedLoop_y.mo │ │ │ ├── Data │ │ │ │ ├── EnglanderNorford1992.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── MoverContinuous.mo │ │ │ ├── MoverParameter.mo │ │ │ ├── MoverStages.mo │ │ │ ├── PumpsParallel.mo │ │ │ ├── PumpsSeries.mo │ │ │ ├── SpeedControlled_y_pumpCurves.mo │ │ │ ├── StaticReset.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── FlowControlled_dp.mo │ │ ├── FlowControlled_m_flow.mo │ │ ├── Preconfigured │ │ │ ├── FlowControlled_dp.mo │ │ │ ├── FlowControlled_m_flow.mo │ │ │ ├── SpeedControlled_y.mo │ │ │ ├── UsersGuide.mo │ │ │ ├── Validation │ │ │ │ ├── ControlledFlowMachinePreconfigured.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── PumpsPolynomialBased │ │ │ ├── BaseClasses │ │ │ │ ├── PumpBus.mo │ │ │ │ ├── VariableLimiter.mo │ │ │ │ ├── efficiencyCharacteristic │ │ │ │ │ ├── Wilo_Formula_efficiency.mo │ │ │ │ │ ├── baseEfficiency.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ ├── package.order │ │ │ │ ├── polynomial2D.mo │ │ │ │ ├── polynomialABC.mo │ │ │ │ ├── polynomialABCinverse.mo │ │ │ │ └── powerInt.mo │ │ │ ├── Controls │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── PumpController.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── CtrlDpVarH.mo │ │ │ │ ├── CtrlDpVarN.mo │ │ │ │ ├── CtrlPassThroughN.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── PumpHeadControlled.mo │ │ │ │ ├── PumpSpeedControlled.mo │ │ │ │ ├── PumpSpeedControlledDpV.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── PumpHeadControlled.mo │ │ │ ├── PumpSpeedControlled.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── SpeedControlled_y.mo │ │ ├── UsersGuide.mo │ │ ├── Validation │ │ │ ├── BaseClasses │ │ │ │ ├── ComparePower.mo │ │ │ │ ├── ControlledFlowMachine.mo │ │ │ │ ├── FlowMachine_ZeroFlow.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ComparePowerHydraulic.mo │ │ │ ├── ComparePowerInput.mo │ │ │ ├── ComparePowerTotal.mo │ │ │ ├── ControlledFlowMachine.mo │ │ │ ├── ControlledFlowMachineDynamic.mo │ │ │ ├── FlowControlled_dp.mo │ │ │ ├── FlowControlled_dpSystem.mo │ │ │ ├── FlowControlled_m_flow.mo │ │ │ ├── PressureCurve.mo │ │ │ ├── PumpCurveConstruction.mo │ │ │ ├── PumpCurveDerivatives.mo │ │ │ ├── Pump_stratos.mo │ │ │ ├── Pump_y_stratos.mo │ │ │ ├── SpeedControlled_y.mo │ │ │ ├── SpeedControlled_y_linear.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Pools │ │ ├── BaseClasses │ │ │ ├── AirFlowMoistureToROM.mo │ │ │ ├── HeatTransferConduction.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ └── waveMachine.mo │ │ ├── Examples │ │ │ ├── IndoorSwimmingPool.mo │ │ │ ├── IndoorSwimmingPoolExternalHeatingSystem.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── IndoorSwimmingPool.mo │ │ ├── package.mo │ │ └── package.order │ ├── Sensors │ │ ├── BaseClasses │ │ │ ├── PartialAbsoluteSensor.mo │ │ │ ├── PartialDynamicFlowSensor.mo │ │ │ ├── PartialFlowSensor.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Conversions │ │ │ ├── Examples │ │ │ │ ├── To_VolumeFraction.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── To_VolumeFraction.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Density.mo │ │ ├── DensityTwoPort.mo │ │ ├── EnthalpyFlowRate.mo │ │ ├── EntropyFlowRate.mo │ │ ├── Examples │ │ │ ├── Density.mo │ │ │ ├── EnthalpyFlowRate.mo │ │ │ ├── EntropyFlowRate.mo │ │ │ ├── HeatMeter.mo │ │ │ ├── MassFraction.mo │ │ │ ├── MoistAirEnthalpyFlowRate.mo │ │ │ ├── PPM.mo │ │ │ ├── Pressure.mo │ │ │ ├── RelativeHumidity.mo │ │ │ ├── SpecificEnthalpy.mo │ │ │ ├── SpecificEntropy.mo │ │ │ ├── TemperatureDryBulb.mo │ │ │ ├── TemperatureWetBulb.mo │ │ │ ├── TraceSubstances.mo │ │ │ ├── Velocity.mo │ │ │ ├── VolumeFlowRate.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── HeatMeter.mo │ │ ├── LatentEnthalpyFlowRate.mo │ │ ├── MassFlowRate.mo │ │ ├── MassFraction.mo │ │ ├── MassFractionTwoPort.mo │ │ ├── ModularSensors.mo │ │ ├── PPM.mo │ │ ├── PPMTwoPort.mo │ │ ├── Pressure.mo │ │ ├── RelativeHumidity.mo │ │ ├── RelativeHumidityTwoPort.mo │ │ ├── RelativePressure.mo │ │ ├── RelativeTemperature.mo │ │ ├── SensibleEnthalpyFlowRate.mo │ │ ├── SpecificEnthalpy.mo │ │ ├── SpecificEnthalpyTwoPort.mo │ │ ├── SpecificEntropy.mo │ │ ├── SpecificEntropyTwoPort.mo │ │ ├── Temperature.mo │ │ ├── TemperatureTwoPort.mo │ │ ├── TemperatureWetBulbTwoPort.mo │ │ ├── TraceSubstances.mo │ │ ├── TraceSubstancesTwoPort.mo │ │ ├── UsersGuide.mo │ │ ├── Velocity.mo │ │ ├── VolumeFlowRate.mo │ │ ├── package.mo │ │ └── package.order │ ├── Solar │ │ ├── Thermal │ │ │ ├── BaseClasses │ │ │ │ ├── SolarThermalEfficiency.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── SolarThermalCollector.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── SolarThermal.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── SolarCollectors │ │ ├── ASHRAE93.mo │ │ ├── BaseClasses │ │ │ ├── ASHRAEHeatLoss.mo │ │ │ ├── ASHRAESolarGain.mo │ │ │ ├── EN12975HeatLoss.mo │ │ │ ├── EN12975SolarGain.mo │ │ │ ├── Examples │ │ │ │ ├── ASHRAEHeatLoss.mo │ │ │ │ ├── ASHRAESolarGain.mo │ │ │ │ ├── EN12975HeatLoss.mo │ │ │ │ ├── EN12975SolarGain.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── IAM.mo │ │ │ ├── PartialHeatLoss.mo │ │ │ ├── PartialParameters.mo │ │ │ ├── PartialSolarCollector.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Controls │ │ │ ├── BaseClasses │ │ │ │ ├── Examples │ │ │ │ │ ├── GCritCalc.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── GCritCalc.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── CollectorPump.mo │ │ │ ├── Examples │ │ │ │ ├── SolarPumpController.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Data │ │ │ ├── BaseClasses │ │ │ │ ├── Generic.mo │ │ │ │ ├── package.mo │ │ │ │ ├── package.order │ │ │ │ └── validateAngles.mo │ │ │ ├── GenericASHRAE93.mo │ │ │ ├── GenericEN12975.mo │ │ │ ├── GlazedFlatPlate │ │ │ │ ├── FP_GuangdongFSPTY95.mo │ │ │ │ ├── FP_SolahartKf.mo │ │ │ │ ├── FP_TRNSYSValidation.mo │ │ │ │ ├── FP_ThermaLiteHS20.mo │ │ │ │ ├── FP_VerificationModel.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Tubular │ │ │ │ ├── T_AMKCollectraAGOWR20.mo │ │ │ │ ├── T_JiaxingDiyiC0130.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── EN12975.mo │ │ ├── Examples │ │ │ ├── FlatPlate.mo │ │ │ ├── FlatPlateShaCoeTrue.mo │ │ │ ├── FlatPlateTotalArea.mo │ │ │ ├── FlatPlateWithTank.mo │ │ │ ├── Tubular.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── PhotovoltaicThermal │ │ │ ├── Data │ │ │ │ ├── PhotovoltaicThermalBaseDataDefinition.mo │ │ │ │ ├── ThermalGlazedWithLowEmissionCoating.mo │ │ │ │ ├── ThermalGlazedWithoutLowEmissionCoating.mo │ │ │ │ ├── Unglazed.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── EN12975Curves.mo │ │ │ ├── Examples │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── PartialExample.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── PhotovoltaicThermal.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Types │ │ │ ├── HeatCapacity.mo │ │ │ ├── NumberSelection.mo │ │ │ ├── SystemConfiguration.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── UsersGuide.mo │ │ ├── Validation │ │ │ ├── EN12975NPanels.mo │ │ │ ├── EN12975_Array.mo │ │ │ ├── EN12975_Series.mo │ │ │ ├── ExtremeAmbientConditions.mo │ │ │ ├── FlatPlate.mo │ │ │ ├── FlatPlateNPanels.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Sources │ │ ├── BaseClasses │ │ │ ├── Outside.mo │ │ │ ├── PartialAirSource.mo │ │ │ ├── PartialPropertySource.mo │ │ │ ├── PartialSource.mo │ │ │ ├── PartialSource_Xi_C.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Boundary_pT.mo │ │ ├── Boundary_ph.mo │ │ ├── Examples │ │ │ ├── MassFlowSource_WeatherData.mo │ │ │ ├── Outside.mo │ │ │ ├── Outside_CpData.mo │ │ │ ├── Outside_CpData_Angles.mo │ │ │ ├── Outside_CpData_Specification.mo │ │ │ ├── Outside_CpLowRise.mo │ │ │ ├── PropertySource_T.mo │ │ │ ├── PropertySource_h.mo │ │ │ ├── TraceSubstancesFlowSource.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── MassFlowSource_T.mo │ │ ├── MassFlowSource_WeatherData.mo │ │ ├── MassFlowSource_h.mo │ │ ├── Outside.mo │ │ ├── Outside_CpData.mo │ │ ├── Outside_CpLowRise.mo │ │ ├── PropertySource_T.mo │ │ ├── PropertySource_h.mo │ │ ├── TraceSubstancesFlowSource.mo │ │ ├── Validation │ │ │ ├── BaseClasses │ │ │ │ ├── BoundarySystem.mo │ │ │ │ ├── BoundarySystemWithX_in.mo │ │ │ │ ├── BoundarySystemWithXi_in.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Boundary.mo │ │ │ ├── BoundaryWithX_in.mo │ │ │ ├── BoundaryWithXi_in.mo │ │ │ ├── Outside_CpData_Directions.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Storage │ │ ├── BaseClasses │ │ │ ├── Bouyancy.mo │ │ │ ├── Buoyancy.mo │ │ │ ├── Examples │ │ │ │ ├── IndirectTankHeatExchanger.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── HeatTransferBuoyancyWetter.mo │ │ │ ├── HeatTransferLambdaEff.mo │ │ │ ├── HeatTransferLambdaEffSmooth.mo │ │ │ ├── HeatTransferLambdaSimple.mo │ │ │ ├── HeatTransferOnlyConduction.mo │ │ │ ├── HeatingCoil.mo │ │ │ ├── IndirectTankHeatExchanger.mo │ │ │ ├── PartialHeatTransferLayers.mo │ │ │ ├── PartialStratified.mo │ │ │ ├── PartialTwoPortInterface.mo │ │ │ ├── StorageCover.mo │ │ │ ├── StorageMantle.mo │ │ │ ├── ThirdOrderStratifier.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── ExpansionVessel.mo │ │ │ ├── StorageBoiler.mo │ │ │ ├── StorageDetailedExample.mo │ │ │ ├── StorageSimpleExample.mo │ │ │ ├── StorageSolarCollector.mo │ │ │ ├── Stratified.mo │ │ │ ├── StratifiedEnhancedInternalHex.mo │ │ │ ├── StratifiedUnloadAtMinimumTemperature.mo │ │ │ ├── TwoPhaseSeparator.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ExpansionVessel.mo │ │ ├── StorageDetailed.mo │ │ ├── StorageSimple.mo │ │ ├── Stratified.mo │ │ ├── StratifiedEnhanced.mo │ │ ├── StratifiedEnhancedInternalHex.mo │ │ ├── TwoPhaseSeparator.mo │ │ ├── UsersGuide.mo │ │ ├── Validation │ │ │ ├── HeatExchangerDynamics.mo │ │ │ ├── HeatExchangerLocation.mo │ │ │ ├── StratifiedLoadingUnloading.mo │ │ │ ├── StratifiedNonUniformInitial.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Types.mo │ ├── package.mo │ └── package.order ├── Media │ ├── Air.mo │ ├── AirIncompressible.mo │ ├── Antifreeze │ │ ├── BaseClasses │ │ │ ├── PropertyCoefficients.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── EthyleneGlycolWater.mo │ │ ├── PropyleneGlycolWater.mo │ │ ├── Validation │ │ │ ├── BaseClasses │ │ │ │ ├── EthyleneGlycolWater.mo │ │ │ │ ├── FluidProperties.mo │ │ │ │ ├── PropyleneGlycolWater.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── EthyleneGlycolWater.mo │ │ │ ├── PropyleneGlycolWater.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Examples │ │ ├── AirDerivativeCheck.mo │ │ ├── AirProperties.mo │ │ ├── AirTemperatureEnthalpyInversion.mo │ │ ├── BaseClasses │ │ │ ├── FluidProperties.mo │ │ │ ├── PartialProperties.mo │ │ │ ├── TestTemperatureEnthalpyInversion.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── PropyleneGlycolWaterDerivativeCheck.mo │ │ ├── PropyleneGlycolWaterProperties.mo │ │ ├── PropyleneGlycolWaterTemperatureEnthalpyInversion.mo │ │ ├── SteamDerivativeCheck.mo │ │ ├── SteamProperties.mo │ │ ├── SteamSaturationConsistencyCheck.mo │ │ ├── SteamTemperatureEnthalpyInversion.mo │ │ ├── WaterDerivativeCheck.mo │ │ ├── WaterProperties.mo │ │ ├── WaterTemperatureEnthalpyInversion.mo │ │ ├── package.mo │ │ └── package.order │ ├── Refrigerants │ │ ├── Examples │ │ │ ├── BranchingDynamicPipes.mo │ │ │ ├── RefrigerantProperties.mo │ │ │ ├── RefrigerantTestImplementation.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Interfaces │ │ │ ├── Choices.mo │ │ │ ├── PartialHybridTwoPhaseMediumFormula.mo │ │ │ ├── PartialHybridTwoPhaseMediumRecord.mo │ │ │ ├── TemplateHybridTwoPhaseMediumFormula.mo │ │ │ ├── TemplateHybridTwoPhaseMediumRecord.mo │ │ │ ├── Types.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── R134a │ │ │ ├── R134a_IIR_P1_395_T233_370_Formula.mo │ │ │ ├── R134a_IIR_P1_395_T233_370_Record.mo │ │ │ ├── R134a_IIR_P1_395_T233_455_Formula.mo │ │ │ ├── R134a_IIR_P1_395_T233_455_Horner.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── R290 │ │ │ ├── R290_IIR_P05_30_T263_343_Formula.mo │ │ │ ├── R290_IIR_P05_30_T263_343_Horner.mo │ │ │ ├── R290_IIR_P05_30_T263_343_Record.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── R410A │ │ │ ├── dPressureVap_dSpecificVolume_Tv.mo │ │ │ ├── dPressureVap_dTemperature_Tv.mo │ │ │ ├── dSpecificVolumeVap_pT.mo │ │ │ ├── enthalpySatLiq_T.mo │ │ │ ├── enthalpySatVap_T.mo │ │ │ ├── isentropicExponentVap_Tv.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ ├── pressureSatVap_T.mo │ │ │ ├── pressureVap_Tv.mo │ │ │ ├── specificIsobaricHeatCapacityVap_Tv.mo │ │ │ ├── specificIsochoricHeatCapacityVap_Tv.mo │ │ │ └── specificVolumeVap_pT.mo │ │ ├── R410A_HEoS │ │ │ ├── R410a_IIR_P1_48_T233_340_Formula │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── R410a_IIR_P1_48_T233_340_Record │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── R410a_IIR_P1_48_T233_473_Formula │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── R410a_IIR_P1_48_T233_473_Horner │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── UsersGuide │ │ │ ├── Approaches.mo │ │ │ ├── Composition.mo │ │ │ ├── Naming.mo │ │ │ ├── References.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Validation │ │ │ ├── R410A_dSpecificVolumeVap_pT.mo │ │ │ ├── RefrigerantIntegration.mo │ │ │ ├── RefrigerantInversions.mo │ │ │ ├── RefrigerantsDerivatives │ │ │ │ ├── RefrigerantsDerivativesR134a.mo │ │ │ │ ├── RefrigerantsDerivativesR290.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── RefrigerantsFittedFormulas │ │ │ │ ├── RefrigerantsFittedFormulasR134a.mo │ │ │ │ ├── RefrigerantsFittedFormulasR290.mo │ │ │ │ ├── RefrigerantsFittedFormulasR410a.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Specialized │ │ ├── Air │ │ │ ├── Examples │ │ │ │ ├── PerfectGasDerivativeCheck.mo │ │ │ │ ├── PerfectGasTemperatureEnthalpyInversion.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── PerfectGas.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Water │ │ │ ├── ConstantProperties_pT │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── TemperatureDependentDensityDerivativeCheck.mo │ │ │ │ ├── TemperatureDependentDensityProperties.mo │ │ │ │ ├── TemperatureDependentDensityTemperatureEnthalpyInversion.mo │ │ │ │ ├── WaterProperties_pT.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── TemperatureDependentDensity.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Steam.mo │ ├── Water.mo │ ├── package.mo │ └── package.order ├── Obsolete │ ├── BaseClasses │ │ ├── ObsoleteModel.mo │ │ ├── package.mo │ │ └── package.order │ ├── DataBase │ │ ├── SolarElectric │ │ │ ├── ACSPanelSystem.mo │ │ │ ├── AleoS24.mo │ │ │ ├── CanadianSolarCS6P250P.mo │ │ │ ├── PVBaseRecord.mo │ │ │ ├── SchuecoSME1.mo │ │ │ ├── SymphonyEnergySE6M181.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ └── package.order │ ├── UsersGuide.mo │ ├── Year2019 │ │ ├── Fluid │ │ │ ├── HeatPumps │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── CycleHP.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Examples │ │ │ │ │ ├── HeatPumpDetailed.mo │ │ │ │ │ ├── HeatPumpSimple.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HeatPumpDetailed.mo │ │ │ │ ├── HeatPumpSimple.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Sources │ │ │ │ ├── FixedBoundary.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Storage │ │ │ │ ├── StorageWall.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Utilities │ │ │ ├── HeatTransfer │ │ │ │ ├── HeatToStar.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Sources │ │ │ │ ├── InternalGains │ │ │ │ │ ├── Humans │ │ │ │ │ │ ├── HumanSensibleHeatAreaSpecific.mo │ │ │ │ │ │ ├── HumanSensibleHeat_VDI2078.mo │ │ │ │ │ │ ├── HumanTotalHeat_VDI2078.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Year2020 │ │ ├── FastHVAC │ │ │ ├── Storage │ │ │ │ ├── HeatStorage.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ThermalZones │ │ │ ├── HighOrder │ │ │ │ ├── Components │ │ │ │ │ ├── Walls │ │ │ │ │ │ ├── Wall_ASHRAE140.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Rooms │ │ │ │ │ ├── MFD │ │ │ │ │ │ ├── CellarAttic │ │ │ │ │ │ │ ├── Attic_Ro2Lf1.mo │ │ │ │ │ │ │ ├── Cellar.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Year2021 │ │ ├── DataBase.mo │ │ ├── Electrical │ │ │ ├── PVSystem.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Fluid │ │ │ ├── Actuators │ │ │ │ ├── Valves │ │ │ │ │ ├── MixingValve.mo │ │ │ │ │ ├── SimpleValve.mo │ │ │ │ │ ├── ThermostaticValve.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── PumpHydraulicResistance_closedLoop.mo │ │ │ │ ├── PumpRadiatorThermostaticValve.mo │ │ │ │ ├── PumpRadiatorValve.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Movers │ │ │ │ ├── Pump.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Year2022 │ │ ├── Examples │ │ │ ├── NcDataReader.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ThermalZones │ │ │ ├── HighOrder │ │ │ │ ├── Examples │ │ │ │ │ ├── Appartment_VoWo.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── House │ │ │ │ │ ├── MFD │ │ │ │ │ │ ├── BuildingAndEnergySystem.mo │ │ │ │ │ │ ├── BuildingEnvelope.mo │ │ │ │ │ │ ├── EnergySystem.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Rooms │ │ │ │ │ ├── MFD.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Utilities │ │ │ ├── NcDataReader.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Year2024 │ │ ├── Airflow │ │ │ ├── Multizone │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── Interpolate.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── interpolate.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Controls │ │ │ ├── HeatPump │ │ │ │ ├── SafetyControls │ │ │ │ │ ├── AntiFreeze.mo │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── BoundaryMap.mo │ │ │ │ │ │ ├── BoundaryMapIcon.mo │ │ │ │ │ │ ├── PartialSafetyControl.mo │ │ │ │ │ │ ├── RunPerHouBoundary.mo │ │ │ │ │ │ ├── TimeControl.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── DefrostControl.mo │ │ │ │ │ ├── OnOffControl.mo │ │ │ │ │ ├── OperationalEnvelope.mo │ │ │ │ │ ├── SafetyControl.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Interfaces │ │ │ │ ├── VapourCompressionMachineControlBus.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── DataBase │ │ │ ├── Chiller │ │ │ │ ├── ChillerBaseDataDefinition.mo │ │ │ │ ├── EN14511 │ │ │ │ │ ├── Vitocal200AWO201.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── PerformanceData │ │ │ │ │ ├── BaseClasses.mo │ │ │ │ │ ├── LookUpTable2D.mo │ │ │ │ │ ├── LookUpTableND.mo │ │ │ │ │ ├── PolynomalApproach.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── HeatPump │ │ │ │ ├── EN14511 │ │ │ │ │ ├── AlphaInnotec_LW80MA.mo │ │ │ │ │ ├── Dimplex_LA11AS.mo │ │ │ │ │ ├── Ochsner_GMLW_19.mo │ │ │ │ │ ├── Ochsner_GMLW_19plus.mo │ │ │ │ │ ├── Ochsner_GMSW_15plus.mo │ │ │ │ │ ├── StiebelEltron_WPL18.mo │ │ │ │ │ ├── Vaillant_VWL_101.mo │ │ │ │ │ ├── Vitocal200AWO201.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── EN255 │ │ │ │ │ ├── AlphaInnotec_SW170I.mo │ │ │ │ │ ├── NibeFighter1140_15.mo │ │ │ │ │ ├── Vitocal350AWI114.mo │ │ │ │ │ ├── Vitocal350BWH110.mo │ │ │ │ │ ├── Vitocal350BWH113.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Functions │ │ │ │ │ ├── Characteristics │ │ │ │ │ │ ├── CarnotFunction.mo │ │ │ │ │ │ ├── ConstantCoP.mo │ │ │ │ │ │ ├── ConstantQualityGrade.mo │ │ │ │ │ │ ├── PartialBaseFct.mo │ │ │ │ │ │ ├── PolynomalApproach.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── DefrostCorrection │ │ │ │ │ │ ├── NoModel.mo │ │ │ │ │ │ ├── PartialBaseFct.mo │ │ │ │ │ │ ├── WetterAfjei1996.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── IcingFactor │ │ │ │ │ │ ├── BasicIcingApproach.mo │ │ │ │ │ │ ├── PartialBaseFct.mo │ │ │ │ │ │ ├── WetterAfjei1996.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HeatPumpBaseDataDefinition.mo │ │ │ │ ├── PerformanceData │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── PartialPerformanceData.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── IcingBlock.mo │ │ │ │ │ ├── LookUpTable2D.mo │ │ │ │ │ ├── LookUpTableND.mo │ │ │ │ │ ├── PolynomalApproach.mo │ │ │ │ │ ├── VCLibMap.mo │ │ │ │ │ ├── calcCOP.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Fluid │ │ │ ├── BaseClasses │ │ │ │ ├── PartialInnerCycle.mo │ │ │ │ ├── PartialReversibleVapourCompressionMachine.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Chillers │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── InnerCycle_Chiller.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Chiller.mo │ │ │ │ ├── Examples │ │ │ │ │ ├── Chiller.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── HeatExchangers │ │ │ │ ├── EvaporatorCondenserWithCapacity.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── HeatPumps │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── InnerCycle_HeatPump.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Examples │ │ │ │ │ ├── HeatPump.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HeatPump.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Movers │ │ │ │ ├── SpeedControlled_Nrpm.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Systems │ │ │ ├── HeatPumpSystems │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── HPSystemController.mo │ │ │ │ │ ├── HeatPumpSystemParameters.mo │ │ │ │ │ ├── PartialHeatPumpSystem.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Examples │ │ │ │ │ ├── HeatPumpSystem.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HeatPumpSystem.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── YearIndependent │ │ ├── FastHVAC │ │ │ ├── BaseClasses │ │ │ │ ├── EnergyBalance.mo │ │ │ │ ├── EvaporatorCondenserWithCapacity.mo │ │ │ │ ├── WorkingFluid.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Components │ │ │ │ ├── Chiller │ │ │ │ │ ├── Chiller.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Controller │ │ │ │ │ ├── SwitchCounter.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HeatExchangers │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── ML_thermal_delta.mo │ │ │ │ │ │ ├── PseudoRadiator.mo │ │ │ │ │ │ ├── calcHeatingApplianceExponent.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── DHWHeatExchanger.mo │ │ │ │ │ ├── MultiRadiator.mo │ │ │ │ │ ├── RadiatorMultiLayer.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HeatGenerators │ │ │ │ │ ├── Boiler │ │ │ │ │ │ ├── Boiler.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── CHP │ │ │ │ │ │ ├── CHP_PT1.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── HeatPump │ │ │ │ │ │ ├── HeatPump.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Pipes │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── PipeBase.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── DynamicPipe.mo │ │ │ │ │ ├── DynamicPipeAggregated.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Pumps │ │ │ │ │ ├── FluidSource.mo │ │ │ │ │ ├── Pump.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Sensors │ │ │ │ │ ├── MassFlowSensor.mo │ │ │ │ │ ├── TemperatureSensor.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Sinks │ │ │ │ │ ├── Sink.mo │ │ │ │ │ ├── Vessel.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Storage │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── HeatTransferBuoyancyWetter.mo │ │ │ │ │ │ ├── HeatTransferDirectedHeatTransfer.mo │ │ │ │ │ │ ├── HeatTransferLambdaEff.mo │ │ │ │ │ │ ├── HeatTransferLambdaEffSmooth.mo │ │ │ │ │ │ ├── HeatTransferOnlyConduction.mo │ │ │ │ │ │ ├── HeatTransferQbuoy.mo │ │ │ │ │ │ ├── HeatTransferQbuoyTimer.mo │ │ │ │ │ │ ├── HeatingCoil.mo │ │ │ │ │ │ ├── PartialHeatTransferLayers.mo │ │ │ │ │ │ ├── QBuoyFunction.mo │ │ │ │ │ │ ├── QBuoyFunctions │ │ │ │ │ │ │ ├── cBotDown.mo │ │ │ │ │ │ │ ├── cBotUp.mo │ │ │ │ │ │ │ ├── cQup.mo │ │ │ │ │ │ │ ├── cTopDown.mo │ │ │ │ │ │ │ ├── cTopUp.mo │ │ │ │ │ │ │ ├── dToverEff.mo │ │ │ │ │ │ │ ├── dhDown.mo │ │ │ │ │ │ │ ├── isBuoy.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ ├── package.order │ │ │ │ │ │ │ ├── qBotmix.mo │ │ │ │ │ │ │ ├── qFreebuoy.mo │ │ │ │ │ │ │ ├── qTopmix.mo │ │ │ │ │ │ │ ├── qbot.mo │ │ │ │ │ │ │ ├── qbuoy0.mo │ │ │ │ │ │ │ ├── qbuoySingle.mo │ │ │ │ │ │ │ ├── qbuoyTotal.mo │ │ │ │ │ │ │ ├── qtop.mo │ │ │ │ │ │ │ └── xDown.mo │ │ │ │ │ │ ├── buoyancyDitribution │ │ │ │ │ │ │ ├── buoyancyDist.mo │ │ │ │ │ │ │ ├── buoyancyDistCub.mo │ │ │ │ │ │ │ ├── buoyancyDistInv.mo │ │ │ │ │ │ │ ├── buoyancyDistInv2.mo │ │ │ │ │ │ │ ├── buoyancyDistLin.mo │ │ │ │ │ │ │ ├── buoyancyDistQuad.mo │ │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ │ └── package.order │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── HeatStorageVariablePorts.mo │ │ │ │ │ ├── StorageSimpleWall.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Valves │ │ │ │ │ ├── BaseClases │ │ │ │ │ │ ├── HysteresisValve.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── Manifold.mo │ │ │ │ │ ├── Splitter.mo │ │ │ │ │ ├── ThermostaticValve.mo │ │ │ │ │ ├── ThreeWayValve.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Data │ │ │ │ ├── Boiler │ │ │ │ │ ├── DayNightMode │ │ │ │ │ │ ├── HeatingCurvesDayNightBaseDataDefinition.mo │ │ │ │ │ │ ├── HeatingCurvesVitotronicDay23Night10.mo │ │ │ │ │ │ ├── HeatingCurvesVitotronicDay25Night10.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── General │ │ │ │ │ │ ├── BoilerTwoPointBaseDataDefinition.mo │ │ │ │ │ │ ├── Boiler_Virtual_1kW.mo │ │ │ │ │ │ ├── Boiler_Vitocrossal200_311kW.mo │ │ │ │ │ │ ├── Boiler_Vitodens300W_13kW.mo │ │ │ │ │ │ ├── Boiler_Vitogas200F_11kW.mo │ │ │ │ │ │ ├── Boiler_Vitogas200F_15kW.mo │ │ │ │ │ │ ├── Boiler_Vitogas200F_18kW.mo │ │ │ │ │ │ ├── Boiler_Vitogas200F_22kW.mo │ │ │ │ │ │ ├── Boiler_Vitogas200F_29kW.mo │ │ │ │ │ │ ├── Boiler_Vitogas200F_35kW.mo │ │ │ │ │ │ ├── Boiler_Vitogas200F_42kW.mo │ │ │ │ │ │ ├── Boiler_Vitogas200F_48kW.mo │ │ │ │ │ │ ├── Boiler_Vitogas200F_60kW.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── WorkLoad │ │ │ │ │ │ ├── BuderusGB202_40_30.mo │ │ │ │ │ │ ├── BuderusGB202_75_60.mo │ │ │ │ │ │ ├── WorkLoadBaseDataDefinition.mo │ │ │ │ │ │ ├── ideal.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── CHP │ │ │ │ │ ├── AisinSeiki.mo │ │ │ │ │ ├── BaseDataDefinition.mo │ │ │ │ │ ├── Dachs.mo │ │ │ │ │ ├── Ecopower.mo │ │ │ │ │ ├── Ecopower_1_0.mo │ │ │ │ │ ├── Ecopower_3_0.mo │ │ │ │ │ ├── Kirsch.mo │ │ │ │ │ ├── Xrgi.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── Chiller │ │ │ │ │ ├── Chiller.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HeatExchangers │ │ │ │ │ ├── DHWHeatExchanger │ │ │ │ │ │ ├── DHWHeatExchanger.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── MultiRadiator │ │ │ │ │ │ ├── ValidationMultiRadiator.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── RadiatorMultiLayer │ │ │ │ │ │ ├── ValidationRadiator.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HeatGenerators │ │ │ │ │ ├── Boiler │ │ │ │ │ │ ├── Boiler.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── CHP │ │ │ │ │ │ ├── CHP.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── HeatPump │ │ │ │ │ │ ├── HeatPump.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Pipes │ │ │ │ │ ├── Pipes.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Pumps │ │ │ │ │ ├── FluidSource.mo │ │ │ │ │ ├── Pump.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Sensors │ │ │ │ │ ├── SensorVerification.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Sinks │ │ │ │ │ ├── SinkSourceVesselTest.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Storage │ │ │ │ │ ├── BufferStorageVariablePorts.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Valves │ │ │ │ │ ├── ThermostaticValve.mo │ │ │ │ │ ├── ThermostaticValveRadiator.mo │ │ │ │ │ ├── ThreeWayValve.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Interfaces │ │ │ │ ├── EnthalpyPort.mo │ │ │ │ ├── EnthalpyPort_a.mo │ │ │ │ ├── EnthalpyPort_b.mo │ │ │ │ ├── TwoPortHeatMassExchanger.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Media │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── MediumSimple.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── DC20.mo │ │ │ │ ├── WaterSimple.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Utilities │ │ │ ├── HeatTransfer.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── Resources │ ├── C-Sources │ │ ├── WeeklySchedule.c │ │ ├── WeeklySchedule.h │ │ ├── WeeklyScheduleFree.c │ │ ├── WeeklyScheduleGetValue.c │ │ ├── cryptographicsHash.c │ │ ├── cryptographicsHash.h │ │ ├── fileWriterFree.c │ │ ├── fileWriterInit.c │ │ ├── fileWriterStructure.c │ │ ├── fileWriterStructure.h │ │ ├── getTimeSpan.c │ │ ├── getTimeSpan.h │ │ ├── jsonWriterFree.c │ │ ├── jsonWriterFree.h │ │ ├── jsonWriterInit.c │ │ └── jsonWriterInit.h │ ├── Data │ │ ├── BoundaryConditions │ │ │ ├── Validation │ │ │ │ └── BESTEST │ │ │ │ │ ├── 421810.epw │ │ │ │ │ ├── 421810.mos │ │ │ │ │ ├── 700260.epw │ │ │ │ │ ├── 700260.mos │ │ │ │ │ ├── 722190.epw │ │ │ │ │ ├── 722190.mos │ │ │ │ │ ├── 855740.epw │ │ │ │ │ ├── 855740.mos │ │ │ │ │ ├── README.md │ │ │ │ │ ├── WD100.epw │ │ │ │ │ ├── WD100.mos │ │ │ │ │ ├── WD200.epw │ │ │ │ │ ├── WD200.mos │ │ │ │ │ ├── WD300.epw │ │ │ │ │ ├── WD300.mos │ │ │ │ │ ├── WD400.epw │ │ │ │ │ ├── WD400.mos │ │ │ │ │ ├── WD500.epw │ │ │ │ │ ├── WD500.mos │ │ │ │ │ ├── WD600.epw │ │ │ │ │ ├── WD600.mos │ │ │ │ │ ├── WeatherDriversResultsSubmittal1.json │ │ │ │ │ ├── WeatherDriversResultsSubmittal2.json │ │ │ │ │ ├── WeatherDriversTestSpec_1.pdf │ │ │ │ │ ├── WeatherDriversTestSpec_2.pdf │ │ │ │ │ └── generateResults.py │ │ │ └── WeatherData │ │ │ │ ├── BaseClasses │ │ │ │ └── Examples │ │ │ │ │ └── weatherWithLongHeader.mos │ │ │ │ └── Validation │ │ │ │ ├── DecemberToJanuary.mos │ │ │ │ └── TwoYears_DataOnceAMonth_TMY3.mos │ │ ├── Fluid │ │ │ ├── BaseClasses │ │ │ │ └── PerformanceData │ │ │ │ │ └── VCLibMap │ │ │ │ │ └── VCLibMap.sdf │ │ │ ├── BoilerCHP │ │ │ │ └── BaseClasses │ │ │ │ │ └── GenericBoiler │ │ │ │ │ └── Boiler_Generic_Characteristic_Chart.sdf │ │ │ ├── Boilers │ │ │ │ └── BoilerRecordsData.xlsx │ │ │ ├── FixedResistances │ │ │ │ └── Validation │ │ │ │ │ └── PlugFlowPipes │ │ │ │ │ ├── PipeDataAIT151218.mos │ │ │ │ │ ├── PipeDataULg150801.mos │ │ │ │ │ ├── PipeDataULg151202.mos │ │ │ │ │ ├── PipeDataULg151204_1.mos │ │ │ │ │ ├── PipeDataULg151204_2.mos │ │ │ │ │ ├── PipeDataULg151204_4.mos │ │ │ │ │ ├── PipeDataULg160104_2.mos │ │ │ │ │ └── PipeDataULg160118_1.mos │ │ │ ├── Geothermal │ │ │ │ └── Borefields │ │ │ │ │ └── HeatTransfer │ │ │ │ │ └── Validation │ │ │ │ │ ├── Analytic_20Years.txt │ │ │ │ │ ├── Beier_Smith_Spitler_2011_SandBox.txt │ │ │ │ │ └── Cimmino_Bernier_2015_SmallScale.txt │ │ │ ├── HeatPumps │ │ │ │ ├── ModularReversible │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ └── LargeScaleWaterToWaterDeclarations.xlsx │ │ │ │ │ └── Data │ │ │ │ │ │ ├── LookUpTable3D │ │ │ │ │ │ └── VZH088AG.sdf │ │ │ │ │ │ └── VCLibMap │ │ │ │ │ │ ├── Standard_Propane.sdf │ │ │ │ │ │ ├── Standard_R134a.sdf │ │ │ │ │ │ ├── Standard_R152a.sdf │ │ │ │ │ │ ├── Standard_R410A.sdf │ │ │ │ │ │ ├── VCLibMap.sdf │ │ │ │ │ │ ├── VaporInjectionPhaseSeparator_Propane.sdf │ │ │ │ │ │ ├── VaporInjectionPhaseSeparator_R134a.sdf │ │ │ │ │ │ ├── VaporInjectionPhaseSeparator_R152a.sdf │ │ │ │ │ │ ├── VaporInjectionPhaseSeparator_R410A.sdf │ │ │ │ │ │ └── create_vclib_map.py │ │ │ │ └── Validation │ │ │ │ │ └── MeasuredHeatPumpData.txt │ │ │ └── SolarCollectors │ │ │ │ └── Validation │ │ │ │ └── FlatPlate │ │ │ │ └── TRNSYSAnnualData.txt │ │ ├── ThermalZones │ │ │ └── HighOrder │ │ │ │ └── Validation │ │ │ │ └── EmpiricalValidation │ │ │ │ ├── TRY2010_03_Warehouse.txt │ │ │ │ ├── TRY2013_03_TwinHouses.txt │ │ │ │ ├── TwinHouseN2.csv │ │ │ │ ├── TwinHouseN2.txt │ │ │ │ ├── TwinHouseO5.csv │ │ │ │ └── Warehouse.txt │ │ ├── Utilities │ │ │ └── IO │ │ │ │ └── Files │ │ │ │ └── Examples │ │ │ │ └── CSVReader │ │ │ │ └── Data.txt │ │ ├── schedule.txt │ │ └── scheduleWindows.txt │ ├── Documentation │ │ └── userGuide │ │ │ └── source │ │ │ └── _static │ │ │ └── lbl-logo.png │ ├── Fluid │ │ ├── MembraneBasedEnthalpyExchanger │ │ │ ├── DynamicValidationEta.txt │ │ │ ├── DynamicValidationOda.txt │ │ │ ├── DynamicValidationResult.txt │ │ │ ├── StaticValidationEta.txt │ │ │ ├── StaticValidationOda.txt │ │ │ └── StaticValidationResult.txt │ │ └── Movers │ │ │ └── Compressors │ │ │ └── efficiencyValidation.txt │ ├── HVAC_OFD_ExampleData │ │ ├── TemperaturesConv.mat │ │ └── TemperaturesRad.mat │ ├── Images │ │ ├── Airflow │ │ │ ├── AirCurtain │ │ │ │ └── AirCurtain.png │ │ │ ├── AirHandlingUnit │ │ │ │ ├── AHUaccToDINV18599-3.jpg │ │ │ │ ├── Cooling.jpg │ │ │ │ ├── Dehumidifier.jpg │ │ │ │ ├── ExampleAHU.png │ │ │ │ ├── Heating.jpg │ │ │ │ ├── HumidifierCooling.jpg │ │ │ │ └── HumidifierHeating.jpg │ │ │ ├── FacadeVentilationUnit │ │ │ │ ├── FacadeVentilationUnitExample.png │ │ │ │ └── FacadeVentilationUnitScheme.PNG │ │ │ ├── Multizone │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── windPressureLowRise.odp │ │ │ │ │ └── windPressureLowRise.png │ │ │ │ ├── Examples │ │ │ │ │ └── 3roomValidation.png │ │ │ │ └── Wetter-airflow-2006.pdf │ │ │ └── WindowVentilation │ │ │ │ ├── WindowOpeningAreaGeo.png │ │ │ │ ├── WindowOpeningAreaGeo.svg │ │ │ │ ├── WindowOpeningAreaProj.png │ │ │ │ ├── WindowOpeningAreaProj.svg │ │ │ │ ├── WindowOpeningAreaQu.png │ │ │ │ ├── WindowOpeningAreaQu.svg │ │ │ │ └── WindowOpeningTypes.png │ │ ├── BoundaryConditions │ │ │ ├── SkyTemperature │ │ │ │ └── BaseClasses │ │ │ │ │ └── Cloud.jpg │ │ │ ├── SolarGeometry │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── AltitudeAngle.png │ │ │ │ │ ├── Declination.png │ │ │ │ │ ├── IncidenceAngle.png │ │ │ │ │ ├── SolarAzimuth.png │ │ │ │ │ ├── SolarHourAngle.png │ │ │ │ │ ├── WallSolarAzimuth.png │ │ │ │ │ └── ZenithAngle.png │ │ │ │ ├── IncidenceAngle.png │ │ │ │ └── ZenithAngle.png │ │ │ ├── WeatherData │ │ │ │ ├── BaseClasses │ │ │ │ │ └── relativeHumidity.png │ │ │ │ └── RadiationTimeShift.png │ │ │ ├── ear_ray.odp │ │ │ ├── ear_ray.png │ │ │ ├── zen_pla.odp │ │ │ ├── zen_pla.png │ │ │ ├── zen_sun.odp │ │ │ └── zen_sun.png │ │ ├── Building │ │ │ ├── Components │ │ │ │ └── DryAir │ │ │ │ │ └── VarAirExchange │ │ │ │ │ └── equation-fHlz87wz.png │ │ │ ├── HighOrder │ │ │ │ ├── 1OW_2IWl_2IWs_1Gr_Pa.png │ │ │ │ ├── 2OW_1IWl_1IWs_1Gr_Pa.png │ │ │ │ ├── 2OW_1IWl_1IWs_1Gr_Pa_icon.png │ │ │ │ ├── 2OW_2IWl_1IWs_1Gr_Pa.png │ │ │ │ ├── Attic_2Ro_5Rooms.png │ │ │ │ ├── GroundFloor_Hydraulics.png │ │ │ │ ├── Groundfloor_5Rooms.png │ │ │ │ ├── Groundfloor_icon.png │ │ │ │ ├── Grundriss.PNG │ │ │ │ ├── Hydraulik.png │ │ │ │ ├── MFD_Attic.png │ │ │ │ ├── MFD_FloorPlan_En.PNG │ │ │ │ ├── OFD_FloorPlan_En.PNG │ │ │ │ ├── OFD_GF_English.PNG │ │ │ │ ├── OFD_Radiators_English.PNG │ │ │ │ ├── OFD_SideView_En.PNG │ │ │ │ ├── OW1_2IWl_2IWs_1Pa_1At1Ro.png │ │ │ │ ├── OW2_1IWl_1IWs_1Pa_1At1Ro.png │ │ │ │ ├── OW2_2IWl_1IWs_1Pa_1At1Ro.png │ │ │ │ ├── TwinHouse_GroundFloor.png │ │ │ │ ├── UpperFloor_Hydraulics.png │ │ │ │ ├── Upperfloor_5Rooms.png │ │ │ │ ├── Upperfloor_icon.png │ │ │ │ ├── VoWo_Bath.png │ │ │ │ ├── VoWo_Bedroom.png │ │ │ │ ├── VoWo_Children.png │ │ │ │ ├── VoWo_Corridor.png │ │ │ │ ├── VoWo_Hydraulik.png │ │ │ │ ├── VoWo_Hydraulik_H1.png │ │ │ │ ├── VoWo_Hydraulik_H2.png │ │ │ │ ├── VoWo_Hydraulik_Icon.png │ │ │ │ ├── VoWo_Icon.png │ │ │ │ ├── VoWo_Kitchen.png │ │ │ │ └── VoWo_Livingroom.png │ │ │ └── LowOrder │ │ │ │ └── BaseClasses │ │ │ │ └── ThermSplitter │ │ │ │ ├── equation-BtreVeqi.png │ │ │ │ └── equation-ShHZPTo9.png │ │ ├── Controls │ │ │ ├── Continuous │ │ │ │ └── Examples │ │ │ │ │ ├── NumberOfRequests.png │ │ │ │ │ ├── OffTimer1.png │ │ │ │ │ ├── OffTimer2.png │ │ │ │ │ ├── SignalRankerU.png │ │ │ │ │ └── SignalRankerY.png │ │ │ ├── HVACAgentBasedControl │ │ │ │ ├── Award.jpg │ │ │ │ ├── Boiler.png │ │ │ │ ├── Broker.png │ │ │ │ ├── ExampleCap.PNG │ │ │ │ ├── ExamplePV.PNG │ │ │ │ ├── ExampleSystem.PNG │ │ │ │ ├── ExampleSystemMarked.png │ │ │ │ ├── ExampleSystemMarkedPoke.PNG │ │ │ │ ├── ExampleT.PNG │ │ │ │ ├── Example_usePoke.PNG │ │ │ │ ├── HEX.png │ │ │ │ ├── HEXCostfkt2.PNG │ │ │ │ ├── HPcoolingCostfkt.PNG │ │ │ │ ├── HPheatingCostfkt.PNG │ │ │ │ ├── HeatPump.png │ │ │ │ ├── HeatingRod.png │ │ │ │ ├── IntermediateAgent.png │ │ │ │ ├── MAS System.png │ │ │ │ ├── ProducerAgent.png │ │ │ │ ├── RoomAgent.png │ │ │ │ ├── ScreenshotBuyerAgent_marked.png │ │ │ │ ├── ScreenshotSellerAgent_marked.png │ │ │ │ ├── boilerCostfkt.PNG │ │ │ │ └── heatingRodCostfkt.PNG │ │ │ ├── OBC │ │ │ │ ├── CDL │ │ │ │ │ ├── Integers │ │ │ │ │ │ └── Sources │ │ │ │ │ │ │ ├── Constant.png │ │ │ │ │ │ │ ├── Pulse.png │ │ │ │ │ │ │ └── Pulse.svg │ │ │ │ │ ├── Logical │ │ │ │ │ │ ├── Constant.png │ │ │ │ │ │ ├── Latch.png │ │ │ │ │ │ ├── Latch.svg │ │ │ │ │ │ ├── Sources │ │ │ │ │ │ │ ├── Pulse.png │ │ │ │ │ │ │ ├── Pulse.svg │ │ │ │ │ │ │ ├── SampleTrigger.png │ │ │ │ │ │ │ └── SampleTrigger.svg │ │ │ │ │ │ ├── Toggle.png │ │ │ │ │ │ ├── Toggle.svg │ │ │ │ │ │ ├── TrueDelay1.png │ │ │ │ │ │ ├── TrueDelay2.png │ │ │ │ │ │ ├── TrueFalseHold.png │ │ │ │ │ │ ├── VariablePulse.png │ │ │ │ │ │ └── VariablePulse.svg │ │ │ │ │ ├── Psychrometrics │ │ │ │ │ │ └── Media │ │ │ │ │ │ │ └── Water │ │ │ │ │ │ │ └── plotCp.png │ │ │ │ │ └── Reals │ │ │ │ │ │ ├── Acos.png │ │ │ │ │ │ ├── Asin.png │ │ │ │ │ │ ├── Atan.png │ │ │ │ │ │ ├── Atan2.png │ │ │ │ │ │ ├── Constant.png │ │ │ │ │ │ ├── Cos.png │ │ │ │ │ │ ├── Exp.png │ │ │ │ │ │ ├── Hysteresis.png │ │ │ │ │ │ ├── Hysteresis.svg │ │ │ │ │ │ ├── HysteresisWithHold.svg │ │ │ │ │ │ ├── Log.png │ │ │ │ │ │ ├── Log10.png │ │ │ │ │ │ ├── Sin.png │ │ │ │ │ │ ├── Sources │ │ │ │ │ │ ├── Pulse.png │ │ │ │ │ │ ├── Pulse.svg │ │ │ │ │ │ ├── Ramp.png │ │ │ │ │ │ ├── Ramp.svg │ │ │ │ │ │ └── Sin.png │ │ │ │ │ │ ├── Tan.png │ │ │ │ │ │ ├── int.pdf │ │ │ │ │ │ └── int.png │ │ │ │ ├── OBC_logo-only_150dpi.png │ │ │ │ ├── OBC_stacked_150dpi_small.png │ │ │ │ └── Utilities │ │ │ │ │ └── SetPoints │ │ │ │ │ └── SupplyReturnTemperatureReset.png │ │ │ └── SetPoints │ │ │ │ ├── Examples │ │ │ │ ├── OccupancySchedule.png │ │ │ │ └── SupplyReturnTemperatureReset.png │ │ │ │ └── Table.png │ │ ├── DataBase │ │ │ ├── Media │ │ │ │ └── Refrigerants │ │ │ │ │ ├── BubbleDensity.png │ │ │ │ │ ├── BubbleEnthalpy.png │ │ │ │ │ ├── BubbleEntropy.png │ │ │ │ │ ├── Density_pT_Input1.png │ │ │ │ │ ├── Density_pT_Input2.png │ │ │ │ │ ├── DewDensity.png │ │ │ │ │ ├── DewEnthalpy.png │ │ │ │ │ ├── DewEntropy.png │ │ │ │ │ ├── Helmholtz_EoS.png │ │ │ │ │ ├── Helmholtz_IdealGasPart.png │ │ │ │ │ ├── Helmholtz_ResidualPart.png │ │ │ │ │ ├── SaturationPressure.png │ │ │ │ │ ├── SaturationTemperature.png │ │ │ │ │ ├── StateProperties_Approach.png │ │ │ │ │ ├── Temperature_ph_Input1.png │ │ │ │ │ ├── Temperature_ph_Input2.png │ │ │ │ │ ├── Temperature_ps_Input1.png │ │ │ │ │ └── Temperature_ps_Input2.png │ │ │ ├── Pumps │ │ │ │ └── PumpsPolynomialBased │ │ │ │ │ ├── Pump_DN100.png │ │ │ │ │ ├── Pump_DN100_H1_17.png │ │ │ │ │ ├── Pump_DN200.png │ │ │ │ │ ├── Pump_DN25_H05_12.png │ │ │ │ │ ├── Pump_DN25_H1_4_V3.png │ │ │ │ │ ├── Pump_DN25_H1_6_V8.png │ │ │ │ │ ├── Pump_DN25_H1_8_V9.png │ │ │ │ │ ├── Pump_DN30_H1_12.png │ │ │ │ │ ├── Pump_DN30_H1_12_V13.png │ │ │ │ │ ├── Pump_DN32.png │ │ │ │ │ ├── Pump_DN40.png │ │ │ │ │ ├── Pump_DN40_H1_12_V24.png │ │ │ │ │ ├── Pump_DN40_H1_16_V29.png │ │ │ │ │ ├── Pump_DN40_H1_45.png │ │ │ │ │ ├── Pump_DN40_H1_8_V17.png │ │ │ │ │ ├── Pump_DN50.png │ │ │ │ │ ├── Pump_DN50_H05_16.png │ │ │ │ │ ├── Pump_DN50_H1_10.png │ │ │ │ │ ├── Pump_DN50_H1_38.png │ │ │ │ │ ├── Pump_DN50_H1_9_V29.png │ │ │ │ │ ├── Pump_DN65.png │ │ │ │ │ ├── Pump_DN65_H1_12_V48.png │ │ │ │ │ ├── Pump_DN65_H1_16_V26.png │ │ │ │ │ ├── Pump_DN65_H1_17.png │ │ │ │ │ ├── WetRunner_HeatingCooling_25_1_4.png │ │ │ │ │ ├── WetRunner_Solar_40_10.png │ │ │ │ │ ├── WetRunner_Solar_50_10.png │ │ │ │ │ └── WetRunner_Solar_65_15.png │ │ │ └── Walls │ │ │ │ └── Collections │ │ │ │ └── Records_Floor_Ceiling.svg │ │ ├── EBC_Logo.png │ │ ├── Electrical │ │ │ ├── AC │ │ │ │ ├── OnePhase │ │ │ │ │ ├── ComplexPower.png │ │ │ │ │ ├── Lines │ │ │ │ │ │ ├── twoPortL.png │ │ │ │ │ │ ├── twoPortL.svg │ │ │ │ │ │ ├── twoPortR.png │ │ │ │ │ │ ├── twoPortR.svg │ │ │ │ │ │ ├── twoPortRL.png │ │ │ │ │ │ ├── twoPortRL.svg │ │ │ │ │ │ ├── twoPortRLC.png │ │ │ │ │ │ └── twoPortRLC.svg │ │ │ │ │ └── Loads │ │ │ │ │ │ ├── LinearLoad_labels.png │ │ │ │ │ │ ├── NonLinearLoadMap.svg │ │ │ │ │ │ ├── NonlinearLoad.png │ │ │ │ │ │ ├── NonlinearLoadMap.png │ │ │ │ │ │ └── NonlinearLoad_labels.png │ │ │ │ └── ThreePhasesUnbalanced │ │ │ │ │ ├── Conversion │ │ │ │ │ └── BaseClasses │ │ │ │ │ │ ├── DD.png │ │ │ │ │ │ ├── DY_a.png │ │ │ │ │ │ ├── DY_b.png │ │ │ │ │ │ ├── Transformers.svg │ │ │ │ │ │ ├── YD_a.png │ │ │ │ │ │ ├── YD_b.png │ │ │ │ │ │ └── YY.png │ │ │ │ │ ├── Interfaces │ │ │ │ │ ├── YtoD.png │ │ │ │ │ └── YtoD.svg │ │ │ │ │ ├── Lines │ │ │ │ │ ├── twoPortL.png │ │ │ │ │ ├── twoPortL.svg │ │ │ │ │ ├── twoPortL_N.png │ │ │ │ │ ├── twoPortL_N.svg │ │ │ │ │ ├── twoPortR.png │ │ │ │ │ ├── twoPortR.svg │ │ │ │ │ ├── twoPortRL.png │ │ │ │ │ ├── twoPortRL.svg │ │ │ │ │ ├── twoPortRLC.png │ │ │ │ │ ├── twoPortRLC.svg │ │ │ │ │ ├── twoPortRLCMatrix.png │ │ │ │ │ ├── twoPortRLCMatrix.svg │ │ │ │ │ ├── twoPortRLCMatrix_N.png │ │ │ │ │ ├── twoPortRLCMatrix_N.svg │ │ │ │ │ ├── twoPortRLC_N.png │ │ │ │ │ ├── twoPortRLC_N.svg │ │ │ │ │ ├── twoPortRLMatrix.png │ │ │ │ │ ├── twoPortRLMatrix.tex │ │ │ │ │ ├── twoPortRLMatrix_N.png │ │ │ │ │ ├── twoPortRLMatrix_N.tex │ │ │ │ │ ├── twoPortRL_N.png │ │ │ │ │ ├── twoPortRL_N.svg │ │ │ │ │ ├── twoPortR_N.png │ │ │ │ │ └── twoPortR_N.svg │ │ │ │ │ ├── Loads │ │ │ │ │ └── Examples │ │ │ │ │ │ └── unbalancedLoads.png │ │ │ │ │ ├── PhaseConvention.png │ │ │ │ │ ├── PhaseConvention.svg │ │ │ │ │ └── Validation │ │ │ │ │ └── IEEETests │ │ │ │ │ └── Test4nodesFeeder │ │ │ │ │ └── IEEE_4nodes_schema.png │ │ │ ├── DC │ │ │ │ ├── Lines │ │ │ │ │ ├── twoPortR.png │ │ │ │ │ ├── twoPortR.svg │ │ │ │ │ ├── twoPortRC.png │ │ │ │ │ └── twoPortRC.svg │ │ │ │ ├── Loads │ │ │ │ │ ├── Examples │ │ │ │ │ │ └── DCload_approx.png │ │ │ │ │ ├── simpleLoad.png │ │ │ │ │ └── simpleLoad.svg │ │ │ │ └── Sources │ │ │ │ │ └── WindTurbine_Table.png │ │ │ ├── Transmission │ │ │ │ └── Grids │ │ │ │ │ ├── Feeder10.png │ │ │ │ │ ├── Feeder20.png │ │ │ │ │ ├── Feeder30.png │ │ │ │ │ ├── Feeder40.png │ │ │ │ │ ├── Feeder50.png │ │ │ │ │ ├── IEEE_34.png │ │ │ │ │ ├── IEEE_34.svg │ │ │ │ │ ├── IEEE_34_PVs.png │ │ │ │ │ ├── IEEE_34_PVs.svg │ │ │ │ │ ├── feeder.svg │ │ │ │ │ ├── partialGrid.png │ │ │ │ │ ├── partialGrid.svg │ │ │ │ │ ├── testGrid2Nodes.png │ │ │ │ │ └── testGrid2Nodes.svg │ │ │ ├── UsersGuide │ │ │ │ ├── 2014-BauSim-BonviniWetterNouidui.pdf │ │ │ │ └── nonlinearEq.png │ │ │ └── Utilities │ │ │ │ └── Examples │ │ │ │ └── VoltCTRL.png │ │ ├── Examples │ │ │ └── Tutorial │ │ │ │ └── SimpleHouse │ │ │ │ ├── airModel.png │ │ │ │ ├── heatingControllerModel.png │ │ │ │ ├── result1.png │ │ │ │ ├── result2.png │ │ │ │ ├── result3.png │ │ │ │ ├── result4.png │ │ │ │ ├── result5.png │ │ │ │ ├── result6.png │ │ │ │ ├── result7.png │ │ │ │ ├── simpleHouse.png │ │ │ │ └── simulate.png │ │ ├── Fluid │ │ │ ├── ActiveWalls │ │ │ │ └── PressureDrop.bmp │ │ │ ├── Actuators │ │ │ │ ├── Valves │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── TwoWayButterfly.png │ │ │ │ │ │ └── TwoWayValveTable_kv.png │ │ │ │ ├── threeWayValvePressureDropSeries.png │ │ │ │ ├── valvePressureDropSeries.png │ │ │ │ ├── valveResponse.png │ │ │ │ ├── valveResponse.svg │ │ │ │ └── valveSchematic.png │ │ │ ├── BoilerCHP │ │ │ │ ├── CylinderWallTemperature.PNG │ │ │ │ └── Icon_ICE.png │ │ │ ├── CHPs │ │ │ │ └── OrganicRankine │ │ │ │ │ ├── ComputationPaths.pdf │ │ │ │ │ ├── ComputationPaths.png │ │ │ │ │ ├── ComputationPaths.svg │ │ │ │ │ ├── CycleArchitecture.pdf │ │ │ │ │ ├── CycleArchitecture.png │ │ │ │ │ ├── CycleArchitecture.svg │ │ │ │ │ ├── SupportCurves.pdf │ │ │ │ │ ├── SupportCurves.png │ │ │ │ │ └── SupportCurves.svg │ │ │ ├── DistrictHeatingCooling │ │ │ │ └── Network.png │ │ │ ├── FMI │ │ │ │ ├── ExportContainers │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── RoomConvectiveHVACConvective.pdf │ │ │ │ │ │ ├── RoomConvectiveHVACConvective.png │ │ │ │ │ │ └── RoomConvectiveHVACConvective.svg │ │ │ │ ├── FMI_icon.png │ │ │ │ ├── UsersGuide │ │ │ │ │ └── 2015-WetterFuchsNouidui.pdf │ │ │ │ └── modelica_icon.png │ │ │ ├── FixedResistances │ │ │ │ ├── Junction.png │ │ │ │ ├── Junction.svg │ │ │ │ ├── PressureDrop.png │ │ │ │ └── Validation │ │ │ │ │ └── PlugFlowPipes │ │ │ │ │ ├── AITTestBench.png │ │ │ │ │ └── ULgTestBench.png │ │ │ ├── Geothermal │ │ │ │ ├── Aquifer │ │ │ │ │ ├── Geometry.png │ │ │ │ │ ├── Geometry.svg │ │ │ │ │ ├── PressureCircuit.png │ │ │ │ │ ├── PressureCircuit.svg │ │ │ │ │ └── results.png │ │ │ │ └── Borefields │ │ │ │ │ ├── BorefieldGeometry_01.png │ │ │ │ │ ├── BorefieldGeometry_01.tex │ │ │ │ │ ├── BoreholeResistances_01.png │ │ │ │ │ ├── BoreholeResistances_01.tex │ │ │ │ │ ├── CylindricalHeatSource_01.png │ │ │ │ │ ├── CylindricalHeatSource_02.png │ │ │ │ │ ├── ErrorFunctionIntegral_01.png │ │ │ │ │ ├── FiniteLineSource_01.png │ │ │ │ │ ├── FiniteLineSource_02.png │ │ │ │ │ ├── FiniteLineSource_EquivalentBoreholes_01.png │ │ │ │ │ ├── FiniteLineSource_EquivalentBoreholes_02.png │ │ │ │ │ ├── FiniteLineSource_SteadyState_01.png │ │ │ │ │ ├── FiniteLineSource_SteadyState_02.png │ │ │ │ │ ├── GFunction_01.png │ │ │ │ │ ├── InfiniteLineSource_01.png │ │ │ │ │ ├── InfiniteLineSource_02.png │ │ │ │ │ ├── LoadAggregation_01.png │ │ │ │ │ ├── LoadAggregation_01.tex │ │ │ │ │ ├── LoadAggregation_02.png │ │ │ │ │ ├── LoadAggregation_03.png │ │ │ │ │ ├── LoadAggregation_04.png │ │ │ │ │ ├── LoadAggregation_05.png │ │ │ │ │ ├── LoadAggregation_06.png │ │ │ │ │ ├── LoadAggregation_07.png │ │ │ │ │ ├── LoadAggregation_08.png │ │ │ │ │ ├── LoadAggregation_09.png │ │ │ │ │ ├── LoadAggregation_10.png │ │ │ │ │ ├── LoadAggregation_11.png │ │ │ │ │ └── LoadAggregation_12.png │ │ │ ├── HeatExchanger │ │ │ │ ├── Radiator │ │ │ │ │ ├── DGL_HK.png │ │ │ │ │ ├── Delta_T_ari.png │ │ │ │ │ ├── Delta_T_exp.png │ │ │ │ │ ├── Delta_T_log.png │ │ │ │ │ ├── PressureDrop.bmp │ │ │ │ │ ├── Q_K.png │ │ │ │ │ ├── Q_K1.png │ │ │ │ │ ├── Q_R.png │ │ │ │ │ ├── Q_R1.png │ │ │ │ │ ├── Q_ab.png │ │ │ │ │ ├── Schichtenmodell.png │ │ │ │ │ ├── delta.png │ │ │ │ │ ├── deltaT.png │ │ │ │ │ ├── delta_P.png │ │ │ │ │ ├── equation-8xFaklFH.png │ │ │ │ │ ├── n_K1.png │ │ │ │ │ └── n_K2.png │ │ │ │ └── SolarThermal │ │ │ │ │ └── equation-vRK5Io7E.png │ │ │ ├── HeatExchangers │ │ │ │ └── ActiveBeams │ │ │ │ │ ├── schematicAB.png │ │ │ │ │ └── schematicAB.svg │ │ │ ├── HeatPumps │ │ │ │ ├── ModularReversible │ │ │ │ │ └── Controls │ │ │ │ │ │ └── SafetyControls │ │ │ │ │ │ ├── OperationalEnvelope_1.png │ │ │ │ │ │ ├── OperationalEnvelope_2.png │ │ │ │ │ │ └── OperationalEnvelope_3.png │ │ │ │ └── WaterToWater_Cycle.png │ │ │ ├── Movers │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── Characteristics │ │ │ │ │ │ └── MotorEfficiencyCurves.png │ │ │ │ │ ├── Euler │ │ │ │ │ │ ├── EulerCurve.png │ │ │ │ │ │ ├── EulerCurve.svg │ │ │ │ │ │ ├── eulerCorrelation.svg │ │ │ │ │ │ └── eulerCorrelation.txt │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── BIDW13.png │ │ │ │ │ │ ├── NegativePressureOrFlow.png │ │ │ │ │ │ └── NegativePressureOrFlow.svg │ │ │ │ ├── Data │ │ │ │ │ └── stratoscurve.png │ │ │ │ ├── DpControlledMovers │ │ │ │ │ ├── CurveTypes.jpg │ │ │ │ │ └── CurveTypes.xlsx │ │ │ │ ├── Examples │ │ │ │ │ ├── PumpValidationHead.png │ │ │ │ │ ├── PumpValidationPower.png │ │ │ │ │ └── Supply.png │ │ │ │ ├── Preconfigured │ │ │ │ │ ├── PumpCharacteristic.png │ │ │ │ │ └── PumpCharacteristic.svg │ │ │ │ ├── UsersGuide │ │ │ │ │ ├── 2013-IBPSA-Wetter.pdf │ │ │ │ │ ├── fanSpeedFiltered.png │ │ │ │ │ ├── fanSpeedFiltered.svg │ │ │ │ │ └── pumpCurve.png │ │ │ │ └── Validation │ │ │ │ │ ├── PowerExact.png │ │ │ │ │ ├── PowerExact.svg │ │ │ │ │ ├── PowerSimplified.png │ │ │ │ │ ├── PowerSimplified.svg │ │ │ │ │ ├── PumpValidationHead.png │ │ │ │ │ └── PumpValidationPower.png │ │ │ ├── Pools │ │ │ │ ├── PoolAndWaterCuircut.png │ │ │ │ └── icon_schwimmbecken.jpg │ │ │ ├── Sensors │ │ │ │ ├── onePortHex.png │ │ │ │ ├── onePortHex.tiff │ │ │ │ ├── twoPortHex.png │ │ │ │ ├── twoPortHex.tiff │ │ │ │ ├── warningIcon.png │ │ │ │ └── warningIcon.svg │ │ │ ├── Sources │ │ │ │ ├── Outside_CpData.png │ │ │ │ └── Outside_CpData.svg │ │ │ └── Storage │ │ │ │ ├── Stratified.pdf │ │ │ │ ├── Stratified.png │ │ │ │ ├── Stratified.svg │ │ │ │ ├── StratifiedHex.pdf │ │ │ │ ├── StratifiedHex.png │ │ │ │ ├── StratifiedHex.svg │ │ │ │ ├── separatorSpecificEnthalpyInlet.png │ │ │ │ └── separatorSpecificEnthalpyOutlet.png │ │ ├── IBPSA-logo-text.png │ │ ├── IBPSA-logo.png │ │ ├── Icon_Modelica_AixLib.png │ │ ├── Icon_Modelica_AixLib_background.png │ │ ├── Media │ │ │ ├── Antifreeze │ │ │ │ ├── EthyleneGlycol.py │ │ │ │ ├── EthyleneGlycolWaterError10degC.png │ │ │ │ ├── EthyleneGlycolWaterError20degC.png │ │ │ │ ├── EthyleneGlycolWaterProperties.png │ │ │ │ ├── PropyleneGlycolWaterError10degC.pdf │ │ │ │ ├── PropyleneGlycolWaterError10degC.png │ │ │ │ ├── PropyleneGlycolWaterError20degC.pdf │ │ │ │ ├── PropyleneGlycolWaterError20degC.png │ │ │ │ ├── PropyleneGlycolWaterProperties.pdf │ │ │ │ ├── PropyleneGlycolWaterProperties.png │ │ │ │ └── propyleneGlycol.py │ │ │ ├── Refrigerants │ │ │ │ └── Interfaces │ │ │ │ │ ├── BubbleDensity.png │ │ │ │ │ ├── BubbleEnthalpy.png │ │ │ │ │ ├── BubbleEntropy.png │ │ │ │ │ ├── Density_pT_Input1.png │ │ │ │ │ ├── Density_pT_Input2.png │ │ │ │ │ ├── DewDensity.png │ │ │ │ │ ├── DewEnthalpy.png │ │ │ │ │ ├── DewEntropy.png │ │ │ │ │ ├── Helmholtz_EoS.png │ │ │ │ │ ├── Helmholtz_IdealGasPart.png │ │ │ │ │ ├── Helmholtz_ResidualPart.png │ │ │ │ │ ├── SaturationPressure.png │ │ │ │ │ ├── SaturationTemperature.png │ │ │ │ │ ├── SaturationToTwoPhase.png │ │ │ │ │ ├── StateProperties_Approach.png │ │ │ │ │ ├── SupercooledToTwoPhase.png │ │ │ │ │ ├── Temperature_ph_Input1.png │ │ │ │ │ ├── Temperature_ph_Input2.png │ │ │ │ │ ├── Temperature_ps_Input1.png │ │ │ │ │ ├── Temperature_ps_Input2.png │ │ │ │ │ └── TwoPhaseToSuperheated.png │ │ │ └── Water │ │ │ │ ├── Detailed │ │ │ │ ├── plotCp.pdf │ │ │ │ ├── plotCp.png │ │ │ │ ├── plotCp.py │ │ │ │ ├── plotDensity.py │ │ │ │ ├── plotRho.pdf │ │ │ │ └── plotRho.png │ │ │ │ ├── plotCp.pdf │ │ │ │ ├── plotCp.png │ │ │ │ ├── plotCp.py │ │ │ │ ├── plotDensity.py │ │ │ │ ├── plotLambda.pdf │ │ │ │ ├── plotLambda.png │ │ │ │ ├── plotLambda.py │ │ │ │ ├── plotRho.pdf │ │ │ │ ├── plotRho.png │ │ │ │ ├── plotkinVis.pdf │ │ │ │ ├── plotkinVis.png │ │ │ │ └── plotkinVis.py │ │ ├── OBC │ │ │ ├── OBC_logo-only_150dpi.png │ │ │ └── OBC_stacked_150dpi_small.png │ │ ├── ThermalZones │ │ │ ├── HighOrder │ │ │ │ └── Components │ │ │ │ │ └── Shadow │ │ │ │ │ └── Icon │ │ │ │ │ └── ShadowLength.png │ │ │ ├── ISO13790 │ │ │ │ ├── Validation │ │ │ │ │ └── BESTEST │ │ │ │ │ │ ├── FF_temperature_600FF_Feb1.pdf │ │ │ │ │ │ ├── FF_temperature_600FF_Feb1.png │ │ │ │ │ │ ├── FF_temperature_650FF_Jul14.pdf │ │ │ │ │ │ ├── FF_temperature_650FF_Jul14.png │ │ │ │ │ │ ├── FF_temperature_900FF_Feb1.pdf │ │ │ │ │ │ ├── FF_temperature_900FF_Feb1.png │ │ │ │ │ │ ├── FF_temperature_950FF_Jul14.pdf │ │ │ │ │ │ ├── FF_temperature_950FF_Jul14.png │ │ │ │ │ │ ├── annual_cooling.pdf │ │ │ │ │ │ ├── annual_cooling.png │ │ │ │ │ │ ├── annual_heating.pdf │ │ │ │ │ │ ├── annual_heating.png │ │ │ │ │ │ ├── ave_temperature.pdf │ │ │ │ │ │ ├── ave_temperature.png │ │ │ │ │ │ ├── bin_temperature_900FF.pdf │ │ │ │ │ │ ├── bin_temperature_900FF.png │ │ │ │ │ │ ├── hourly_load_600_Feb1.pdf │ │ │ │ │ │ ├── hourly_load_600_Feb1.png │ │ │ │ │ │ ├── hourly_load_900_Feb1.pdf │ │ │ │ │ │ ├── hourly_load_900_Feb1.png │ │ │ │ │ │ ├── max_temperature.pdf │ │ │ │ │ │ ├── max_temperature.png │ │ │ │ │ │ ├── min_temperature.pdf │ │ │ │ │ │ ├── min_temperature.png │ │ │ │ │ │ ├── peak_cooling.pdf │ │ │ │ │ │ ├── peak_cooling.png │ │ │ │ │ │ ├── peak_heating.pdf │ │ │ │ │ │ └── peak_heating.png │ │ │ │ └── Zone │ │ │ │ │ ├── 5R1CNetwork.pdf │ │ │ │ │ ├── 5R1CNetwork.png │ │ │ │ │ └── 5R1CNetwork.svg │ │ │ └── ReducedOrder │ │ │ │ ├── RC │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── ExtMassVarRC │ │ │ │ │ │ ├── ExtMassVarRC.png │ │ │ │ │ │ └── ExtMassVarRC.svg │ │ │ │ │ └── IntMassVarRC │ │ │ │ │ │ ├── IntMassVarRC.png │ │ │ │ │ │ └── IntMassVarRC.svg │ │ │ │ ├── FiveElements.png │ │ │ │ ├── FiveElements.svg │ │ │ │ ├── FourElements.png │ │ │ │ ├── FourElements.svg │ │ │ │ ├── OneElement.png │ │ │ │ ├── OneElement.svg │ │ │ │ ├── ThreeElements.png │ │ │ │ ├── ThreeElements.svg │ │ │ │ ├── TwoElements.png │ │ │ │ ├── TwoElements.svg │ │ │ │ └── UsersGuide │ │ │ │ │ ├── BauSIM2014_208-2_p1192.pdf │ │ │ │ │ └── p2241.pdf │ │ │ │ └── Windows │ │ │ │ └── BaseClasses │ │ │ │ ├── Illumination.png │ │ │ │ ├── SelfShadowing.png │ │ │ │ ├── SkylineShadowing(2).png │ │ │ │ ├── SkylineShadowing.png │ │ │ │ └── VentilationHeat.png │ │ ├── Utilities │ │ │ ├── HeatTransfer │ │ │ │ └── HeatConv_outside │ │ │ │ │ ├── equation-A5RXdOdd.png │ │ │ │ │ ├── equation-BjHulWj5.png │ │ │ │ │ ├── equation-LDgZSLyY.png │ │ │ │ │ ├── equation-MU6LPHRs.png │ │ │ │ │ └── equation-vd3eY3hw.png │ │ │ ├── Math │ │ │ │ ├── Functions │ │ │ │ │ ├── Examples │ │ │ │ │ │ └── cubicHermite.png │ │ │ │ │ └── SmoothExponentialXPower.png │ │ │ │ ├── int.pdf │ │ │ │ └── int.png │ │ │ └── Sensors │ │ │ │ └── ExergyMeter │ │ │ │ └── ExergyMeters.jpg │ │ └── equations │ │ │ ├── equation-4pZqzkAy.png │ │ │ ├── equation-8xFaklFH.png │ │ │ ├── equation-BUQWpi6Z.png │ │ │ ├── equation-DH2IQXcT.png │ │ │ ├── equation-Fluid_FixedResistance_new.png │ │ │ ├── equation-Fluid_FixedResistance_old.png │ │ │ └── equation-Pr2tOPsJ.png │ ├── Include │ │ └── MDDUDPSocket.h │ ├── Library │ │ ├── linux32 │ │ │ └── libWs2_32.a │ │ ├── linux64 │ │ │ └── libWs2_32.a │ │ ├── win32 │ │ │ ├── ITI_MDD.dll │ │ │ └── pthread.dll │ │ └── win64 │ │ │ ├── ITI_MDD.dll │ │ │ └── pthread.dll │ ├── LowOrder_ExampleData │ │ ├── AHU_Input_6Zone_SIA_4Columns.txt │ │ ├── AHU_Input_SwimmingFacility_6Zones.txt │ │ ├── AHU_MorschenichSfhFixedHeater.txt │ │ ├── InternalGains_MorschenichSfhFixedHeater.txt │ │ ├── InternalGains_SwimmingFacility_6Zones.txt │ │ ├── Internals_Input_6Zone_SIA.txt │ │ ├── MorschenichSfhFixedHeater_AddIntGains.txt │ │ ├── OpeningHours_SwimmingFacility.txt │ │ ├── SIA2024_SingleOffice_week.txt │ │ ├── TsetCool_MorschenichSfhFixedHeater.txt │ │ ├── TsetHeat_MorschenichSfhFixedHeater.txt │ │ ├── Tset_6Zone.txt │ │ ├── Tset_SwimmingFacility.txt │ │ ├── UserProfilesHeatsimple.txt │ │ ├── UserProfiles_18599_SIA_Besprechung_Sitzung_Seminar.txt │ │ └── t_soil_MorschenichSfhFixedHeater.txt │ ├── Media │ │ └── Refrigerants │ │ │ ├── ValidationDerivativesR134a.txt │ │ │ ├── ValidationDerivativesR290.txt │ │ │ ├── ValidationFittedFormulasR134a.txt │ │ │ ├── ValidationFittedFormulasR290.txt │ │ │ └── ValidationFittedFormulasR410a.txt │ ├── NcDataReader_ExampleData │ │ ├── Temp_Year.cdl │ │ ├── Temp_Year.mat │ │ └── Temp_Year.nc │ ├── Python-Sources │ │ └── MakeORCFluidRecord.py │ ├── ReferenceResults │ │ └── Dymola │ │ │ ├── AixLib_Airflow_AirHandlingUnit_Examples_AHU.txt │ │ │ ├── AixLib_Airflow_AirHandlingUnit_ModularAirHandlingUnit_Components_Validation_Cooler.txt │ │ │ ├── AixLib_Airflow_AirHandlingUnit_ModularAirHandlingUnit_Components_Validation_Fan.txt │ │ │ ├── AixLib_Airflow_AirHandlingUnit_ModularAirHandlingUnit_Components_Validation_Heater.txt │ │ │ ├── AixLib_Airflow_AirHandlingUnit_ModularAirHandlingUnit_Components_Validation_SensibleCooler.txt │ │ │ ├── AixLib_Airflow_AirHandlingUnit_ModularAirHandlingUnit_Components_Validation_SprayHumidifier.txt │ │ │ ├── AixLib_Airflow_AirHandlingUnit_ModularAirHandlingUnit_Components_Validation_SteamHumidifier.txt │ │ │ ├── AixLib_Airflow_AirHandlingUnit_ModularAirHandlingUnit_Examples_ExampleAHU.txt │ │ │ ├── AixLib_Airflow_AirHandlingUnit_ModularAirHandlingUnit_Verification_ComparisonToAHU.txt │ │ │ ├── AixLib_Airflow_Multizone_BaseClasses_Examples_PowerLaw.txt │ │ │ ├── AixLib_Airflow_Multizone_BaseClasses_Examples_PowerLawFixedM.txt │ │ │ ├── AixLib_Airflow_Multizone_BaseClasses_Examples_WindPressureLowRise.txt │ │ │ ├── AixLib_Airflow_Multizone_BaseClasses_Examples_WindPressureProfile.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_CO2TransportStep.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_ChimneyShaftNoVolume.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_ChimneyShaftWithVolume.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_ClosedDoors.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_NaturalVentilation.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_OneEffectiveAirLeakageArea.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_OneOpenDoor.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_OneRoom.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_Orifice.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_PowerLaw.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_PressurizationData.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_ReverseBuoyancy.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_ReverseBuoyancy3Zones.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_TrickleVent.txt │ │ │ ├── AixLib_Airflow_Multizone_Examples_ZonalFlow.txt │ │ │ ├── AixLib_Airflow_Multizone_Validation_DoorOpenClosed.txt │ │ │ ├── AixLib_Airflow_Multizone_Validation_OneWayFlow.txt │ │ │ ├── AixLib_Airflow_Multizone_Validation_OpenDoorBuoyancyDynamic.txt │ │ │ ├── AixLib_Airflow_Multizone_Validation_OpenDoorBuoyancyPressureDynamic.txt │ │ │ ├── AixLib_Airflow_Multizone_Validation_OpenDoorPressure.txt │ │ │ ├── AixLib_Airflow_Multizone_Validation_OpenDoorTemperature.txt │ │ │ ├── AixLib_Airflow_Multizone_Validation_ThreeRoomsContam.txt │ │ │ ├── AixLib_Airflow_Multizone_Validation_ThreeRoomsContamDiscretizedDoor.txt │ │ │ ├── AixLib_Airflow_WindowVentilation_Examples_OpeningArea.txt │ │ │ ├── AixLib_Airflow_WindowVentilation_Examples_VentilationFlowRateSashOpening.txt │ │ │ ├── AixLib_Airflow_WindowVentilation_Examples_VentilationFlowRateSimpleOpening.txt │ │ │ ├── AixLib_BoundaryConditions_InternalGains_Examples_HumansSenTDep.txt │ │ │ ├── AixLib_BoundaryConditions_InternalGains_Examples_HumansSenTIndep.txt │ │ │ ├── AixLib_BoundaryConditions_InternalGains_Examples_HumansTotTDep.txt │ │ │ ├── AixLib_BoundaryConditions_InternalGains_Examples_Lights.txt │ │ │ ├── AixLib_BoundaryConditions_InternalGains_Examples_Machines.txt │ │ │ ├── AixLib_BoundaryConditions_InternalGains_Examples_OneOffice.txt │ │ │ ├── AixLib_BoundaryConditions_SkyTemperature_Examples_BlackBody.txt │ │ │ ├── AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_AltitudeAngle.txt │ │ │ ├── AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_Declination.txt │ │ │ ├── AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_IncidenceAngle.txt │ │ │ ├── AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_SolarAzimuth.txt │ │ │ ├── AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_SolarHourAngle.txt │ │ │ ├── AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_WallSolarAzimuth.txt │ │ │ ├── AixLib_BoundaryConditions_SolarGeometry_BaseClasses_Examples_ZenithAngle.txt │ │ │ ├── AixLib_BoundaryConditions_SolarGeometry_Examples_IncidenceAngle.txt │ │ │ ├── AixLib_BoundaryConditions_SolarGeometry_Examples_ZenithAngle.txt │ │ │ ├── AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_BrighteningCoefficient.txt │ │ │ ├── AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_DiffuseIsotropic.txt │ │ │ ├── AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_RelativeAirMass.txt │ │ │ ├── AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_SkyBrightness.txt │ │ │ ├── AixLib_BoundaryConditions_SolarIrradiation_BaseClasses_Examples_SkyClearness.txt │ │ │ ├── AixLib_BoundaryConditions_SolarIrradiation_Examples_DiffuseIsotropic.txt │ │ │ ├── AixLib_BoundaryConditions_SolarIrradiation_Examples_DiffusePerez.txt │ │ │ ├── AixLib_BoundaryConditions_SolarIrradiation_Examples_DirectTiltedSurface.txt │ │ │ ├── AixLib_BoundaryConditions_SolarIrradiation_Examples_GlobalPerezTiltedSurface.txt │ │ │ ├── AixLib_BoundaryConditions_Validation_BESTEST_WD100.txt │ │ │ ├── AixLib_BoundaryConditions_Validation_BESTEST_WD200.txt │ │ │ ├── AixLib_BoundaryConditions_Validation_BESTEST_WD300.txt │ │ │ ├── AixLib_BoundaryConditions_Validation_BESTEST_WD400.txt │ │ │ ├── AixLib_BoundaryConditions_Validation_BESTEST_WD500.txt │ │ │ ├── AixLib_BoundaryConditions_Validation_BESTEST_WD600.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_CheckBlackBodySkyTemperature.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_CheckCeilingHeight.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_CheckPressure.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_CheckRadiation.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_CheckRelativeHumidity.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_CheckSkyCover.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_CheckTemperature.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_CheckWindDirection.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_CheckWindSpeed.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_ConvertRadiation.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_ConvertRelativeHumidity.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_ConvertTime.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_ConvertTimeNegativeStart.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_ConvertTimePositiveStart.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_EquationOfTime.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetAbsolutePath.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetAltitudeTMY3.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetHeaderElement.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetTimeSpanTMY3.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetTimeSpanTMY3LongHeader.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_GetTimeSpanTMY3_NonzeroStart.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_LimitMin.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_LocalCivilTime.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_BaseClasses_Examples_SolarTime.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_Examples_ReaderTMY3.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_Validation_DecemberToJanuary.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_Validation_OverAYear_usingOneYearData.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_Validation_ReaderTMY3HDirNor.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_Validation_ThreeYears_usingTwoYearData.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_Validation_ThreeYears_usingTwoYearDataNegativeStart.txt │ │ │ ├── AixLib_BoundaryConditions_WeatherData_Validation_ThreeYears_usingTwoYearDataPositiveStart.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Linear_TestCase1.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Linear_TestCase10.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Linear_TestCase11.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Linear_TestCase12.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Linear_TestCase2.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Linear_TestCase3.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Linear_TestCase4.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Linear_TestCase5.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Linear_TestCase6.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Linear_TestCase7.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Linear_TestCase8.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Linear_TestCase9.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Star_TestCase1.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Star_TestCase10.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Star_TestCase11.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Star_TestCase12.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Star_TestCase2.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Star_TestCase3.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Star_TestCase4.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Star_TestCase5.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Star_TestCase6.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Star_TestCase7.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Star_TestCase8.txt │ │ │ ├── AixLib_Building_LowOrder_Examples_Validation_Star_TestCase9.txt │ │ │ ├── AixLib_Controls_Continuous_Examples_LimPID.txt │ │ │ ├── AixLib_Controls_Continuous_Examples_LimPIDWithReset.txt │ │ │ ├── AixLib_Controls_Continuous_Examples_NumberOfRequests.txt │ │ │ ├── AixLib_Controls_Continuous_Examples_OffTimer.txt │ │ │ ├── AixLib_Controls_Continuous_Examples_PIDHysteresis.txt │ │ │ ├── AixLib_Controls_Continuous_Examples_PIDHysteresisTimer.txt │ │ │ ├── AixLib_Controls_Continuous_Examples_SignalRanker.txt │ │ │ ├── AixLib_Controls_Continuous_Validation_LimPIDReset.txt │ │ │ ├── AixLib_Controls_Continuous_Validation_OffTimerNonZeroStart.txt │ │ │ ├── AixLib_Controls_Discrete_Examples_BooleanDelay.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Conversions_Validation_BooleanToInteger.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Conversions_Validation_BooleanToReal.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Conversions_Validation_IntegerToReal.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Conversions_Validation_RealToInteger.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Discrete_Validation_FirstOrderHold.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Discrete_Validation_Sampler.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Discrete_Validation_TriggeredMax.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Discrete_Validation_TriggeredMovingMean.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Discrete_Validation_TriggeredSampler.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Discrete_Validation_UnitDelay.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Discrete_Validation_ZeroOrderHold.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Sources_Validation_Constant.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Sources_Validation_Pulse.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Sources_Validation_TimeTable.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Sources_Validation_TimeTableNegativeStartTime.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_Abs.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_Add.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_AddParameter.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_Change.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_Equal.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_Greater.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_GreaterEqual.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_GreaterEqualThreshold.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_GreaterThreshold.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_Less.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_LessEqual.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_LessEqualThreshold.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_LessThreshold.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_Max.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_Min.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_MultiSum.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_Multiply.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_OnCounter.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_Stage.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_Subtract.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Integers_Validation_Switch.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Sources_Validation_Constant.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Sources_Validation_Pulse.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Sources_Validation_PulseNegativeStartTime.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Sources_Validation_PulsePositiveStartTime.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Sources_Validation_SampleTrigger.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Sources_Validation_SampleTriggerNegativeStartTime.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Sources_Validation_SampleTriggerPositiveStartTime.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Sources_Validation_TimeTable.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Sources_Validation_TimeTableNegativeStartTime.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_And.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_Change.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_Edge.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_FallingEdge.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_Latch.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_MultiAnd.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_MultiOr.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_Nand.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_Nor.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_Not.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_Or.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_Proof.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_Switch.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_Timer.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_TimerAccumulating.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_TimerAccumulatingNegativeStartTime.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_TimerNegativeStartTime.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_Toggle.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_TrueDelay.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_TrueFalseHold.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_VariablePulse.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_VariablePulseMinHold.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Logical_Validation_Xor.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Psychrometrics_Validation_DewPoint_TDryBulPhi.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Psychrometrics_Validation_SpecificEnthalpy_TDryBulPhi.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Psychrometrics_Validation_WetBulb_TDryBulPhi.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Sources_Validation_CalendarTimeMonths.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Sources_Validation_CalendarTimeMonthsMinus.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Sources_Validation_CalendarTimeMonthsPlus.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Sources_Validation_CivilTime.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Sources_Validation_Constant.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Sources_Validation_Pulse.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Sources_Validation_Ramp.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Sources_Validation_Sin.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Sources_Validation_TimeTable.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Sources_Validation_TimeTableNegativeStartTime.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Abs.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Acos.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Add.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_AddParameter.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Asin.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Atan.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Atan2.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Average.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Cos.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Derivative.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Divide.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Exp.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Greater.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_GreaterThreshold.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Hysteresis.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_IntegratorWithReset.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Less.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_LessThreshold.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_LimitSlewRate.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Limiter.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Line.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Log.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Log10.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_MatrixGain.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_MatrixMax.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_MatrixMin.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Max.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Min.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Modulo.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_MovingAverage.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_MovingAverage_nonZeroStart.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_MultiMax.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_MultiMin.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_MultiSum.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Multiply.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_MultiplyByParameter.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_PID.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_PIDInitialDerivativeOutput.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_PIDInitialState.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_PIDScale.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_PIDWithReset.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_PIDWithResetScale.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Ramp.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Round.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Sin.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Sort.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Sqrt.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Subtract.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Switch.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Reals_Validation_Tan.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_BooleanExtractSignal.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_BooleanExtractor.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_BooleanScalarReplicator.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_BooleanVectorFilter.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_BooleanVectorReplicator.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_IntegerExtractSignal.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_IntegerExtractor.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_IntegerScalarReplicator.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_IntegerVectorFilter.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_IntegerVectorReplicator.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_RealExtractSignal.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_RealExtractor.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_RealScalarReplicator.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_RealVectorFilter.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Routing_Validation_RealVectorReplicator.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Utilities_Validation_Assert.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Utilities_Validation_SunRiseSet.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Utilities_Validation_SunRiseSetNegativeStartTime.txt │ │ │ ├── AixLib_Controls_OBC_CDL_Utilities_Validation_SunRiseSetPositiveStartTime.txt │ │ │ ├── AixLib_Controls_OBC_Utilities_SetPoints_Validation_SupplyReturnTemperatureReset.txt │ │ │ ├── AixLib_Controls_OBC_Utilities_SetPoints_Validation_SupplyReturnTemperatureResetExponent.txt │ │ │ ├── AixLib_Controls_OBC_Utilities_Validation_OptimalStartCoolingNegativeStartTime.txt │ │ │ ├── AixLib_Controls_OBC_Utilities_Validation_OptimalStartCoolingPositiveStartTime.txt │ │ │ ├── AixLib_Controls_OBC_Utilities_Validation_OptimalStartHeating.txt │ │ │ ├── AixLib_Controls_OBC_Utilities_Validation_OptimalStartHeatingCooling.txt │ │ │ ├── AixLib_Controls_OBC_Utilities_Validation_OptimalStartNoHeatingNoCooling.txt │ │ │ ├── AixLib_Controls_OBC_Utilities_Validation_PIDWithInputGains.txt │ │ │ ├── AixLib_Controls_SetPoints_Examples_HotWaterTemperatureReset.txt │ │ │ ├── AixLib_Controls_SetPoints_Examples_OccupancySchedule.txt │ │ │ ├── AixLib_Controls_SetPoints_Examples_SupplyReturnTemperatureReset.txt │ │ │ ├── AixLib_Controls_SetPoints_Examples_Table.txt │ │ │ ├── AixLib_Controls_SetPoints_Validation_OccupancyScheduleNegativeStartTime.txt │ │ │ ├── AixLib_Controls_SetPoints_Validation_OccupancySchedulePositiveStartTime.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Conversion_Examples_ACACConverter.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Conversion_Examples_ACACTransformer.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Conversion_Examples_ACACTransformerFull.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Conversion_Examples_ACDCConverter.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Examples_GeneratorLoadGrid.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Examples_GridDCLoad.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Lines_Examples_ACLine.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Lines_Examples_ACLine_L.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Lines_Examples_ACLine_R.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Lines_Examples_ACLine_RL.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Lines_Examples_ACSimpleGrid.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Loads_Examples_DynamicLoads.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Loads_Examples_ParallelLoads.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Loads_Examples_ParallelResistors.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Loads_Examples_TestImpedance.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Loads_Examples_ThreePhases.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Loads_Examples_VariableImpedance.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Sensors_Examples_GeneralizedSensor.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Sensors_Examples_Probe.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Sources_Examples_FixedVoltageSource.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Sources_Examples_VariablePowerSource.txt │ │ │ ├── AixLib_Electrical_AC_OnePhase_Sources_Examples_WindTurbine.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Conversion_Examples_ACACConverter.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Conversion_Examples_ACACTransformer.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Conversion_Examples_ACACTransformerFull.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Conversion_Examples_ACDCConverter.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Lines_Examples_ACLine.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Lines_Examples_ACLineMedium.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Lines_Examples_ACLine_L.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Lines_Examples_ACLine_R.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Lines_Examples_ACLine_RL.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Lines_Examples_ACSimpleGrid.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Lines_Examples_ACSimpleGridMedium.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Loads_Examples_Impedances.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Loads_Examples_ParallelLoads.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Loads_Examples_ThreePhases.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Sensors_Examples_GeneralizedSensor.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Sensors_Examples_Probe.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Sources_Examples_FixedVoltageSource.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesBalanced_Sources_Examples_VariablePowerSource.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Conversion_Examples_Converter.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Conversion_Examples_Transformer.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Conversion_Examples_TransformerDD.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Conversion_Examples_TransformerFull.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Conversion_Examples_TransformerStepDownDY.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Conversion_Examples_TransformerStepDownYD.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Conversion_Examples_TransformerStepUpDY.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Conversion_Examples_TransformerStepUpYD.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Interfaces_Examples_WyeToDelta.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLine.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLineMatrix_RL.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLineMatrix_RLC.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLineMatrix_RLC_N.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLineMatrix_RL_N.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLine_L.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLine_L_N.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLine_N.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLine_R.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLine_RL.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLine_RLC.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLine_RLC_N.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLine_RL_N.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACLine_R_N.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACSimpleGrid.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Lines_Examples_ACSimpleGrid_N.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Loads_Examples_Impedances.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Loads_Examples_LoadCtrl.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Loads_Examples_Loads.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Loads_Examples_Loads_N.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Sensors_Examples_Sensors.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Sources_Examples_FixedVoltageSource.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Sources_Examples_WindTurbine.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Sources_Examples_WindTurbine_N.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_BalancedStepDown_DD.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_BalancedStepDown_DY.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_BalancedStepDown_YD.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_BalancedStepDown_YY.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_BalancedStepUp_DD.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_BalancedStepUp_DY.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_BalancedStepUp_YD.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_BalancedStepUp_YY.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_UnbalancedStepDown_DD.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_UnbalancedStepDown_DY.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_UnbalancedStepDown_YD.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_UnbalancedStepDown_YY.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_UnbalancedStepUp_DD.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_UnbalancedStepUp_DY.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_UnbalancedStepUp_YD.txt │ │ │ ├── AixLib_Electrical_AC_ThreePhasesUnbalanced_Validation_IEEETests_Test4NodesFeeder_UnbalancedStepUp_YY.txt │ │ │ ├── AixLib_Electrical_DC_Conversion_Examples_DCDCConverter.txt │ │ │ ├── AixLib_Electrical_DC_Lines_Examples_DCLine.txt │ │ │ ├── AixLib_Electrical_DC_Lines_Examples_DCLines.txt │ │ │ ├── AixLib_Electrical_DC_Lines_Examples_DCLinesLinearized.txt │ │ │ ├── AixLib_Electrical_DC_Lines_Examples_RCModel.txt │ │ │ ├── AixLib_Electrical_DC_Lines_Examples_Resistance.txt │ │ │ ├── AixLib_Electrical_DC_Loads_Examples_LinearizedLoad.txt │ │ │ ├── AixLib_Electrical_DC_Loads_Examples_Resistor.txt │ │ │ ├── AixLib_Electrical_DC_Loads_Examples_VariableLoad.txt │ │ │ ├── AixLib_Electrical_DC_Sensors_Examples_GeneralizedSensor.txt │ │ │ ├── AixLib_Electrical_DC_Sources_Examples_VoltageSource.txt │ │ │ ├── AixLib_Electrical_DC_Sources_Examples_WindTurbine.txt │ │ │ ├── AixLib_Electrical_Examples_ExamplePVSystem.txt │ │ │ ├── AixLib_Electrical_Transmission_Functions_Validation_SelectCable_low.txt │ │ │ ├── AixLib_Electrical_Transmission_Functions_Validation_SelectCable_med.txt │ │ │ ├── AixLib_Electrical_Utilities_Examples_TestVoltageCTRL.txt │ │ │ ├── AixLib_Electrical_Validation_ValidationPVSystem.txt │ │ │ ├── AixLib_Examples_SimpleHouse.txt │ │ │ ├── AixLib_Examples_Tutorial_SimpleHouse_SimpleHouse0.txt │ │ │ ├── AixLib_Examples_Tutorial_SimpleHouse_SimpleHouse1.txt │ │ │ ├── AixLib_Examples_Tutorial_SimpleHouse_SimpleHouse2.txt │ │ │ ├── AixLib_Examples_Tutorial_SimpleHouse_SimpleHouse3.txt │ │ │ ├── AixLib_Examples_Tutorial_SimpleHouse_SimpleHouse4.txt │ │ │ ├── AixLib_Examples_Tutorial_SimpleHouse_SimpleHouse5.txt │ │ │ ├── AixLib_Examples_Tutorial_SimpleHouse_SimpleHouse6.txt │ │ │ ├── AixLib_Experimental_Benchmarks_AirFlow_Examples_MultipleFloorsVectors.txt │ │ │ ├── AixLib_Experimental_Benchmarks_AirFlow_Examples_TwoFloors.txt │ │ │ ├── AixLib_Experimental_Benchmarks_AirFlow_Examples_ZoneStepResponse.txt │ │ │ ├── AixLib_Experimental_Media_Examples_AirPTDecoupledDerivativeCheck.txt │ │ │ ├── AixLib_Experimental_Media_Examples_AirPTDecoupledProperties.txt │ │ │ ├── AixLib_Experimental_Media_Examples_AirPTDecoupledTemperatureEnthalpyInversion.txt │ │ │ ├── AixLib_Experimental_Media_Examples_AirPTDecoupledTestImplementation.txt │ │ │ ├── AixLib_Fluid_Actuators_BaseClasses_Examples_EqualPercentageDerivativeCheck.txt │ │ │ ├── AixLib_Fluid_Actuators_Dampers_Examples_Damper.txt │ │ │ ├── AixLib_Fluid_Actuators_Dampers_Examples_MixingBox.txt │ │ │ ├── AixLib_Fluid_Actuators_Dampers_Examples_VAVBoxExponential.txt │ │ │ ├── AixLib_Fluid_Actuators_Dampers_Validation_PressureIndependent.txt │ │ │ ├── AixLib_Fluid_Actuators_Motors_Examples_IdealMotor.txt │ │ │ ├── AixLib_Fluid_Actuators_Valves_Examples_ThreeWayValves.txt │ │ │ ├── AixLib_Fluid_Actuators_Valves_Examples_TwoWayValvePressureIndependent.txt │ │ │ ├── AixLib_Fluid_Actuators_Valves_Examples_TwoWayValveTable.txt │ │ │ ├── AixLib_Fluid_Actuators_Valves_Examples_TwoWayValves.txt │ │ │ ├── AixLib_Fluid_Actuators_Valves_Examples_TwoWayValvesMotor.txt │ │ │ ├── AixLib_Fluid_Actuators_Valves_Examples_TwoWayValvesTable.txt │ │ │ ├── AixLib_Fluid_Actuators_Valves_Examples_ValveParameterization.txt │ │ │ ├── AixLib_Fluid_Actuators_Valves_Validation_ThreeWayValveParameterization.txt │ │ │ ├── AixLib_Fluid_Actuators_Valves_Validation_TwoWayValveParameterization.txt │ │ │ ├── AixLib_Fluid_BaseClasses_FlowModels_Examples_InverseFlowFunction.txt │ │ │ ├── AixLib_Fluid_BaseClasses_FlowModels_Examples_TestFlowFunctions.txt │ │ │ ├── AixLib_Fluid_BaseClasses_FlowModels_Validation_BasicFlowFunction_dp_DerivativeCheck.txt │ │ │ ├── AixLib_Fluid_BaseClasses_FlowModels_Validation_BasicFlowFunction_dp_DerivativeCheck2.txt │ │ │ ├── AixLib_Fluid_BaseClasses_FlowModels_Validation_BasicFlowFunction_m_flow_DerivativeCheck.txt │ │ │ ├── AixLib_Fluid_BaseClasses_FlowModels_Validation_BasicFlowFunction_m_flow_DerivativeCheck2.txt │ │ │ ├── AixLib_Fluid_BaseClasses_FlowModels_Validation_InverseFlowFunctions.txt │ │ │ ├── AixLib_Fluid_BaseClasses_FlowModels_Validation_InvertingBasicFlowFunction_dp.txt │ │ │ ├── AixLib_Fluid_BaseClasses_FlowModels_Validation_InvertingBasicFlowFunction_m_flow.txt │ │ │ ├── AixLib_Fluid_BaseClasses_Validation_ActuatorFilter.txt │ │ │ ├── AixLib_Fluid_BaseClasses_Validation_MassFlowRateMultiplier.txt │ │ │ ├── AixLib_Fluid_BoilerCHP_Examples_BoilerGeneric.txt │ │ │ ├── AixLib_Fluid_BoilerCHP_Examples_CHPSystem.txt │ │ │ ├── AixLib_Fluid_BoilerCHP_Examples_CHPSystemNoControl.txt │ │ │ ├── AixLib_Fluid_CHPs_OrganicRankine_BaseClasses_Validation_DryFluid.txt │ │ │ ├── AixLib_Fluid_CHPs_OrganicRankine_BaseClasses_Validation_WetFluid.txt │ │ │ ├── AixLib_Fluid_CHPs_OrganicRankine_Examples_ORCHotWater.txt │ │ │ ├── AixLib_Fluid_CHPs_OrganicRankine_Validation_VariableSource.txt │ │ │ ├── AixLib_Fluid_Chillers_Examples_Carnot_TEva.txt │ │ │ ├── AixLib_Fluid_Chillers_Examples_Carnot_y.txt │ │ │ ├── AixLib_Fluid_Chillers_ModularReversible_Examples_CarnotWithLosses.txt │ │ │ ├── AixLib_Fluid_Chillers_ModularReversible_Examples_LargeScaleWaterToWater.txt │ │ │ ├── AixLib_Fluid_Chillers_ModularReversible_Examples_Modular.txt │ │ │ ├── AixLib_Fluid_Chillers_ModularReversible_Validation_Carnot_y.txt │ │ │ ├── AixLib_Fluid_Chillers_ModularReversible_Validation_ConstantCarnotEffectiveness.txt │ │ │ ├── AixLib_Fluid_Chillers_ModularReversible_Validation_TableData2D.txt │ │ │ ├── AixLib_Fluid_Chillers_Validation_CarnotVerifyCOP.txt │ │ │ ├── AixLib_Fluid_Chillers_Validation_CarnotVerifyEtaCarnot.txt │ │ │ ├── AixLib_Fluid_Chillers_Validation_Carnot_TEva_2ndLaw.txt │ │ │ ├── AixLib_Fluid_Chillers_Validation_Carnot_TEva_HighTemperature.txt │ │ │ ├── AixLib_Fluid_Chillers_Validation_Carnot_TEva_LimitedCapacity.txt │ │ │ ├── AixLib_Fluid_Chillers_Validation_Carnot_TEva_etaPL.txt │ │ │ ├── AixLib_Fluid_Chillers_Validation_Carnot_TEva_reverseFlow.txt │ │ │ ├── AixLib_Fluid_Chillers_Validation_Carnot_y_etaPL.txt │ │ │ ├── AixLib_Fluid_Delays_Examples_Delay.txt │ │ │ ├── AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopHeatPumpCarnot.txt │ │ │ ├── AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDp.txt │ │ │ ├── AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDpBypass.txt │ │ │ ├── AixLib_Fluid_DistrictHeatingCooling_Demands_Examples_OpenLoopVarTSupplyDpFixedTempDifferenceBypass.txt │ │ │ ├── AixLib_Fluid_DistrictHeatingCooling_Pipes_Examples_DHCPipe.txt │ │ │ ├── AixLib_Fluid_DistrictHeatingCooling_Pipes_Examples_PlugFlowPipeEmbedded.txt │ │ │ ├── AixLib_Fluid_DistrictHeatingCooling_Pipes_Examples_PlugFlowPipeZeta.txt │ │ │ ├── AixLib_Fluid_DistrictHeatingCooling_Pipes_Examples_StaticPipe.txt │ │ │ ├── AixLib_Fluid_Examples_FlowSystem_Basic.txt │ │ │ ├── AixLib_Fluid_Examples_FlowSystem_Simplified1.txt │ │ │ ├── AixLib_Fluid_Examples_FlowSystem_Simplified2.txt │ │ │ ├── AixLib_Fluid_Examples_FlowSystem_Simplified3.txt │ │ │ ├── AixLib_Fluid_Examples_FlowSystem_Simplified4.txt │ │ │ ├── AixLib_Fluid_Examples_FlowSystem_Simplified5.txt │ │ │ ├── AixLib_Fluid_Examples_FlowSystem_Simplified6.txt │ │ │ ├── AixLib_Fluid_Examples_GeothermalHeatPump_GeothermalHeatPump.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_Example1v1.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_Example1v2.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_Example2.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_Example3.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_Example4.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_Example5.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_Example6.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_Example7.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_Example8.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_PressureDrop_ParallelDp.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_PressureDrop_ParallelDpOptimised.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_PressureDrop_ParallelFlow.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_PressureDrop_ParallelFlowOptimised.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_PressureDrop_SeriesDp.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_PressureDrop_SeriesDpOptimised.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_PressureDrop_SeriesFlow.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_PressureDrop_SeriesFlowOptimised.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_PressureDrop_SeriesParallelDp.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_PressureDrop_SeriesParallelDpOptimised.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_PressureDrop_SeriesParallelFlow.txt │ │ │ ├── AixLib_Fluid_Examples_Performance_PressureDrop_SeriesParallelFlowOptimised.txt │ │ │ ├── AixLib_Fluid_Examples_ResistanceVolumeFlowReversal.txt │ │ │ ├── AixLib_Fluid_FMI_Adaptors_Examples_ThermalZoneHVACNoExhaust.txt │ │ │ ├── AixLib_Fluid_FMI_Adaptors_Examples_ThermalZoneHVACWithExhaust.txt │ │ │ ├── AixLib_Fluid_FMI_Conversion_Validation_AirToOutlet.txt │ │ │ ├── AixLib_Fluid_FMI_Conversion_Validation_AirToOutletFlowReversal.txt │ │ │ ├── AixLib_Fluid_FMI_Conversion_Validation_InletToAirDryAir.txt │ │ │ ├── AixLib_Fluid_FMI_Conversion_Validation_InletToAirDryAirCO2.txt │ │ │ ├── AixLib_Fluid_FMI_Conversion_Validation_InletToAirMoistAir.txt │ │ │ ├── AixLib_Fluid_FMI_Conversion_Validation_InletToAirMoistAirCO2.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_Fan.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_FlowSplitter_u.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_HVACZone.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_HVACZones.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_HeaterCooler_u.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_Heater_T.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_Humidifier_u.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_IdealSource_m_flow.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_MixingVolume.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_PressureDrop.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_ResistanceVolume.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_ThermalZone.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_ThermalZones.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Examples_FMUs_TwoPortPassThrough.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Validation_FMUs_HVACThermalZoneAir1.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Validation_FMUs_HVACThermalZoneAir2.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Validation_FMUs_HVACThermalZoneAir3.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Validation_FMUs_HVACThermalZoneSimpleAir1.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Validation_FMUs_HVACThermalZoneSimpleAir2.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Validation_FMUs_HVACThermalZoneSimpleAir3.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Validation_FMUs_ThermalZoneAir1.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Validation_FMUs_ThermalZoneAir2.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Validation_FMUs_ThermalZoneAir3.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Validation_FMUs_ThermalZoneSimpleAir1.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Validation_FMUs_ThermalZoneSimpleAir2.txt │ │ │ ├── AixLib_Fluid_FMI_ExportContainers_Validation_FMUs_ThermalZoneSimpleAir3.txt │ │ │ ├── AixLib_Fluid_FMI_Validation_FlowSplitter_u.txt │ │ │ ├── AixLib_Fluid_FMI_Validation_HeaterFan.txt │ │ │ ├── AixLib_Fluid_FMI_Validation_HeaterFanPressureDriven.txt │ │ │ ├── AixLib_Fluid_FMI_Validation_HeaterFan_noReverseFlow.txt │ │ │ ├── AixLib_Fluid_FixedResistances_BaseClasses_Validation_PlugFlowCore.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Examples_CheckValve.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Examples_CompareFixedResistances.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Examples_FixedResistancesExplicit.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Examples_FixedResistancesParallel.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Examples_FixedResistancesSeries.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Examples_FlowJunction.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Examples_HydraulicDiameter.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Examples_PlugFlowPipe.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Examples_PlugFlowPipeDiscretized.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Examples_PressureDrop.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Examples_SimplePipe.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_FlowJunctionSteadyState.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_FlowJunctionSteadyStateNoPressureDrop.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_LosslessPipe.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_Data_TestData.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_FlowReversal.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_MSLAIT.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_MSLAIT2Nodes.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_PlugFlowAIT.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_PlugFlowULg.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_PlugFlowPipes_TransportWaterAir.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_PressureDropsExplicit.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_PressureDropsExplicitLinearized.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_PressureDropsParallel.txt │ │ │ ├── AixLib_Fluid_FixedResistances_Validation_PressureDropsSeries.txt │ │ │ ├── AixLib_Fluid_Geothermal_Aquifer_Examples_CoolingOffice.txt │ │ │ ├── AixLib_Fluid_Geothermal_Aquifer_Validation_NumberWells.txt │ │ │ ├── AixLib_Fluid_Geothermal_Aquifer_Validation_SimulationTest.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Examples_InternalHEXOneUTube.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Examples_InternalHEXTwoUTube.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Examples_InternalResistancesOneUTube.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Examples_InternalResistancesTwoUTube.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Functions_Validation_ConvectionResistanceCircularPipe.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Functions_Validation_InternalResistancesOneUTube.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Functions_Validation_InternalResistancesOneUTubeNegative.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Functions_Validation_InternalResistancesTwoUTube.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Functions_Validation_InternalResistancesTwoUTubeNegative.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Functions_Validation_MultipoleThermalResistances_OneUTube.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_BaseClasses_Functions_Validation_MultipoleThermalResistances_TwoUTube.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_Examples_BoreholeDynamics.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_Examples_BoreholeOneUTube.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_Boreholes_Examples_BoreholeTwoUTube.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_LoadAggregation_Validation_AggregationCellTimes.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_LoadAggregation_Validation_AggregationWeightingFactors.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_LoadAggregation_Validation_CountAggregationCells.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_LoadAggregation_Validation_ShiftAggregationCells.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_LoadAggregation_Validation_TemperatureResponseMatrix.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_LoadAggregation_Validation_TemporalSuperposition.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_ClusterBoreholes_100boreholes.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_CylindricalHeatSource.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_CylindricalHeatSource_Integrand.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_FiniteLineSource.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_FiniteLineSource_Equivalent.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_FiniteLineSource_Erfint.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_FiniteLineSource_Integrand.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_FiniteLineSource_Integrand_Equivalent.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_FiniteLineSource_Integrand_Length.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_FiniteLineSource_SteadyState.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_GFunction_100boreholes.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_GFunction_1borehole_5meters.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_GFunction_SmallScaleValidation.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_InfiniteLineSource.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_ShaGFunction.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_ThermalResponseFactors_Validation_TimeGeometric.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_Validation_Analytic_20Years.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_Validation_Cylindrical.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_Validation_FiniteDifference_1Week.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_BaseClasses_HeatTransfer_Validation_Measured_SmallScale.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_Examples_Borefields.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_Examples_RectangularBorefield.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_Validation_ConstantHeatInjection_100Boreholes.txt │ │ │ ├── AixLib_Fluid_Geothermal_Borefields_Validation_Sandbox.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_ActiveBeams_BaseClasses_Examples_Convector.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_ActiveBeams_BaseClasses_Examples_DerivateCubicSpline.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_ActiveBeams_BaseClasses_Examples_ModificationFactor.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_ActiveBeams_Examples_CoolingAndHeating.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_ActiveBeams_Examples_CoolingOnly.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_ActiveBeams_Examples_HeatingOnly.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_ActiveBeams_Validation_NumberOfBeams.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_ActiveBeams_Validation_NumberOfBeamsDynamics.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_BaseClasses_Examples_HACoilInside.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_BaseClasses_Examples_HADryCoil.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_BaseClasses_Examples_HANaturalCylinder.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Examples_AirHeater_T.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Examples_AirHeater_u.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Examples_DryCoilEffectivenessNTUMassFlow.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Examples_DryCoilEffectivenessNTUPControl.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Examples_Heater_T.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Examples_Heater_u.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Examples_HeatingRod.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Examples_WaterCooler_T.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Examples_WaterHeater_T.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Examples_WaterHeater_u.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Radiators_Examples_RadiatorEN442_2.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Validation_ConstantEffectiveness.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Validation_DryCoilEffectivenessNTU.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Validation_EvaporatorCondenser.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Validation_HeaterCooler_T.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Validation_HeaterCooler_T_dynamic.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Validation_HeaterCooler_u.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Validation_PrescribedOutlet.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Validation_PrescribedOutlet_dynamic.txt │ │ │ ├── AixLib_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Calibration_ScrollWaterToWater.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Compressors_BaseClasses_Validation_TemperatureProtection.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Compressors_Validation_ReciprocatingCompressor.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Compressors_Validation_ReciprocatingCompressor_ZeroInput.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Compressors_Validation_ScrollCompressor.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Compressors_Validation_ScrollCompressor_ZeroInput.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Examples_Carnot_TCon.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Examples_Carnot_y.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Examples_ScrollWaterToWater_OneRoomRadiator.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Controls_Safety_Examples_AntiFreeze.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Controls_Safety_Examples_MinimalFlowRate.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Controls_Safety_Examples_OnOff.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Controls_Safety_Examples_OperationalEnvelope.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Controls_Safety_Examples_Safety.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Examples_AirToWater2D_OneRoomRadiator.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Examples_CarnotWithLosses_OneRoomRadiator.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Examples_LargeScaleWaterToWater_OneRoomRadiator.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Examples_Modular_OneRoomRadiator.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Examples_TableData3D_OneRoomRadiator.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Examples_VCLibAirToWater_OneRoomRadiator.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_RefrigerantCycle_Frosting_Validation_WetterAfjei1997.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Validation_Comparative_Carnot_y.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Validation_Comparative_ConstantCarnotEffectiveness.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Validation_Comparative_TableData2D.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Validation_ConstantCarnotEffectiveness.txt │ │ │ ├── AixLib_Fluid_HeatPumps_ModularReversible_Validation_TableData2D.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_Carnot_TCon_LimitedCapacity.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_Carnot_TCon_LowTemperature.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_Carnot_TCon_etaPL.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_Carnot_TCon_reverseFlow.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_Carnot_y_etaCar.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_Carnot_y_etaPL.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_ReciprocatingWaterToWater_Dynamic.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_ReciprocatingWaterToWater_ScalingFactor.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_ReciprocatingWaterToWater_Static.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_ReciprocatingWaterToWater_VariableSpeed.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_ScrollWaterToWater_Dynamic.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_ScrollWaterToWater_ScalingFactor.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_ScrollWaterToWater_Static.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_ScrollWaterToWater_TemperatureProtection.txt │ │ │ ├── AixLib_Fluid_HeatPumps_Validation_ScrollWaterToWater_VariableSpeed.txt │ │ │ ├── AixLib_Fluid_Humidifiers_Examples_Humidifier_u.txt │ │ │ ├── AixLib_Fluid_Humidifiers_Validation_SprayAirWasher_X.txt │ │ │ ├── AixLib_Fluid_Humidifiers_Validation_SprayAirWasher_X_dynamic.txt │ │ │ ├── AixLib_Fluid_Humidifiers_Validation_SteamHumidifier_X.txt │ │ │ ├── AixLib_Fluid_Humidifiers_Validation_SteamHumidifier_X_dynamic.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_ConservationEquation.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_EightPortHeatMassExchanger.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_FourPortHeatMassExchanger.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_HeaterCooler_u.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_Humidifier_u.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_PrescribedOutlet.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_PrescribedOutletState.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_PrescribedOutlet_TSetOnly.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_PrescribedOutlet_Water.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_PrescribedOutlet_X_wSetOnly.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_ReverseFlowHumidifier.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_ReverseFlowMassExchanger.txt │ │ │ ├── AixLib_Fluid_Interfaces_Examples_StaticTwoPortConservationEquation.txt │ │ │ ├── AixLib_Fluid_MassExchangers_Examples_ConstantEffectiveness.txt │ │ │ ├── AixLib_Fluid_MassExchangers_Examples_Humidifier_u.txt │ │ │ ├── AixLib_Fluid_MassExchangers_MembraneBasedEnthalpyExchangers_Examples_Test_EnthalpyExchanger.txt │ │ │ ├── AixLib_Fluid_MassExchangers_MembraneBasedEnthalpyExchangers_Validation_DynamicValidation.txt │ │ │ ├── AixLib_Fluid_MassExchangers_MembraneBasedEnthalpyExchangers_Validation_StaticValidation.txt │ │ │ ├── AixLib_Fluid_MassExchangers_Validation_ConstantEffectivenessZeroFlow.txt │ │ │ ├── AixLib_Fluid_MassExchangers_Validation_ConstantEffectivenessZeroFlowBothStreams.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_BaseClasses_Validation_MixingVolumeHeatMoisturePort.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_BaseClasses_Validation_MixingVolumeHeatPortAir.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_BaseClasses_Validation_MixingVolumeHeatPortWater.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Examples_MixingVolume.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Examples_MixingVolumeHeatConduction.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Examples_MixingVolumeInitialization.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Examples_MixingVolumeMFactor.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Examples_MixingVolumeMassFlow.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Examples_MixingVolumeMoistAir.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Examples_MixingVolumePrescribedHeatFlowRate.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Examples_MixingVolumeSteadyStateMass.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_CoupledVolumesAir.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_CoupledVolumesGlycol47.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_CoupledVolumesSpecializedAirPerfectGas.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_CoupledVolumesSpecializedWaterConstantProperties_pT.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_CoupledVolumesSpecializedWaterTemperatureDependentDensity.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_CoupledVolumesWater.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MSLCombustionAir.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MSLFlueGasSixComponents.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolume.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeAdiabaticCooling.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeHeatReverseFlow.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeHeatReverseFlowPrescribedHeatFlowRate.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeInitialization.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeMFactor.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeMassFlow.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeMoistureReverseFlow.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeMoistureReverseFlowPrescribedHeatFlowRate.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeSteadyStateMass.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeTraceSubstance.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeTraceSubstanceReverseFlow.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeTraceSubstanceReverseFlowPrescribedHeatFlowRate.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MixingVolumeZeroFlow.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MoistureMixingConservationDynamicBalance.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_MoistureMixingConservationSteadyState.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_TraceSubstanceConservationDynamicBalance.txt │ │ │ ├── AixLib_Fluid_MixingVolumes_Validation_TraceSubstanceConservationSteadyState.txt │ │ │ ├── AixLib_Fluid_Movers_BaseClasses_Validation_EulerComparison.txt │ │ │ ├── AixLib_Fluid_Movers_BaseClasses_Validation_EulerCurve.txt │ │ │ ├── AixLib_Fluid_Movers_BaseClasses_Validation_EulerReducedSpeed.txt │ │ │ ├── AixLib_Fluid_Movers_BaseClasses_Validation_FlowMachineInterface.txt │ │ │ ├── AixLib_Fluid_Movers_BaseClasses_Validation_HydraulicEfficiencyMethods.txt │ │ │ ├── AixLib_Fluid_Movers_BaseClasses_Validation_MotorEfficiencyMethods.txt │ │ │ ├── AixLib_Fluid_Movers_BaseClasses_Validation_NegativePressureOrFlow.txt │ │ │ ├── AixLib_Fluid_Movers_BaseClasses_Validation_PowerInterface.txt │ │ │ ├── AixLib_Fluid_Movers_BaseClasses_Validation_TotalEfficiencyMethods.txt │ │ │ ├── AixLib_Fluid_Movers_DpControlledMovers_Examples_DpConst.txt │ │ │ ├── AixLib_Fluid_Movers_DpControlledMovers_Examples_DpVar.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_ClosedLoop_y.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_ControlledFlowMachine.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_ControlledFlowMachineDynamic.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_FlowMachineFeedbackControl.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_FlowMachineParallel_y.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_FlowMachineSeries_y.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_FlowMachine_Nrpm.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_FlowMachine_dp.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_FlowMachine_m_flow.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_FlowMachine_y.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_FlowMachine_y_linear.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_FlowMachine_y_pumpCurves.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_MoverContinuous.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_MoverParameter.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_MoverStages.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_PumpsParallel.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_PumpsSeries.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_SpeedControlled_y_pumpCurves.txt │ │ │ ├── AixLib_Fluid_Movers_Examples_StaticReset.txt │ │ │ ├── AixLib_Fluid_Movers_Preconfigured_Validation_ControlledFlowMachinePreconfigured.txt │ │ │ ├── AixLib_Fluid_Movers_PumpsPolynomialBased_Examples_PumpHeadControlled.txt │ │ │ ├── AixLib_Fluid_Movers_PumpsPolynomialBased_Examples_PumpSpeedControlled.txt │ │ │ ├── AixLib_Fluid_Movers_PumpsPolynomialBased_Examples_PumpSpeedControlledDpV.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_ComparePowerHydraulic.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_ComparePowerInput.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_ComparePowerTotal.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_ControlledFlowMachine.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_ControlledFlowMachineDynamic.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_FlowControlled_dp.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_FlowControlled_dpSystem.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_FlowControlled_m_flow.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_Power.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_PressureCurve.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_PumpCurveConstruction.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_PumpCurveDerivatives.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_Pump_stratos.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_Pump_y_stratos.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_SpeedControlled_y.txt │ │ │ ├── AixLib_Fluid_Movers_Validation_SpeedControlled_y_linear.txt │ │ │ ├── AixLib_Fluid_Pools_Examples_IndoorSwimmingPool.txt │ │ │ ├── AixLib_Fluid_Pools_Examples_IndoorSwimmingPoolExternalHeatingSystem.txt │ │ │ ├── AixLib_Fluid_Sensors_Conversions_Examples_To_VolumeFraction.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_Density.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_EnthalpyFlowRate.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_EntropyFlowRate.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_HeatMeter.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_MassFraction.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_MoistAirEnthalpyFlowRate.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_PPM.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_Pressure.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_RelativeHumidity.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_SpecificEnthalpy.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_SpecificEntropy.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_TemperatureDryBulb.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_TemperatureWetBulb.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_TraceSubstances.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_Velocity.txt │ │ │ ├── AixLib_Fluid_Sensors_Examples_VolumeFlowRate.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_BaseClasses_Examples_ASHRAEHeatLoss.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_BaseClasses_Examples_ASHRAESolarGain.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_BaseClasses_Examples_EN12975HeatLoss.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_BaseClasses_Examples_EN12975SolarGain.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Controls_BaseClasses_Examples_GCritCalc.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Controls_Examples_SolarPumpController.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Examples_Concentrating.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Examples_FlatPlate.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Examples_FlatPlateShaCoeTrue.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Examples_FlatPlateTotalArea.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Examples_FlatPlateWithTank.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Examples_Tubular.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_PhotovoltaicThermal_Examples_PhotovoltaicThermal.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Validation_EN12975NPanels.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Validation_EN12975_Array.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Validation_EN12975_Series.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Validation_ExtremeAmbientConditions.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Validation_FlatPlate.txt │ │ │ ├── AixLib_Fluid_SolarCollectors_Validation_FlatPlateNPanels.txt │ │ │ ├── AixLib_Fluid_Solar_Thermal_Examples_SolarThermalCollector.txt │ │ │ ├── AixLib_Fluid_Sources_Examples_MassFlowSource_WeatherData.txt │ │ │ ├── AixLib_Fluid_Sources_Examples_Outside.txt │ │ │ ├── AixLib_Fluid_Sources_Examples_Outside_CpData.txt │ │ │ ├── AixLib_Fluid_Sources_Examples_Outside_CpData_Angles.txt │ │ │ ├── AixLib_Fluid_Sources_Examples_Outside_CpData_Specification.txt │ │ │ ├── AixLib_Fluid_Sources_Examples_Outside_CpLowRise.txt │ │ │ ├── AixLib_Fluid_Sources_Examples_PropertySource_T.txt │ │ │ ├── AixLib_Fluid_Sources_Examples_PropertySource_h.txt │ │ │ ├── AixLib_Fluid_Sources_Examples_TraceSubstancesFlowSource.txt │ │ │ ├── AixLib_Fluid_Sources_Validation_Boundary.txt │ │ │ ├── AixLib_Fluid_Sources_Validation_BoundaryWithX_in.txt │ │ │ ├── AixLib_Fluid_Sources_Validation_BoundaryWithXi_in.txt │ │ │ ├── AixLib_Fluid_Sources_Validation_Outside_CpData_Directions.txt │ │ │ ├── AixLib_Fluid_Storage_BaseClasses_Examples_IndirectTankHeatExchanger.txt │ │ │ ├── AixLib_Fluid_Storage_Examples_ExpansionVessel.txt │ │ │ ├── AixLib_Fluid_Storage_Examples_StorageBoiler.txt │ │ │ ├── AixLib_Fluid_Storage_Examples_StorageDetailedExample.txt │ │ │ ├── AixLib_Fluid_Storage_Examples_StorageSimpleExample.txt │ │ │ ├── AixLib_Fluid_Storage_Examples_StorageSolarCollector.txt │ │ │ ├── AixLib_Fluid_Storage_Examples_Stratified.txt │ │ │ ├── AixLib_Fluid_Storage_Examples_StratifiedEnhancedInternalHex.txt │ │ │ ├── AixLib_Fluid_Storage_Examples_StratifiedUnloadAtMinimumTemperature.txt │ │ │ ├── AixLib_Fluid_Storage_Validation_HeatExchangerDynamics.txt │ │ │ ├── AixLib_Fluid_Storage_Validation_HeatExchangerLocation.txt │ │ │ ├── AixLib_Fluid_Storage_Validation_StratifiedLoadingUnloading.txt │ │ │ ├── AixLib_Fluid_Storage_Validation_StratifiedNonUniformInitial.txt │ │ │ ├── AixLib_Media_Antifreeze_Validation_EthyleneGlycolWater.txt │ │ │ ├── AixLib_Media_Antifreeze_Validation_PropyleneGlycolWater.txt │ │ │ ├── AixLib_Media_Examples_AirDerivativeCheck.txt │ │ │ ├── AixLib_Media_Examples_AirProperties.txt │ │ │ ├── AixLib_Media_Examples_AirTemperatureEnthalpyInversion.txt │ │ │ ├── AixLib_Media_Examples_PropyleneGlycolWaterDerivativeCheck.txt │ │ │ ├── AixLib_Media_Examples_PropyleneGlycolWaterProperties.txt │ │ │ ├── AixLib_Media_Examples_PropyleneGlycolWaterTemperatureEnthalpyInversion.txt │ │ │ ├── AixLib_Media_Examples_SteamDerivativeCheck.txt │ │ │ ├── AixLib_Media_Examples_SteamProperties.txt │ │ │ ├── AixLib_Media_Examples_SteamSaturationConsistencyCheck.txt │ │ │ ├── AixLib_Media_Examples_SteamTemperatureEnthalpyInversion.txt │ │ │ ├── AixLib_Media_Examples_WaterDerivativeCheck.txt │ │ │ ├── AixLib_Media_Examples_WaterProperties.txt │ │ │ ├── AixLib_Media_Examples_WaterTemperatureEnthalpyInversion.txt │ │ │ ├── AixLib_Media_Refrigerants_Validation_R410A_dSpecificVolumeVap_pT.txt │ │ │ ├── AixLib_Media_Specialized_Air_Examples_PerfectGasDerivativeCheck.txt │ │ │ ├── AixLib_Media_Specialized_Air_Examples_PerfectGasTemperatureEnthalpyInversion.txt │ │ │ ├── AixLib_Media_Specialized_Air_Examples_TestPerfectGas.txt │ │ │ ├── AixLib_Media_Specialized_Water_Examples_TemperatureDependentDensityDerivativeCheck.txt │ │ │ ├── AixLib_Media_Specialized_Water_Examples_TemperatureDependentDensityProperties.txt │ │ │ ├── AixLib_Media_Specialized_Water_Examples_TemperatureDependentDensityTemperatureEnthalpyInversion.txt │ │ │ ├── AixLib_Media_Specialized_Water_Examples_WaterProperties_pT.txt │ │ │ ├── AixLib_Media_Water_Examples_DetailedDerivativeCheck.txt │ │ │ ├── AixLib_Media_Water_Examples_DetailedProperties.txt │ │ │ ├── AixLib_Media_Water_Examples_DetailedTemperatureEnthalpyInversion.txt │ │ │ ├── AixLib_Media_Water_Examples_DetailedTestImplementation.txt │ │ │ ├── AixLib_Media_Water_Examples_SimpleDerivativeCheck.txt │ │ │ ├── AixLib_Media_Water_Examples_SimpleProperties.txt │ │ │ ├── AixLib_Media_Water_Examples_SimpleTemperatureEnthalpyInversion.txt │ │ │ ├── AixLib_Media_Water_Examples_SimpleTestImplementation.txt │ │ │ ├── AixLib_Obsolete_Year2024_Fluid_Chillers_Examples_Chiller.txt │ │ │ ├── AixLib_Obsolete_Year2024_Fluid_HeatPumps_Examples_HeatPump.txt │ │ │ ├── AixLib_Obsolete_Year2024_Systems_HeatPumpSystems_Examples_HeatPumpSystem.txt │ │ │ ├── AixLib_Systems_HydraulicModules_Examples_Admix.txt │ │ │ ├── AixLib_Systems_HydraulicModules_Examples_Injection.txt │ │ │ ├── AixLib_Systems_HydraulicModules_Examples_Injection2WayValve.txt │ │ │ ├── AixLib_Systems_HydraulicModules_Examples_Pump.txt │ │ │ ├── AixLib_Systems_HydraulicModules_Examples_Throttle.txt │ │ │ ├── AixLib_Systems_HydraulicModules_Examples_ThrottlePump.txt │ │ │ ├── AixLib_Systems_ModularAHU_Examples_DemandControlledAHU.txt │ │ │ ├── AixLib_Systems_ModularAHU_Examples_GenericAHU.txt │ │ │ ├── AixLib_Systems_ModularAHU_Examples_Heater.txt │ │ │ ├── AixLib_Systems_ModularAHU_Validation_AHU2_Cooler.txt │ │ │ ├── AixLib_Systems_ModularAHU_Validation_AHU2_Heater.txt │ │ │ ├── AixLib_Systems_ModularAHU_Validation_AHU2_Preheater.txt │ │ │ ├── AixLib_Systems_ScalableGenerationModules_Examples_ScalableBoilerConstantSup.txt │ │ │ ├── AixLib_Systems_ScalableGenerationModules_Examples_ScalableBoilerFeedback.txt │ │ │ ├── AixLib_Systems_ScalableGenerationModules_Examples_ScalableBoilerHeatingCurve.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Examples_ASHREA140_CompareDynamicAndStaticSolarFrac_Case270.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Examples_OFDHeatLoad.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Examples_RoomGFOw2_DayNightMode.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case210.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case220.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case230.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case240.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case250.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case270.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case280.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case300.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case320.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case395.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case400.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case410.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case420.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case430.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case440.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case600.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case600FF.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case620.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case640.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case650.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case650FF.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case800.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case810.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case900.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case900FF.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case920.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case940.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case950.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_ASHRAE140_Case950FF.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_EmpiricalValidation_TwinHouseN2.txt │ │ │ ├── AixLib_ThermalZones_HighOrder_Validation_EmpiricalValidation_Warehouse.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Examples_FreeFloating.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Examples_FreeFloatingHVAC.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Examples_HeatingCooling.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Examples_HeatingCoolingHVAC.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Case600.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Case600FF.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Case900.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Case900FF.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case600.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case600FF.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case610.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case620.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case630.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case640.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case650.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case650FF.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case660.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case670.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case680.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case680FF.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case685.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases6xx_Case695.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases9xx_Case900.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases9xx_Case900FF.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases9xx_Case910.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases9xx_Case920.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases9xx_Case930.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases9xx_Case940.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases9xx_Case950.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases9xx_Case950FF.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases9xx_Case980.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases9xx_Case980FF.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases9xx_Case985.txt │ │ │ ├── AixLib_ThermalZones_ISO13790_Validation_BESTEST_Cases9xx_Case995.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_ComparisonThermalZoneMoistAndDryAir.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_Multizone.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_MultizoneEquipped.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_MultizoneInterzonalsFixedHeater.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2Equipped.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_MultizoneMoistAirCO2EquippedSwimmingFacility.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_MultizonePartlyCooled.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElements.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomFourElementsTraceSubstance.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomOneElement.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomThreeElements.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomTwoElements.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_SimpleRoomTwoElementsNonConstantTGround.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_ThermalZone.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_ThermalZoneAirExchange.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_ThermalZoneMoistAir.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_ThermalZoneMoistAirSwimmingPool.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Examples_ThermalZoneMoistCO2AirExchange.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_RoomSteadyState.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_RoomWithLatentGain.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_RoomWithoutLatentGain.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase1.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase10.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase11.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase12.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase2.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase3.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase4.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase5.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase6.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase7.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase8.txt │ │ │ ├── AixLib_ThermalZones_ReducedOrder_Validation_VDI6007_TestCase9.txt │ │ │ ├── AixLib_Utilities_Clustering_Validation_KMeans_1d.txt │ │ │ ├── AixLib_Utilities_Clustering_Validation_KMeans_2d.txt │ │ │ ├── AixLib_Utilities_Cryptographics_Validation_SHA1.txt │ │ │ ├── AixLib_Utilities_Diagnostics_Validation_CheckEquality.txt │ │ │ ├── AixLib_Utilities_IO_Files_Examples_CSVReader.txt │ │ │ ├── AixLib_Utilities_IO_Files_Examples_CSVWriter.txt │ │ │ ├── AixLib_Utilities_IO_Files_Examples_JSONWriter.txt │ │ │ ├── AixLib_Utilities_IO_Files_Examples_WeeklySchedule.txt │ │ │ ├── AixLib_Utilities_IO_Files_Examples_WeeklySchedule7to19.txt │ │ │ ├── AixLib_Utilities_IO_Files_Validation_WeeklyScheduleWindowsLineEndings.txt │ │ │ ├── AixLib_Utilities_IO_SignalExchange_Examples_FirstOrder.txt │ │ │ ├── AixLib_Utilities_IO_SignalExchange_Examples_WeatherStation.txt │ │ │ ├── AixLib_Utilities_KPIs_Examples_Co2Kpis.txt │ │ │ ├── AixLib_Utilities_KPIs_Examples_EnergyKpis.txt │ │ │ ├── AixLib_Utilities_KPIs_Examples_IntegralErrorDualReference.txt │ │ │ ├── AixLib_Utilities_KPIs_Examples_IntegralErrorSingleReference.txt │ │ │ ├── AixLib_Utilities_KPIs_Examples_TemperatureKpis.txt │ │ │ ├── AixLib_Utilities_Math_Examples_Average.txt │ │ │ ├── AixLib_Utilities_Math_Examples_BesselJ0.txt │ │ │ ├── AixLib_Utilities_Math_Examples_BesselJ1.txt │ │ │ ├── AixLib_Utilities_Math_Examples_BesselY0.txt │ │ │ ├── AixLib_Utilities_Math_Examples_BesselY1.txt │ │ │ ├── AixLib_Utilities_Math_Examples_Bicubic.txt │ │ │ ├── AixLib_Utilities_Math_Examples_Binomial.txt │ │ │ ├── AixLib_Utilities_Math_Examples_Biquadratic.txt │ │ │ ├── AixLib_Utilities_Math_Examples_BooleanReplicator.txt │ │ │ ├── AixLib_Utilities_Math_Examples_ExponentialIntegralE1.txt │ │ │ ├── AixLib_Utilities_Math_Examples_Factorial.txt │ │ │ ├── AixLib_Utilities_Math_Examples_FallingFactorial.txt │ │ │ ├── AixLib_Utilities_Math_Examples_IntegerReplicator.txt │ │ │ ├── AixLib_Utilities_Math_Examples_IntegratorWithReset.txt │ │ │ ├── AixLib_Utilities_Math_Examples_Interpolate.txt │ │ │ ├── AixLib_Utilities_Math_Examples_InverseXRegularized.txt │ │ │ ├── AixLib_Utilities_Math_Examples_MovingAverage.txt │ │ │ ├── AixLib_Utilities_Math_Examples_Polynomial.txt │ │ │ ├── AixLib_Utilities_Math_Examples_Polynominal.txt │ │ │ ├── AixLib_Utilities_Math_Examples_PowerLinearized.txt │ │ │ ├── AixLib_Utilities_Math_Examples_QuadraticLinear.txt │ │ │ ├── AixLib_Utilities_Math_Examples_RegNonZeroPower.txt │ │ │ ├── AixLib_Utilities_Math_Examples_SmoothBlocks.txt │ │ │ ├── AixLib_Utilities_Math_Examples_SmoothExponential.txt │ │ │ ├── AixLib_Utilities_Math_Examples_SmoothHeaviside.txt │ │ │ ├── AixLib_Utilities_Math_Examples_SmoothLimit.txt │ │ │ ├── AixLib_Utilities_Math_Examples_SmoothMin.txt │ │ │ ├── AixLib_Utilities_Math_Examples_Splice.txt │ │ │ ├── AixLib_Utilities_Math_Examples_VectorFunctions.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_BesselJ0.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_BesselJ1.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_BesselY0.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_BesselY1.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_Binomial.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_CubicHermite.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_ExponentialIntegralE1.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_Factorial.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_FallingFactorial.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_Interpolate.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_InverseXDerivativeCheck.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_InverseXDerivative_2_Check.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_InverseXRegularized.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_IsMonotonic.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_Polynomial.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_PolynomialDerivativeCheck.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_PowerLinearized.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_QuinticHermite.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_RegNonZeroPower.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_RegNonZeroPowerDerivativeCheck.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_RegNonZeroPowerDerivative_2_Check.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_RegStep.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_Round.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_SmoothExponentialDerivativeCheck.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_SmoothHeavisideDerivatives.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_SmoothInterpolation.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_SpliceFunction.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_SpliceFunctionDerivativeCheck.txt │ │ │ ├── AixLib_Utilities_Math_Functions_Examples_TrapezoidalIntegration.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Examples_Density_pTX.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Examples_DewPointTemperature.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Examples_HumidityRatioPressure.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Examples_MassFraction_pTphi.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Examples_Phi_pTX.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Examples_SaturationPressure.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Examples_SaturationPressureLiquid.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Examples_SublimationPressureIce.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Examples_TWetBul_TDryBulPhi.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Examples_TWetBul_TDryBulXi.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Examples_TotalAirDryAir.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Examples_WetBul_pTX.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Functions_BaseClasses_Examples_DewPointTemperatureDerivativeCheck.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Functions_BaseClasses_Examples_DewPointTemperatureDerivativeCheck_amb.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Functions_BaseClasses_Examples_InverseDewPointTemperatureDerivativeCheck_amb.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Functions_BaseClasses_Examples_SaturationPressureDerivativeCheck.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Functions_BaseClasses_Examples_WaterVaporPressureDerivativeCheck.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Functions_Examples_Density_pTX.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Functions_Examples_SaturationPressure.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Functions_Examples_X_pSatpphi.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Functions_Examples_pW_TDewPoi.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Functions_Examples_pW_TDewPoi_comparison.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Functions_Examples_pW_X.txt │ │ │ ├── AixLib_Utilities_Psychrometrics_Functions_Examples_phi_pTX.txt │ │ │ ├── AixLib_Utilities_Sensors_Examples_ExergyMeters.txt │ │ │ ├── AixLib_Utilities_Time_Examples_CalendarTime.txt │ │ │ ├── AixLib_Utilities_Time_Examples_ModelTime.txt │ │ │ ├── AixLib_Utilities_Time_Validation_CalendarTimeMonths.txt │ │ │ ├── AixLib_Utilities_Time_Validation_CalendarTimeMonthsMinus.txt │ │ │ └── AixLib_Utilities_Time_Validation_CalendarTimeMonthsPlus.txt │ ├── Scripts │ │ ├── Conversion │ │ │ └── ConvertIBPSA_from_3.0_to_4.0.mos │ │ ├── ConvertAixLib_from_0.10.0_to_0.10.1.mos │ │ ├── ConvertAixLib_from_0.10.1_to_0.10.2.mos │ │ ├── ConvertAixLib_from_0.10.2_to_0.10.3.mos │ │ ├── ConvertAixLib_from_0.10.3_to_0.10.4.mos │ │ ├── ConvertAixLib_from_0.10.4_to_0.10.5.mos │ │ ├── ConvertAixLib_from_0.10.5_to_0.10.6.mos │ │ ├── ConvertAixLib_from_0.10.6_to_0.10.7.mos │ │ ├── ConvertAixLib_from_0.10.7_to_0.11.0.mos │ │ ├── ConvertAixLib_from_0.11.0_to_0.11.1.mos │ │ ├── ConvertAixLib_from_0.11.1_to_0.12.0.mos │ │ ├── ConvertAixLib_from_0.12.0_to_0.12.1.mos │ │ ├── ConvertAixLib_from_0.3.2_to_0.4.mos │ │ ├── ConvertAixLib_from_0.5.0_to_0.5.1.mos │ │ ├── ConvertAixLib_from_0.5.2_to_0.5.3.mos │ │ ├── ConvertAixLib_from_0.5.3_to_0.5.4.mos │ │ ├── ConvertAixLib_from_0.5.4_to_0.5.5.mos │ │ ├── ConvertAixLib_from_0.6.0_to_0.7.0.mos │ │ ├── ConvertAixLib_from_0.7.10_to_0.7.11.mos │ │ ├── ConvertAixLib_from_0.7.11_to_0.7.12.mos │ │ ├── ConvertAixLib_from_0.7.12_to_0.8.0.mos │ │ ├── ConvertAixLib_from_0.7.3_to_0.7.4.mos │ │ ├── ConvertAixLib_from_0.7.4_to_0.7.5.mos │ │ ├── ConvertAixLib_from_0.7.5_to_0.7.6.mos │ │ ├── ConvertAixLib_from_0.7.6_to_0.7.7.mos │ │ ├── ConvertAixLib_from_0.7.7_to_0.7.8.mos │ │ ├── ConvertAixLib_from_0.7.8_to_0.7.9.mos │ │ ├── ConvertAixLib_from_0.7.9_to_0.7.10.mos │ │ ├── ConvertAixLib_from_0.8.0_to_0.8.1.mos │ │ ├── ConvertAixLib_from_0.8.1_to_0.8.2.mos │ │ ├── ConvertAixLib_from_0.8.2_to_0.8.3.mos │ │ ├── ConvertAixLib_from_0.8.3_to_0.8.4.mos │ │ ├── ConvertAixLib_from_0.9.1_to_0.9.2.mos │ │ ├── ConvertAixLib_from_0.9.2_to_0.9.3.mos │ │ ├── ConvertAixLib_from_0.9.3_to_0.9.4.mos │ │ ├── ConvertAixLib_from_0.9.4_to_0.10.0.mos │ │ ├── ConvertAixLib_from_1.0.1_to_1.0.2.mos │ │ ├── ConvertAixLib_from_1.0.2_to_1.0.3.mos │ │ ├── ConvertAixLib_from_1.0.3_to_1.0.4.mos │ │ ├── ConvertAixLib_from_1.0.3_to_1.1.0.mos │ │ ├── ConvertAixLib_from_1.1.0_to_1.2.0.mos │ │ ├── ConvertAixLib_from_1.2.0_to_1.2.1.mos │ │ ├── ConvertAixLib_from_1.2.1_to_1.2.2.mos │ │ ├── ConvertAixLib_from_1.3.0_to_1.3.1.mos │ │ ├── ConvertAixLib_from_1.3.1_to_1.3.2.mos │ │ ├── ConvertAixLib_from_1.4.0_to_1.4.1.mos │ │ ├── ConvertAixLib_from_1.4.1_to_2.0.0.mos │ │ ├── ConvertAixLib_from_2.0.0_to_2.0.1.mos │ │ ├── ConvertAixLib_from_2.0.0_to_2.1.0.mos │ │ ├── ConvertAixLib_from_2.1.0_to_2.1.1.mos │ │ ├── ConvertAixLib_from_2.1.1_to_2.1.2.mos │ │ ├── ConvertAixLib_from_2.1.2_to_2.2.0.mos │ │ ├── ConvertAixLib_from_2.2.0_to_3.0.0.mos │ │ ├── ConvertHeatPumpToModularReversible.mos │ │ ├── Dymola │ │ │ ├── Airflow │ │ │ │ ├── AirHandlingUnit │ │ │ │ │ ├── Examples │ │ │ │ │ │ └── AHU.mos │ │ │ │ │ └── ModularAirHandlingUnit │ │ │ │ │ │ ├── Components │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── Cooler.mos │ │ │ │ │ │ │ ├── Fan.mos │ │ │ │ │ │ │ ├── Heater.mos │ │ │ │ │ │ │ ├── SensibleCooler.mos │ │ │ │ │ │ │ ├── SprayHumidifier.mos │ │ │ │ │ │ │ └── SteamHumidifier.mos │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ └── ExampleAHU.mos │ │ │ │ │ │ └── Verification │ │ │ │ │ │ └── ComparisonToAHU.mos │ │ │ │ ├── Multizone │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── PowerLaw.mos │ │ │ │ │ │ │ ├── PowerLawFixedM.mos │ │ │ │ │ │ │ ├── WindPressureLowRise.mos │ │ │ │ │ │ │ └── WindPressureProfile.mos │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── CO2TransportStep.mos │ │ │ │ │ │ ├── ChimneyShaftNoVolume.mos │ │ │ │ │ │ ├── ChimneyShaftWithVolume.mos │ │ │ │ │ │ ├── ClosedDoors.mos │ │ │ │ │ │ ├── NaturalVentilation.mos │ │ │ │ │ │ ├── OneEffectiveAirLeakageArea.mos │ │ │ │ │ │ ├── OneOpenDoor.mos │ │ │ │ │ │ ├── OneRoom.mos │ │ │ │ │ │ ├── Orifice.mos │ │ │ │ │ │ ├── PowerLaw.mos │ │ │ │ │ │ ├── PressurizationData.mos │ │ │ │ │ │ ├── ReverseBuoyancy.mos │ │ │ │ │ │ ├── ReverseBuoyancy3Zones.mos │ │ │ │ │ │ ├── TrickleVent.mos │ │ │ │ │ │ └── ZonalFlow.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── DoorOpenClosed.mos │ │ │ │ │ │ ├── OneWayFlow.mos │ │ │ │ │ │ ├── OpenDoorBuoyancyDynamic.mos │ │ │ │ │ │ ├── OpenDoorBuoyancyPressureDynamic.mos │ │ │ │ │ │ ├── OpenDoorPressure.mos │ │ │ │ │ │ ├── OpenDoorTemperature.mos │ │ │ │ │ │ ├── ThreeRoomsContam.mos │ │ │ │ │ │ └── ThreeRoomsContamDiscretizedDoor.mos │ │ │ │ └── WindowVentilation │ │ │ │ │ └── Examples │ │ │ │ │ ├── OpeningArea.mos │ │ │ │ │ ├── VentilationFlowRateSashOpening.mos │ │ │ │ │ └── VentilationFlowRateSimpleOpening.mos │ │ │ ├── BoundaryConditions │ │ │ │ ├── InternalGains │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── HumansSenTDep.mos │ │ │ │ │ │ ├── HumansSenTIndep.mos │ │ │ │ │ │ ├── HumansTotTDep.mos │ │ │ │ │ │ ├── Lights.mos │ │ │ │ │ │ ├── Machines.mos │ │ │ │ │ │ └── OneOffice.mos │ │ │ │ ├── SkyTemperature │ │ │ │ │ └── Examples │ │ │ │ │ │ └── BlackBody.mos │ │ │ │ ├── SolarGeometry │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── AltitudeAngle.mos │ │ │ │ │ │ │ ├── Declination.mos │ │ │ │ │ │ │ ├── IncidenceAngle.mos │ │ │ │ │ │ │ ├── SolarAzimuth.mos │ │ │ │ │ │ │ ├── SolarHourAngle.mos │ │ │ │ │ │ │ ├── WallSolarAzimuth.mos │ │ │ │ │ │ │ └── ZenithAngle.mos │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── IncidenceAngle.mos │ │ │ │ │ │ └── ZenithAngle.mos │ │ │ │ ├── SolarIrradiation │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── BrighteningCoefficient.mos │ │ │ │ │ │ │ ├── DiffuseIsotropic.mos │ │ │ │ │ │ │ ├── RelativeAirMass.mos │ │ │ │ │ │ │ ├── SkyBrightness.mos │ │ │ │ │ │ │ └── SkyClearness.mos │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── DiffuseIsotropic.mos │ │ │ │ │ │ ├── DiffusePerez.mos │ │ │ │ │ │ ├── DirectTiltedSurface.mos │ │ │ │ │ │ └── GlobalPerezTiltedSurface.mos │ │ │ │ ├── Validation │ │ │ │ │ └── BESTEST │ │ │ │ │ │ ├── WD100.mos │ │ │ │ │ │ ├── WD200.mos │ │ │ │ │ │ ├── WD300.mos │ │ │ │ │ │ ├── WD400.mos │ │ │ │ │ │ ├── WD500.mos │ │ │ │ │ │ └── WD600.mos │ │ │ │ └── WeatherData │ │ │ │ │ ├── BaseClasses │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── CheckBlackBodySkyTemperature.mos │ │ │ │ │ │ ├── CheckCeilingHeight.mos │ │ │ │ │ │ ├── CheckPressure.mos │ │ │ │ │ │ ├── CheckRadiation.mos │ │ │ │ │ │ ├── CheckRelativeHumidity.mos │ │ │ │ │ │ ├── CheckSkyCover.mos │ │ │ │ │ │ ├── CheckTemperature.mos │ │ │ │ │ │ ├── CheckWindDirection.mos │ │ │ │ │ │ ├── CheckWindSpeed.mos │ │ │ │ │ │ ├── ConvertRadiation.mos │ │ │ │ │ │ ├── ConvertRelativeHumidity.mos │ │ │ │ │ │ ├── ConvertTime.mos │ │ │ │ │ │ ├── ConvertTimeNegativeStart.mos │ │ │ │ │ │ ├── ConvertTimePositiveStart.mos │ │ │ │ │ │ ├── EquationOfTime.mos │ │ │ │ │ │ ├── GetAbsolutePath.mos │ │ │ │ │ │ ├── GetAltitudeTMY3.mos │ │ │ │ │ │ ├── GetHeaderElement.mos │ │ │ │ │ │ ├── GetTimeSpanTMY3.mos │ │ │ │ │ │ ├── GetTimeSpanTMY3LongHeader.mos │ │ │ │ │ │ ├── GetTimeSpanTMY3_NonzeroStart.mos │ │ │ │ │ │ ├── LimitMin.mos │ │ │ │ │ │ ├── LocalCivilTime.mos │ │ │ │ │ │ └── SolarTime.mos │ │ │ │ │ ├── Examples │ │ │ │ │ └── ReaderTMY3.mos │ │ │ │ │ └── Validation │ │ │ │ │ ├── DecemberToJanuary.mos │ │ │ │ │ ├── OverAYear_usingOneYearData.mos │ │ │ │ │ ├── ReaderTMY3HDirNor.mos │ │ │ │ │ ├── ThreeYears_usingTwoYearData.mos │ │ │ │ │ ├── ThreeYears_usingTwoYearDataNegativeStart.mos │ │ │ │ │ └── ThreeYears_usingTwoYearDataPositiveStart.mos │ │ │ ├── Controls │ │ │ │ ├── Continuous │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── LimPID.mos │ │ │ │ │ │ ├── LimPIDWithReset.mos │ │ │ │ │ │ ├── NumberOfRequests.mos │ │ │ │ │ │ ├── OffTimer.mos │ │ │ │ │ │ └── SignalRanker.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── LimPIDReset.mos │ │ │ │ │ │ └── OffTimerNonZeroStart.mos │ │ │ │ ├── Discrete │ │ │ │ │ └── Examples │ │ │ │ │ │ └── BooleanDelay.mos │ │ │ │ ├── OBC │ │ │ │ │ ├── CDL │ │ │ │ │ │ ├── Conversions │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ ├── BooleanToInteger.mos │ │ │ │ │ │ │ │ ├── BooleanToReal.mos │ │ │ │ │ │ │ │ ├── IntegerToReal.mos │ │ │ │ │ │ │ │ └── RealToInteger.mos │ │ │ │ │ │ ├── Discrete │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ ├── FirstOrderHold.mos │ │ │ │ │ │ │ │ ├── Sampler.mos │ │ │ │ │ │ │ │ ├── TriggeredMax.mos │ │ │ │ │ │ │ │ ├── TriggeredMovingMean.mos │ │ │ │ │ │ │ │ ├── TriggeredSampler.mos │ │ │ │ │ │ │ │ ├── UnitDelay.mos │ │ │ │ │ │ │ │ └── ZeroOrderHold.mos │ │ │ │ │ │ ├── Integers │ │ │ │ │ │ │ ├── Sources │ │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ │ ├── Constant.mos │ │ │ │ │ │ │ │ │ ├── Pulse.mos │ │ │ │ │ │ │ │ │ ├── TimeTable.mos │ │ │ │ │ │ │ │ │ └── TimeTableNegativeStartTime.mos │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ ├── Abs.mos │ │ │ │ │ │ │ │ ├── Add.mos │ │ │ │ │ │ │ │ ├── AddParameter.mos │ │ │ │ │ │ │ │ ├── Change.mos │ │ │ │ │ │ │ │ ├── Equal.mos │ │ │ │ │ │ │ │ ├── Greater.mos │ │ │ │ │ │ │ │ ├── GreaterEqual.mos │ │ │ │ │ │ │ │ ├── GreaterEqualThreshold.mos │ │ │ │ │ │ │ │ ├── GreaterThreshold.mos │ │ │ │ │ │ │ │ ├── Less.mos │ │ │ │ │ │ │ │ ├── LessEqual.mos │ │ │ │ │ │ │ │ ├── LessEqualThreshold.mos │ │ │ │ │ │ │ │ ├── LessThreshold.mos │ │ │ │ │ │ │ │ ├── Max.mos │ │ │ │ │ │ │ │ ├── Min.mos │ │ │ │ │ │ │ │ ├── MultiSum.mos │ │ │ │ │ │ │ │ ├── Multiply.mos │ │ │ │ │ │ │ │ ├── OnCounter.mos │ │ │ │ │ │ │ │ ├── Stage.mos │ │ │ │ │ │ │ │ ├── Subtract.mos │ │ │ │ │ │ │ │ └── Switch.mos │ │ │ │ │ │ ├── Logical │ │ │ │ │ │ │ ├── Sources │ │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ │ ├── Constant.mos │ │ │ │ │ │ │ │ │ ├── Pulse.mos │ │ │ │ │ │ │ │ │ ├── PulseNegativeStartTime.mos │ │ │ │ │ │ │ │ │ ├── PulsePositiveStartTime.mos │ │ │ │ │ │ │ │ │ ├── SampleTrigger.mos │ │ │ │ │ │ │ │ │ ├── SampleTriggerNegativeStartTime.mos │ │ │ │ │ │ │ │ │ ├── SampleTriggerPositiveStartTime.mos │ │ │ │ │ │ │ │ │ ├── TimeTable.mos │ │ │ │ │ │ │ │ │ └── TimeTableNegativeStartTime.mos │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ ├── And.mos │ │ │ │ │ │ │ │ ├── Change.mos │ │ │ │ │ │ │ │ ├── Edge.mos │ │ │ │ │ │ │ │ ├── FallingEdge.mos │ │ │ │ │ │ │ │ ├── Latch.mos │ │ │ │ │ │ │ │ ├── MultiAnd.mos │ │ │ │ │ │ │ │ ├── MultiOr.mos │ │ │ │ │ │ │ │ ├── Nand.mos │ │ │ │ │ │ │ │ ├── Nor.mos │ │ │ │ │ │ │ │ ├── Not.mos │ │ │ │ │ │ │ │ ├── Or.mos │ │ │ │ │ │ │ │ ├── Proof.mos │ │ │ │ │ │ │ │ ├── Switch.mos │ │ │ │ │ │ │ │ ├── Timer.mos │ │ │ │ │ │ │ │ ├── TimerAccumulating.mos │ │ │ │ │ │ │ │ ├── TimerAccumulatingNegativeStartTime.mos │ │ │ │ │ │ │ │ ├── TimerNegativeStartTime.mos │ │ │ │ │ │ │ │ ├── Toggle.mos │ │ │ │ │ │ │ │ ├── TrueDelay.mos │ │ │ │ │ │ │ │ ├── TrueFalseHold.mos │ │ │ │ │ │ │ │ ├── VariablePulse.mos │ │ │ │ │ │ │ │ ├── VariablePulseMinHold.mos │ │ │ │ │ │ │ │ └── Xor.mos │ │ │ │ │ │ ├── Psychrometrics │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ ├── DewPoint_TDryBulPhi.mos │ │ │ │ │ │ │ │ ├── SpecificEnthalpy_TDryBulPhi.mos │ │ │ │ │ │ │ │ └── WetBulb_TDryBulPhi.mos │ │ │ │ │ │ ├── Reals │ │ │ │ │ │ │ ├── Sources │ │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ │ ├── CalendarTimeMonths.mos │ │ │ │ │ │ │ │ │ ├── CalendarTimeMonthsMinus.mos │ │ │ │ │ │ │ │ │ ├── CalendarTimeMonthsPlus.mos │ │ │ │ │ │ │ │ │ ├── CivilTime.mos │ │ │ │ │ │ │ │ │ ├── Constant.mos │ │ │ │ │ │ │ │ │ ├── Pulse.mos │ │ │ │ │ │ │ │ │ ├── Ramp.mos │ │ │ │ │ │ │ │ │ ├── Sin.mos │ │ │ │ │ │ │ │ │ ├── TimeTable.mos │ │ │ │ │ │ │ │ │ └── TimeTableNegativeStartTime.mos │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ ├── Abs.mos │ │ │ │ │ │ │ │ ├── Acos.mos │ │ │ │ │ │ │ │ ├── Add.mos │ │ │ │ │ │ │ │ ├── AddParameter.mos │ │ │ │ │ │ │ │ ├── Asin.mos │ │ │ │ │ │ │ │ ├── Atan.mos │ │ │ │ │ │ │ │ ├── Atan2.mos │ │ │ │ │ │ │ │ ├── Average.mos │ │ │ │ │ │ │ │ ├── Cos.mos │ │ │ │ │ │ │ │ ├── Derivative.mos │ │ │ │ │ │ │ │ ├── Divide.mos │ │ │ │ │ │ │ │ ├── Exp.mos │ │ │ │ │ │ │ │ ├── Greater.mos │ │ │ │ │ │ │ │ ├── GreaterThreshold.mos │ │ │ │ │ │ │ │ ├── Hysteresis.mos │ │ │ │ │ │ │ │ ├── IntegratorWithReset.mos │ │ │ │ │ │ │ │ ├── Less.mos │ │ │ │ │ │ │ │ ├── LessThreshold.mos │ │ │ │ │ │ │ │ ├── LimitSlewRate.mos │ │ │ │ │ │ │ │ ├── Limiter.mos │ │ │ │ │ │ │ │ ├── Line.mos │ │ │ │ │ │ │ │ ├── Log.mos │ │ │ │ │ │ │ │ ├── Log10.mos │ │ │ │ │ │ │ │ ├── MatrixGain.mos │ │ │ │ │ │ │ │ ├── MatrixMax.mos │ │ │ │ │ │ │ │ ├── MatrixMin.mos │ │ │ │ │ │ │ │ ├── Max.mos │ │ │ │ │ │ │ │ ├── Min.mos │ │ │ │ │ │ │ │ ├── Modulo.mos │ │ │ │ │ │ │ │ ├── MovingAverage.mos │ │ │ │ │ │ │ │ ├── MovingAverage_nonZeroStart.mos │ │ │ │ │ │ │ │ ├── MultiMax.mos │ │ │ │ │ │ │ │ ├── MultiMin.mos │ │ │ │ │ │ │ │ ├── MultiSum.mos │ │ │ │ │ │ │ │ ├── Multiply.mos │ │ │ │ │ │ │ │ ├── MultiplyByParameter.mos │ │ │ │ │ │ │ │ ├── PID.mos │ │ │ │ │ │ │ │ ├── PIDInitialDerivativeOutput.mos │ │ │ │ │ │ │ │ ├── PIDInitialState.mos │ │ │ │ │ │ │ │ ├── PIDScale.mos │ │ │ │ │ │ │ │ ├── PIDWithReset.mos │ │ │ │ │ │ │ │ ├── PIDWithResetScale.mos │ │ │ │ │ │ │ │ ├── Ramp.mos │ │ │ │ │ │ │ │ ├── Round.mos │ │ │ │ │ │ │ │ ├── Sin.mos │ │ │ │ │ │ │ │ ├── Sort.mos │ │ │ │ │ │ │ │ ├── Sqrt.mos │ │ │ │ │ │ │ │ ├── Subtract.mos │ │ │ │ │ │ │ │ ├── Switch.mos │ │ │ │ │ │ │ │ └── Tan.mos │ │ │ │ │ │ ├── Routing │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ ├── BooleanExtractSignal.mos │ │ │ │ │ │ │ │ ├── BooleanExtractor.mos │ │ │ │ │ │ │ │ ├── BooleanScalarReplicator.mos │ │ │ │ │ │ │ │ ├── BooleanVectorFilter.mos │ │ │ │ │ │ │ │ ├── BooleanVectorReplicator.mos │ │ │ │ │ │ │ │ ├── IntegerExtractSignal.mos │ │ │ │ │ │ │ │ ├── IntegerExtractor.mos │ │ │ │ │ │ │ │ ├── IntegerScalarReplicator.mos │ │ │ │ │ │ │ │ ├── IntegerVectorFilter.mos │ │ │ │ │ │ │ │ ├── IntegerVectorReplicator.mos │ │ │ │ │ │ │ │ ├── RealExtractSignal.mos │ │ │ │ │ │ │ │ ├── RealExtractor.mos │ │ │ │ │ │ │ │ ├── RealScalarReplicator.mos │ │ │ │ │ │ │ │ ├── RealVectorFilter.mos │ │ │ │ │ │ │ │ └── RealVectorReplicator.mos │ │ │ │ │ │ └── Utilities │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── Assert.mos │ │ │ │ │ │ │ ├── SunRiseSet.mos │ │ │ │ │ │ │ ├── SunRiseSetNegativeStartTime.mos │ │ │ │ │ │ │ └── SunRiseSetPositiveStartTime.mos │ │ │ │ │ └── Utilities │ │ │ │ │ │ ├── SetPoints │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── SupplyReturnTemperatureReset.mos │ │ │ │ │ │ │ └── SupplyReturnTemperatureResetExponent.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── OptimalStartCoolingNegativeStartTime.mos │ │ │ │ │ │ ├── OptimalStartCoolingPositiveStartTime.mos │ │ │ │ │ │ ├── OptimalStartHeating.mos │ │ │ │ │ │ ├── OptimalStartHeatingCooling.mos │ │ │ │ │ │ ├── OptimalStartNoHeatingNoCooling.mos │ │ │ │ │ │ └── PIDWithInputGains.mos │ │ │ │ └── SetPoints │ │ │ │ │ ├── Examples │ │ │ │ │ ├── OccupancySchedule.mos │ │ │ │ │ ├── SupplyReturnTemperatureReset.mos │ │ │ │ │ └── Table.mos │ │ │ │ │ └── Validation │ │ │ │ │ ├── OccupancyScheduleNegativeStartTime.mos │ │ │ │ │ └── OccupancySchedulePositiveStartTime.mos │ │ │ ├── DataBase │ │ │ │ └── Pumps │ │ │ │ │ └── ControlPump │ │ │ │ │ └── Examples │ │ │ │ │ ├── testMaxMinHeightTable.mos │ │ │ │ │ ├── testPumpHeadCalculation.mos │ │ │ │ │ ├── testPumpPowerCalculation.mos │ │ │ │ │ └── testPumpSpeedCalculation.mos │ │ │ ├── Electrical │ │ │ │ ├── AC │ │ │ │ │ ├── OnePhase │ │ │ │ │ │ ├── Conversion │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ │ ├── ACACConverter.mos │ │ │ │ │ │ │ │ ├── ACACTransformer.mos │ │ │ │ │ │ │ │ ├── ACACTransformerFull.mos │ │ │ │ │ │ │ │ └── ACDCConverter.mos │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ │ ├── GeneratorLoadGrid.mos │ │ │ │ │ │ │ └── GridDCLoad.mos │ │ │ │ │ │ ├── Lines │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ │ ├── ACLine.mos │ │ │ │ │ │ │ │ ├── ACLine_L.mos │ │ │ │ │ │ │ │ ├── ACLine_R.mos │ │ │ │ │ │ │ │ ├── ACLine_RL.mos │ │ │ │ │ │ │ │ └── ACSimpleGrid.mos │ │ │ │ │ │ ├── Loads │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ │ ├── ParallelLoads.mos │ │ │ │ │ │ │ │ ├── ParallelResistors.mos │ │ │ │ │ │ │ │ ├── TestImpedance.mos │ │ │ │ │ │ │ │ ├── ThreePhases.mos │ │ │ │ │ │ │ │ └── VariableImpedance.mos │ │ │ │ │ │ ├── Sensors │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ │ ├── GeneralizedSensor.mos │ │ │ │ │ │ │ │ └── Probe.mos │ │ │ │ │ │ └── Sources │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── FixedVoltageSource.mos │ │ │ │ │ │ │ ├── VariablePowerSource.mos │ │ │ │ │ │ │ └── WindTurbine.mos │ │ │ │ │ ├── ThreePhasesBalanced │ │ │ │ │ │ ├── Conversion │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ │ ├── ACACConverter.mos │ │ │ │ │ │ │ │ ├── ACACTransformer.mos │ │ │ │ │ │ │ │ ├── ACACTransformerFull.mos │ │ │ │ │ │ │ │ └── ACDCConverter.mos │ │ │ │ │ │ ├── Lines │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ │ ├── ACLine.mos │ │ │ │ │ │ │ │ ├── ACLineMedium.mos │ │ │ │ │ │ │ │ ├── ACLine_L.mos │ │ │ │ │ │ │ │ ├── ACLine_R.mos │ │ │ │ │ │ │ │ ├── ACLine_RL.mos │ │ │ │ │ │ │ │ ├── ACSimpleGrid.mos │ │ │ │ │ │ │ │ └── ACSimpleGridMedium.mos │ │ │ │ │ │ ├── Loads │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ │ ├── Impedances.mos │ │ │ │ │ │ │ │ ├── ParallelLoads.mos │ │ │ │ │ │ │ │ └── ThreePhases.mos │ │ │ │ │ │ ├── Sensors │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ │ ├── GeneralizedSensor.mos │ │ │ │ │ │ │ │ └── Probe.mos │ │ │ │ │ │ └── Sources │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── FixedVoltageSource.mos │ │ │ │ │ │ │ └── VariablePowerSource.mos │ │ │ │ │ └── ThreePhasesUnbalanced │ │ │ │ │ │ ├── Conversion │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── Converter.mos │ │ │ │ │ │ │ ├── Transformer.mos │ │ │ │ │ │ │ ├── TransformerDD.mos │ │ │ │ │ │ │ ├── TransformerFull.mos │ │ │ │ │ │ │ ├── TransformerStepDownDY.mos │ │ │ │ │ │ │ ├── TransformerStepDownYD.mos │ │ │ │ │ │ │ ├── TransformerStepUpDY.mos │ │ │ │ │ │ │ └── TransformerStepUpYD.mos │ │ │ │ │ │ ├── Interfaces │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ └── WyeToDelta.mos │ │ │ │ │ │ ├── Lines │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── ACLine.mos │ │ │ │ │ │ │ ├── ACLineMatrix_RL.mos │ │ │ │ │ │ │ ├── ACLineMatrix_RLC.mos │ │ │ │ │ │ │ ├── ACLineMatrix_RLC_N.mos │ │ │ │ │ │ │ ├── ACLineMatrix_RL_N.mos │ │ │ │ │ │ │ ├── ACLine_L.mos │ │ │ │ │ │ │ ├── ACLine_L_N.mos │ │ │ │ │ │ │ ├── ACLine_N.mos │ │ │ │ │ │ │ ├── ACLine_R.mos │ │ │ │ │ │ │ ├── ACLine_RL.mos │ │ │ │ │ │ │ ├── ACLine_RLC.mos │ │ │ │ │ │ │ ├── ACLine_RLC_N.mos │ │ │ │ │ │ │ ├── ACLine_RL_N.mos │ │ │ │ │ │ │ ├── ACLine_R_N.mos │ │ │ │ │ │ │ ├── ACSimpleGrid.mos │ │ │ │ │ │ │ └── ACSimpleGrid_N.mos │ │ │ │ │ │ ├── Loads │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── Impedances.mos │ │ │ │ │ │ │ ├── LoadCtrl.mos │ │ │ │ │ │ │ ├── Loads.mos │ │ │ │ │ │ │ └── Loads_N.mos │ │ │ │ │ │ ├── Sensors │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ └── Sensors.mos │ │ │ │ │ │ ├── Sources │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── FixedVoltageSource.mos │ │ │ │ │ │ │ ├── WindTurbine.mos │ │ │ │ │ │ │ └── WindTurbine_N.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ └── IEEETests │ │ │ │ │ │ └── Test4NodesFeeder │ │ │ │ │ │ ├── BalancedStepDown │ │ │ │ │ │ ├── DD.mos │ │ │ │ │ │ ├── DY.mos │ │ │ │ │ │ ├── YD.mos │ │ │ │ │ │ └── YY.mos │ │ │ │ │ │ ├── BalancedStepUp │ │ │ │ │ │ ├── DD.mos │ │ │ │ │ │ ├── DY.mos │ │ │ │ │ │ ├── YD.mos │ │ │ │ │ │ └── YY.mos │ │ │ │ │ │ ├── UnbalancedStepDown │ │ │ │ │ │ ├── DD.mos │ │ │ │ │ │ ├── DY.mos │ │ │ │ │ │ ├── YD.mos │ │ │ │ │ │ └── YY.mos │ │ │ │ │ │ └── UnbalancedStepUp │ │ │ │ │ │ ├── DD.mos │ │ │ │ │ │ ├── DY.mos │ │ │ │ │ │ ├── YD.mos │ │ │ │ │ │ └── YY.mos │ │ │ │ ├── DC │ │ │ │ │ ├── Conversion │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ └── DCDCConverter.mos │ │ │ │ │ ├── Lines │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── DCLine.mos │ │ │ │ │ │ │ ├── DCLines.mos │ │ │ │ │ │ │ ├── DCLinesLinearized.mos │ │ │ │ │ │ │ ├── RCModel.mos │ │ │ │ │ │ │ └── Resistance.mos │ │ │ │ │ ├── Loads │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── LinearizedLoad.mos │ │ │ │ │ │ │ ├── Resistor.mos │ │ │ │ │ │ │ └── VariableLoad.mos │ │ │ │ │ ├── Sensors │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ └── GeneralizedSensor.mos │ │ │ │ │ └── Sources │ │ │ │ │ │ └── Examples │ │ │ │ │ │ └── VoltageSource.mos │ │ │ │ ├── Examples │ │ │ │ │ └── ExamplePVSystem.mos │ │ │ │ ├── Transmission │ │ │ │ │ └── Functions │ │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── SelectCable_low.mos │ │ │ │ │ │ └── SelectCable_med.mos │ │ │ │ ├── Utilities │ │ │ │ │ └── Examples │ │ │ │ │ │ └── TestVoltageCTRL.mos │ │ │ │ └── Validation │ │ │ │ │ └── ValidationPVSystem.mos │ │ │ ├── Examples │ │ │ │ ├── SimpleHouse.mos │ │ │ │ └── Tutorial │ │ │ │ │ └── SimpleHouse │ │ │ │ │ ├── SimpleHouse0.mos │ │ │ │ │ ├── SimpleHouse1.mos │ │ │ │ │ ├── SimpleHouse2.mos │ │ │ │ │ ├── SimpleHouse3.mos │ │ │ │ │ ├── SimpleHouse4.mos │ │ │ │ │ ├── SimpleHouse5.mos │ │ │ │ │ └── SimpleHouse6.mos │ │ │ ├── Fluid │ │ │ │ ├── Actuators │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ └── EqualPercentageDerivativeCheck.mos │ │ │ │ │ ├── Dampers │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ │ ├── Damper.mos │ │ │ │ │ │ │ ├── MixingBox.mos │ │ │ │ │ │ │ └── VAVBoxExponential.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ └── PressureIndependent.mos │ │ │ │ │ ├── Motors │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ └── IdealMotor.mos │ │ │ │ │ └── Valves │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── ThreeWayValves.mos │ │ │ │ │ │ ├── TwoWayValvePressureIndependent.mos │ │ │ │ │ │ ├── TwoWayValveTable.mos │ │ │ │ │ │ ├── TwoWayValves.mos │ │ │ │ │ │ ├── TwoWayValvesMotor.mos │ │ │ │ │ │ └── TwoWayValvesTable.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── ThreeWayValveParameterization.mos │ │ │ │ │ │ └── TwoWayValveParameterization.mos │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── FlowModels │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── BasicFlowFunction_dp_DerivativeCheck.mos │ │ │ │ │ │ │ ├── BasicFlowFunction_dp_DerivativeCheck2.mos │ │ │ │ │ │ │ ├── BasicFlowFunction_m_flow_DerivativeCheck.mos │ │ │ │ │ │ │ ├── BasicFlowFunction_m_flow_DerivativeCheck2.mos │ │ │ │ │ │ │ ├── InverseFlowFunctions.mos │ │ │ │ │ │ │ ├── InvertingBasicFlowFunction_dp.mos │ │ │ │ │ │ │ └── InvertingBasicFlowFunction_m_flow.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── ActuatorFilter.mos │ │ │ │ │ │ └── MassFlowRateMultiplier.mos │ │ │ │ ├── BoilerCHP │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── BoilerGeneric.mos │ │ │ │ │ │ ├── CHPSystem.mos │ │ │ │ │ │ └── CHPSystemNoControl.mos │ │ │ │ ├── CHPs │ │ │ │ │ └── OrganicRankine │ │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── DryFluid.mos │ │ │ │ │ │ │ └── WetFluid.mos │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ └── ORCHotWater.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ └── VariableSource.mos │ │ │ │ ├── Chillers │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── Carnot_TEva.mos │ │ │ │ │ │ └── Carnot_y.mos │ │ │ │ │ ├── ModularReversible │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ │ ├── CarnotWithLosses.mos │ │ │ │ │ │ │ ├── LargeScaleWaterToWater.mos │ │ │ │ │ │ │ └── Modular.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── Carnot_y.mos │ │ │ │ │ │ │ ├── ConstantCarnotEffectiveness.mos │ │ │ │ │ │ │ └── TableData2D.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── CarnotVerifyCOP.mos │ │ │ │ │ │ ├── CarnotVerifyEtaCarnot.mos │ │ │ │ │ │ ├── Carnot_TEva_2ndLaw.mos │ │ │ │ │ │ ├── Carnot_TEva_HighTemperature.mos │ │ │ │ │ │ ├── Carnot_TEva_LimitedCapacity.mos │ │ │ │ │ │ ├── Carnot_TEva_etaPL.mos │ │ │ │ │ │ ├── Carnot_TEva_reverseFlow.mos │ │ │ │ │ │ └── Carnot_y_etaPL.mos │ │ │ │ ├── Delays │ │ │ │ │ └── Examples │ │ │ │ │ │ └── Delay.mos │ │ │ │ ├── DistrictHeatingCooling │ │ │ │ │ ├── Demands │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── OpenLoopHeatPumpCarnot.mos │ │ │ │ │ │ │ ├── OpenLoopVarTSupplyDp.mos │ │ │ │ │ │ │ └── OpenLoopVarTSupplyDpFixedTempDifferenceBypass.mos │ │ │ │ │ └── Pipes │ │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── DHCPipe.mos │ │ │ │ │ │ ├── PlugFlowPipeEmbedded.mos │ │ │ │ │ │ ├── PlugFlowPipeZeta.mos │ │ │ │ │ │ └── StaticPipe.mos │ │ │ │ ├── Examples │ │ │ │ │ ├── FlowSystem │ │ │ │ │ │ ├── Basic.mos │ │ │ │ │ │ ├── Simplified1.mos │ │ │ │ │ │ ├── Simplified2.mos │ │ │ │ │ │ ├── Simplified3.mos │ │ │ │ │ │ ├── Simplified4.mos │ │ │ │ │ │ ├── Simplified5.mos │ │ │ │ │ │ └── Simplified6.mos │ │ │ │ │ ├── GeothermalHeatPump │ │ │ │ │ │ └── GeothermalHeatPump.mos │ │ │ │ │ ├── Performance │ │ │ │ │ │ ├── Example1v1.mos │ │ │ │ │ │ ├── Example1v2.mos │ │ │ │ │ │ ├── Example2.mos │ │ │ │ │ │ ├── Example3.mos │ │ │ │ │ │ ├── Example4.mos │ │ │ │ │ │ ├── Example5.mos │ │ │ │ │ │ ├── Example6.mos │ │ │ │ │ │ ├── Example7.mos │ │ │ │ │ │ ├── Example8.mos │ │ │ │ │ │ └── PressureDrop │ │ │ │ │ │ │ ├── ParallelDp.mos │ │ │ │ │ │ │ ├── ParallelDpOptimised.mos │ │ │ │ │ │ │ ├── ParallelFlow.mos │ │ │ │ │ │ │ ├── ParallelFlowOptimised.mos │ │ │ │ │ │ │ ├── SeriesDp.mos │ │ │ │ │ │ │ ├── SeriesDpOptimised.mos │ │ │ │ │ │ │ ├── SeriesFlow.mos │ │ │ │ │ │ │ ├── SeriesFlowOptimised.mos │ │ │ │ │ │ │ ├── SeriesParallelDp.mos │ │ │ │ │ │ │ ├── SeriesParallelDpOptimised.mos │ │ │ │ │ │ │ ├── SeriesParallelFlow.mos │ │ │ │ │ │ │ └── SeriesParallelFlowOptimised.mos │ │ │ │ │ └── ResistanceVolumeFlowReversal.mos │ │ │ │ ├── FMI │ │ │ │ │ ├── Adaptors │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── ThermalZoneHVACNoExhaust.mos │ │ │ │ │ │ │ └── ThermalZoneHVACWithExhaust.mos │ │ │ │ │ ├── Conversion │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── AirToOutlet.mos │ │ │ │ │ │ │ ├── AirToOutletFlowReversal.mos │ │ │ │ │ │ │ ├── InletToAirDryAir.mos │ │ │ │ │ │ │ ├── InletToAirDryAirCO2.mos │ │ │ │ │ │ │ ├── InletToAirMoistAir.mos │ │ │ │ │ │ │ └── InletToAirMoistAirCO2.mos │ │ │ │ │ ├── ExportContainers │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ │ └── FMUs │ │ │ │ │ │ │ │ ├── Fan.mos │ │ │ │ │ │ │ │ ├── FlowSplitter_u.mos │ │ │ │ │ │ │ │ ├── HVACZone.mos │ │ │ │ │ │ │ │ ├── HVACZones.mos │ │ │ │ │ │ │ │ ├── HeaterCooler_u.mos │ │ │ │ │ │ │ │ ├── Heater_T.mos │ │ │ │ │ │ │ │ ├── Humidifier_u.mos │ │ │ │ │ │ │ │ ├── IdealSource_m_flow.mos │ │ │ │ │ │ │ │ ├── MixingVolume.mos │ │ │ │ │ │ │ │ ├── PressureDrop.mos │ │ │ │ │ │ │ │ ├── ResistanceVolume.mos │ │ │ │ │ │ │ │ ├── ThermalZone.mos │ │ │ │ │ │ │ │ ├── ThermalZones.mos │ │ │ │ │ │ │ │ └── TwoPortPassThrough.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ └── FMUs │ │ │ │ │ │ │ ├── HVACThermalZoneAir1.mos │ │ │ │ │ │ │ ├── HVACThermalZoneAir2.mos │ │ │ │ │ │ │ ├── HVACThermalZoneAir3.mos │ │ │ │ │ │ │ ├── HVACThermalZoneSimpleAir1.mos │ │ │ │ │ │ │ ├── HVACThermalZoneSimpleAir2.mos │ │ │ │ │ │ │ ├── HVACThermalZoneSimpleAir3.mos │ │ │ │ │ │ │ ├── ThermalZoneAir1.mos │ │ │ │ │ │ │ ├── ThermalZoneAir2.mos │ │ │ │ │ │ │ ├── ThermalZoneAir3.mos │ │ │ │ │ │ │ ├── ThermalZoneSimpleAir1.mos │ │ │ │ │ │ │ ├── ThermalZoneSimpleAir2.mos │ │ │ │ │ │ │ └── ThermalZoneSimpleAir3.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── FlowSplitter_u.mos │ │ │ │ │ │ ├── HeaterFan.mos │ │ │ │ │ │ ├── HeaterFanPressureDriven.mos │ │ │ │ │ │ └── HeaterFan_noReverseFlow.mos │ │ │ │ ├── FixedResistances │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── CheckValve.mos │ │ │ │ │ │ ├── CompareFixedResistances.mos │ │ │ │ │ │ ├── FlowJunction.mos │ │ │ │ │ │ ├── GenericPipe.mos │ │ │ │ │ │ ├── HydraulicDiameter.mos │ │ │ │ │ │ ├── PlugFlowPipe.mos │ │ │ │ │ │ ├── PlugFlowPipeDiscretized.mos │ │ │ │ │ │ ├── PressureDrop.mos │ │ │ │ │ │ └── SimplePipe.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── FlowJunctionSteadyState.mos │ │ │ │ │ │ ├── FlowJunctionSteadyStateNoPressureDrop.mos │ │ │ │ │ │ ├── LosslessPipe.mos │ │ │ │ │ │ ├── PlugFlowPipes │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ └── TestData.mos │ │ │ │ │ │ ├── FlowReversal.mos │ │ │ │ │ │ ├── MSLAIT.mos │ │ │ │ │ │ ├── MSLAIT2Nodes.mos │ │ │ │ │ │ ├── PlugFlowAIT.mos │ │ │ │ │ │ ├── PlugFlowULg.mos │ │ │ │ │ │ └── TransportWaterAir.mos │ │ │ │ │ │ ├── PressureDropsExplicit.mos │ │ │ │ │ │ ├── PressureDropsExplicitLinearized.mos │ │ │ │ │ │ ├── PressureDropsParallel.mos │ │ │ │ │ │ └── PressureDropsSeries.mos │ │ │ │ ├── Geothermal │ │ │ │ │ ├── Aquifer │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ │ └── CoolingOffice.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── NumberWells.mos │ │ │ │ │ │ │ └── SimulationTest.mos │ │ │ │ │ └── Borefields │ │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ ├── Boreholes │ │ │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ │ │ │ ├── InternalHEXOneUTube.mos │ │ │ │ │ │ │ │ │ ├── InternalHEXTwoUTube.mos │ │ │ │ │ │ │ │ │ ├── InternalResistancesOneUTube.mos │ │ │ │ │ │ │ │ │ └── InternalResistancesTwoUTube.mos │ │ │ │ │ │ │ │ └── Functions │ │ │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ │ ├── ConvectionResistanceCircularPipe.mos │ │ │ │ │ │ │ │ │ ├── InternalResistancesOneUTube.mos │ │ │ │ │ │ │ │ │ ├── InternalResistancesOneUTubeNegative.mos │ │ │ │ │ │ │ │ │ ├── InternalResistancesTwoUTube.mos │ │ │ │ │ │ │ │ │ ├── InternalResistancesTwoUTubeNegative.mos │ │ │ │ │ │ │ │ │ ├── MultipoleThermalResistances_OneUTube.mos │ │ │ │ │ │ │ │ │ └── MultipoleThermalResistances_TwoUTube.mos │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ │ ├── BoreholeDynamics.mos │ │ │ │ │ │ │ │ ├── BoreholeOneUTube.mos │ │ │ │ │ │ │ │ └── BoreholeTwoUTube.mos │ │ │ │ │ │ └── HeatTransfer │ │ │ │ │ │ │ ├── LoadAggregation │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ ├── AggregationCellTimes.mos │ │ │ │ │ │ │ │ ├── AggregationWeightingFactors.mos │ │ │ │ │ │ │ │ ├── CountAggregationCells.mos │ │ │ │ │ │ │ │ ├── ShiftAggregationCells.mos │ │ │ │ │ │ │ │ ├── TemperatureResponseMatrix.mos │ │ │ │ │ │ │ │ └── TemporalSuperposition.mos │ │ │ │ │ │ │ ├── ThermalResponseFactors │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ ├── ClusterBoreholes_100boreholes.mos │ │ │ │ │ │ │ │ ├── CylindricalHeatSource.mos │ │ │ │ │ │ │ │ ├── CylindricalHeatSource_Integrand.mos │ │ │ │ │ │ │ │ ├── FiniteLineSource.mos │ │ │ │ │ │ │ │ ├── FiniteLineSource_Equivalent.mos │ │ │ │ │ │ │ │ ├── FiniteLineSource_Erfint.mos │ │ │ │ │ │ │ │ ├── FiniteLineSource_Integrand.mos │ │ │ │ │ │ │ │ ├── FiniteLineSource_Integrand_Equivalent.mos │ │ │ │ │ │ │ │ ├── FiniteLineSource_Integrand_Length.mos │ │ │ │ │ │ │ │ ├── FiniteLineSource_SteadyState.mos │ │ │ │ │ │ │ │ ├── GFunction_100boreholes.mos │ │ │ │ │ │ │ │ ├── GFunction_1borehole_5meters.mos │ │ │ │ │ │ │ │ ├── GFunction_SmallScaleValidation.mos │ │ │ │ │ │ │ │ ├── InfiniteLineSource.mos │ │ │ │ │ │ │ │ ├── ShaGFunction.mos │ │ │ │ │ │ │ │ └── TimeGeometric.mos │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── Analytic_20Years.mos │ │ │ │ │ │ │ ├── Cylindrical.mos │ │ │ │ │ │ │ ├── FiniteDifference_1Week.mos │ │ │ │ │ │ │ └── Measured_SmallScale.mos │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── Borefields.mos │ │ │ │ │ │ └── RectangularBorefield.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── ConstantHeatInjection_100Boreholes.mos │ │ │ │ │ │ └── Sandbox.mos │ │ │ │ ├── HeatExchangers │ │ │ │ │ ├── ActiveBeams │ │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ │ ├── Convector.mos │ │ │ │ │ │ │ │ ├── DerivateCubicSpline.mos │ │ │ │ │ │ │ │ └── ModificationFactor.mos │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ │ ├── CoolingAndHeating.mos │ │ │ │ │ │ │ ├── CoolingOnly.mos │ │ │ │ │ │ │ └── HeatingOnly.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── NumberOfBeams.mos │ │ │ │ │ │ │ └── NumberOfBeamsDynamics.mos │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── HACoilInside.mos │ │ │ │ │ │ │ ├── HADryCoil.mos │ │ │ │ │ │ │ └── HANaturalCylinder.mos │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── AirHeater_T.mos │ │ │ │ │ │ ├── AirHeater_u.mos │ │ │ │ │ │ ├── DryCoilEffectivenessNTUMassFlow.mos │ │ │ │ │ │ ├── DryCoilEffectivenessNTUPControl.mos │ │ │ │ │ │ ├── HeatingRod.mos │ │ │ │ │ │ ├── WaterCooler_T.mos │ │ │ │ │ │ ├── WaterHeater_T.mos │ │ │ │ │ │ ├── WaterHeater_u.mos │ │ │ │ │ │ └── WetCoilEffectivenessNTUMassFlow.mos │ │ │ │ │ ├── Radiators │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ └── RadiatorEN442_2.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── ConstantEffectiveness.mos │ │ │ │ │ │ ├── DryCoilEffectivenessNTU.mos │ │ │ │ │ │ ├── EvaporatorCondenser.mos │ │ │ │ │ │ ├── HeaterCooler_u.mos │ │ │ │ │ │ ├── PrescribedOutlet.mos │ │ │ │ │ │ ├── PrescribedOutlet_dynamic.mos │ │ │ │ │ │ └── WetCoilEffectivenessNTU.mos │ │ │ │ ├── HeatPumps │ │ │ │ │ ├── Calibration │ │ │ │ │ │ └── ScrollWaterToWater.mos │ │ │ │ │ ├── Compressors │ │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ └── TemperatureProtection.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── ReciprocatingCompressor.mos │ │ │ │ │ │ │ ├── ReciprocatingCompressor_ZeroInput.mos │ │ │ │ │ │ │ ├── ScrollCompressor.mos │ │ │ │ │ │ │ └── ScrollCompressor_ZeroInput.mos │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── Carnot_TCon.mos │ │ │ │ │ │ ├── Carnot_y.mos │ │ │ │ │ │ └── ScrollWaterToWater_OneRoomRadiator.mos │ │ │ │ │ ├── ModularReversible │ │ │ │ │ │ ├── Controls │ │ │ │ │ │ │ └── Safety │ │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ │ ├── AntiFreeze.mos │ │ │ │ │ │ │ │ ├── MinimalFlowRate.mos │ │ │ │ │ │ │ │ ├── OnOff.mos │ │ │ │ │ │ │ │ ├── OperationalEnvelope.mos │ │ │ │ │ │ │ │ └── Safety.mos │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ │ ├── AirToWater2D_OneRoomRadiator.mos │ │ │ │ │ │ │ ├── CarnotWithLosses_OneRoomRadiator.mos │ │ │ │ │ │ │ ├── LargeScaleWaterToWater_OneRoomRadiator.mos │ │ │ │ │ │ │ ├── Modular_OneRoomRadiator.mos │ │ │ │ │ │ │ ├── TableData3D_OneRoomRadiator.mos │ │ │ │ │ │ │ └── VCLibAirToWater_OneRoomRadiator.mos │ │ │ │ │ │ ├── RefrigerantCycle │ │ │ │ │ │ │ └── Frosting │ │ │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ │ └── WetterAfjei1997.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── Comparative │ │ │ │ │ │ │ ├── Carnot_y.mos │ │ │ │ │ │ │ ├── ConstantCarnotEffectiveness.mos │ │ │ │ │ │ │ └── TableData2D.mos │ │ │ │ │ │ │ ├── ConstantCarnotEffectiveness.mos │ │ │ │ │ │ │ └── TableData2D.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── Carnot_TCon_LimitedCapacity.mos │ │ │ │ │ │ ├── Carnot_TCon_LowTemperature.mos │ │ │ │ │ │ ├── Carnot_TCon_etaPL.mos │ │ │ │ │ │ ├── Carnot_TCon_reverseFlow.mos │ │ │ │ │ │ ├── Carnot_y_etaCar.mos │ │ │ │ │ │ ├── Carnot_y_etaPL.mos │ │ │ │ │ │ ├── ReciprocatingWaterToWater_Dynamic.mos │ │ │ │ │ │ ├── ReciprocatingWaterToWater_ScalingFactor.mos │ │ │ │ │ │ ├── ReciprocatingWaterToWater_Static.mos │ │ │ │ │ │ ├── ReciprocatingWaterToWater_VariableSpeed.mos │ │ │ │ │ │ ├── ScrollWaterToWater_Dynamic.mos │ │ │ │ │ │ ├── ScrollWaterToWater_ScalingFactor.mos │ │ │ │ │ │ ├── ScrollWaterToWater_Static.mos │ │ │ │ │ │ ├── ScrollWaterToWater_TemperatureProtection.mos │ │ │ │ │ │ └── ScrollWaterToWater_VariableSpeed.mos │ │ │ │ ├── Humidifiers │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── GenericHumidifier_u.mos │ │ │ │ │ │ └── Humidifier_u.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── SprayAirWasher_X.mos │ │ │ │ │ │ ├── SprayAirWasher_X_dynamic.mos │ │ │ │ │ │ ├── SteamHumidifier_X.mos │ │ │ │ │ │ └── SteamHumidifier_X_dynamic.mos │ │ │ │ ├── Interfaces │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── ConservationEquation.mos │ │ │ │ │ │ ├── EightPortHeatMassExchanger.mos │ │ │ │ │ │ ├── FourPortHeatMassExchanger.mos │ │ │ │ │ │ ├── HeaterCooler_u.mos │ │ │ │ │ │ ├── Humidifier_u.mos │ │ │ │ │ │ ├── PrescribedOutlet.mos │ │ │ │ │ │ ├── PrescribedOutlet_TSetOnly.mos │ │ │ │ │ │ ├── PrescribedOutlet_Water.mos │ │ │ │ │ │ ├── PrescribedOutlet_X_wSetOnly.mos │ │ │ │ │ │ ├── ReverseFlowHumidifier.mos │ │ │ │ │ │ ├── ReverseFlowMassExchanger.mos │ │ │ │ │ │ └── StaticTwoPortConservationEquation.mos │ │ │ │ ├── MassExchangers │ │ │ │ │ ├── Examples │ │ │ │ │ │ └── ConstantEffectiveness.mos │ │ │ │ │ ├── MembraneBasedEnthalpyExchangers │ │ │ │ │ │ ├── Examples │ │ │ │ │ │ │ └── Test_EnthalpyExchanger.mos │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── DynamicValidation.mos │ │ │ │ │ │ │ └── StaticValidation.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── ConstantEffectivenessZeroFlow.mos │ │ │ │ │ │ └── ConstantEffectivenessZeroFlowBothStreams.mos │ │ │ │ ├── MixingVolumes │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── MixingVolumeHeatMoisturePort.mos │ │ │ │ │ │ │ ├── MixingVolumeHeatPortAir.mos │ │ │ │ │ │ │ └── MixingVolumeHeatPortWater.mos │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── MixingVolumeHeatConduction.mos │ │ │ │ │ │ ├── MixingVolumeMoistAir.mos │ │ │ │ │ │ └── MixingVolumePrescribedHeatFlowRate.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── CoupledVolumesAir.mos │ │ │ │ │ │ ├── CoupledVolumesGlycol47.mos │ │ │ │ │ │ ├── CoupledVolumesSpecializedAirPerfectGas.mos │ │ │ │ │ │ ├── CoupledVolumesSpecializedWaterConstantProperties_pT.mos │ │ │ │ │ │ ├── CoupledVolumesSpecializedWaterTemperatureDependentDensity.mos │ │ │ │ │ │ ├── CoupledVolumesWater.mos │ │ │ │ │ │ ├── MSLCombustionAir.mos │ │ │ │ │ │ ├── MSLFlueGasSixComponents.mos │ │ │ │ │ │ ├── MixingVolume.mos │ │ │ │ │ │ ├── MixingVolumeAdiabaticCooling.mos │ │ │ │ │ │ ├── MixingVolumeHeatReverseFlow.mos │ │ │ │ │ │ ├── MixingVolumeHeatReverseFlowPrescribedHeatFlowRate.mos │ │ │ │ │ │ ├── MixingVolumeInitialization.mos │ │ │ │ │ │ ├── MixingVolumeMFactor.mos │ │ │ │ │ │ ├── MixingVolumeMassFlow.mos │ │ │ │ │ │ ├── MixingVolumeMoistureReverseFlow.mos │ │ │ │ │ │ ├── MixingVolumeMoistureReverseFlowPrescribedHeatFlowRate.mos │ │ │ │ │ │ ├── MixingVolumeSteadyStateMass.mos │ │ │ │ │ │ ├── MixingVolumeTraceSubstance.mos │ │ │ │ │ │ ├── MixingVolumeTraceSubstanceReverseFlow.mos │ │ │ │ │ │ ├── MixingVolumeTraceSubstanceReverseFlowPrescribedHeatFlowRate.mos │ │ │ │ │ │ ├── MixingVolumeZeroFlow.mos │ │ │ │ │ │ ├── MoistureMixingConservationDynamicBalance.mos │ │ │ │ │ │ ├── MoistureMixingConservationSteadyState.mos │ │ │ │ │ │ ├── TraceSubstanceConservationDynamicBalance.mos │ │ │ │ │ │ └── TraceSubstanceConservationSteadyState.mos │ │ │ │ ├── Movers │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ ├── EulerComparison.mos │ │ │ │ │ │ │ ├── EulerCurve.mos │ │ │ │ │ │ │ ├── EulerReducedSpeed.mos │ │ │ │ │ │ │ ├── FlowMachineInterface.mos │ │ │ │ │ │ │ ├── HydraulicEfficiencyMethods.mos │ │ │ │ │ │ │ ├── MotorEfficiencyMethods.mos │ │ │ │ │ │ │ ├── NegativePressureOrFlow.mos │ │ │ │ │ │ │ ├── PowerInterface.mos │ │ │ │ │ │ │ └── TotalEfficiencyMethods.mos │ │ │ │ │ ├── DpControlledMovers │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── DpConst.mos │ │ │ │ │ │ │ └── DpVar.mos │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── ClosedLoop_y.mos │ │ │ │ │ │ ├── MoverContinuous.mos │ │ │ │ │ │ ├── MoverParameter.mos │ │ │ │ │ │ ├── MoverStages.mos │ │ │ │ │ │ ├── PumpsParallel.mos │ │ │ │ │ │ ├── PumpsSeries.mos │ │ │ │ │ │ ├── SpeedControlled_y_pumpCurves.mos │ │ │ │ │ │ └── StaticReset.mos │ │ │ │ │ ├── Preconfigured │ │ │ │ │ │ └── Validation │ │ │ │ │ │ │ └── ControlledFlowMachinePreconfigured.mos │ │ │ │ │ ├── PumpsPolynomialBased │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── PumpHeadControlled.mos │ │ │ │ │ │ │ ├── PumpSpeedControlled.mos │ │ │ │ │ │ │ └── PumpSpeedControlledDpV.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── ComparePowerHydraulic.mos │ │ │ │ │ │ ├── ComparePowerInput.mos │ │ │ │ │ │ ├── ComparePowerTotal.mos │ │ │ │ │ │ ├── ControlledFlowMachine.mos │ │ │ │ │ │ ├── ControlledFlowMachineDynamic.mos │ │ │ │ │ │ ├── FlowControlled_dp.mos │ │ │ │ │ │ ├── FlowControlled_dpSystem.mos │ │ │ │ │ │ ├── FlowControlled_m_flow.mos │ │ │ │ │ │ ├── PressureCurve.mos │ │ │ │ │ │ ├── PumpCurveConstruction.mos │ │ │ │ │ │ ├── PumpCurveDerivatives.mos │ │ │ │ │ │ ├── Pump_stratos.mos │ │ │ │ │ │ ├── Pump_y_stratos.mos │ │ │ │ │ │ ├── SpeedControlled_y.mos │ │ │ │ │ │ └── SpeedControlled_y_linear.mos │ │ │ │ ├── Pools │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── IndoorSwimmingPool.mos │ │ │ │ │ │ └── IndoorSwimmingPoolExternalHeatingSystem.mos │ │ │ │ ├── Sensors │ │ │ │ │ ├── Conversions │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ └── To_VolumeFraction.mos │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── Density.mos │ │ │ │ │ │ ├── EnthalpyFlowRate.mos │ │ │ │ │ │ ├── EntropyFlowRate.mos │ │ │ │ │ │ ├── HeatMeter.mos │ │ │ │ │ │ ├── MassFraction.mos │ │ │ │ │ │ ├── MoistAirEnthalpyFlowRate.mos │ │ │ │ │ │ ├── PPM.mos │ │ │ │ │ │ ├── Pressure.mos │ │ │ │ │ │ ├── RelativeHumidity.mos │ │ │ │ │ │ ├── SpecificEnthalpy.mos │ │ │ │ │ │ ├── SpecificEntropy.mos │ │ │ │ │ │ ├── TemperatureDryBulb.mos │ │ │ │ │ │ ├── TemperatureWetBulb.mos │ │ │ │ │ │ ├── TraceSubstances.mos │ │ │ │ │ │ ├── Velocity.mos │ │ │ │ │ │ └── VolumeFlowRate.mos │ │ │ │ ├── Solar │ │ │ │ │ └── Thermal │ │ │ │ │ │ └── Examples │ │ │ │ │ │ └── SolarThermalCollector.mos │ │ │ │ ├── SolarCollectors │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ ├── ASHRAEHeatLoss.mos │ │ │ │ │ │ │ ├── ASHRAESolarGain.mos │ │ │ │ │ │ │ ├── EN12975HeatLoss.mos │ │ │ │ │ │ │ └── EN12975SolarGain.mos │ │ │ │ │ ├── Controls │ │ │ │ │ │ ├── BaseClasses │ │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ │ └── GCritCalc.mos │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ └── SolarPumpController.mos │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── FlatPlate.mos │ │ │ │ │ │ ├── FlatPlateShaCoeTrue.mos │ │ │ │ │ │ ├── FlatPlateTotalArea.mos │ │ │ │ │ │ ├── FlatPlateWithTank.mos │ │ │ │ │ │ └── Tubular.mos │ │ │ │ │ ├── PhotovoltaicThermal │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ └── PhotovoltaicThermal.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── EN12975NPanels.mos │ │ │ │ │ │ ├── EN12975_Array.mos │ │ │ │ │ │ ├── EN12975_Series.mos │ │ │ │ │ │ ├── ExtremeAmbientConditions.mos │ │ │ │ │ │ ├── FlatPlate.mos │ │ │ │ │ │ └── FlatPlateNPanels.mos │ │ │ │ ├── Sources │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── MassFlowSource_WeatherData.mos │ │ │ │ │ │ ├── Outside.mos │ │ │ │ │ │ ├── Outside_CpData.mos │ │ │ │ │ │ ├── Outside_CpData_Angles.mos │ │ │ │ │ │ ├── Outside_CpData_Specification.mos │ │ │ │ │ │ ├── Outside_CpLowRise.mos │ │ │ │ │ │ ├── PropertySource_T.mos │ │ │ │ │ │ ├── PropertySource_h.mos │ │ │ │ │ │ └── TraceSubstancesFlowSource.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── Boundary.mos │ │ │ │ │ │ ├── BoundaryWithX_in.mos │ │ │ │ │ │ ├── BoundaryWithXi_in.mos │ │ │ │ │ │ └── Outside_CpData_Directions.mos │ │ │ │ └── Storage │ │ │ │ │ ├── BaseClasses │ │ │ │ │ └── Examples │ │ │ │ │ │ └── IndirectTankHeatExchanger.mos │ │ │ │ │ ├── Examples │ │ │ │ │ ├── ExpansionVessel.mos │ │ │ │ │ ├── StorageBoiler.mos │ │ │ │ │ ├── StorageDetailedExample.mos │ │ │ │ │ ├── StorageSimpleExample.mos │ │ │ │ │ ├── StorageSolarCollector.mos │ │ │ │ │ ├── Stratified.mos │ │ │ │ │ ├── StratifiedEnhancedInternalHex.mos │ │ │ │ │ └── StratifiedUnloadAtMinimumTemperature.mos │ │ │ │ │ └── Validation │ │ │ │ │ ├── HeatExchangerDynamics.mos │ │ │ │ │ ├── HeatExchangerLocation.mos │ │ │ │ │ ├── StratifiedLoadingUnloading.mos │ │ │ │ │ └── StratifiedNonUniformInitial.mos │ │ │ ├── Media │ │ │ │ ├── Antifreeze │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── EthyleneGlycolWater.mos │ │ │ │ │ │ └── PropyleneGlycolWater.mos │ │ │ │ ├── Examples │ │ │ │ │ ├── AirDerivativeCheck.mos │ │ │ │ │ ├── AirProperties.mos │ │ │ │ │ ├── AirTemperatureEnthalpyInversion.mos │ │ │ │ │ ├── PropyleneGlycolWaterDerivativeCheck.mos │ │ │ │ │ ├── PropyleneGlycolWaterProperties.mos │ │ │ │ │ ├── PropyleneGlycolWaterTemperatureEnthalpyInversion.mos │ │ │ │ │ ├── SteamDerivativeCheck.mos │ │ │ │ │ ├── SteamProperties.mos │ │ │ │ │ ├── SteamSaturationConsistencyCheck.mos │ │ │ │ │ ├── SteamTemperatureEnthalpyInversion.mos │ │ │ │ │ ├── WaterDerivativeCheck.mos │ │ │ │ │ ├── WaterProperties.mos │ │ │ │ │ └── WaterTemperatureEnthalpyInversion.mos │ │ │ │ ├── Refrigerants │ │ │ │ │ └── Validation │ │ │ │ │ │ └── R410A_dSpecificVolumeVap_pT.mos │ │ │ │ └── Specialized │ │ │ │ │ ├── Air │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── PerfectGasDerivativeCheck.mos │ │ │ │ │ │ └── PerfectGasTemperatureEnthalpyInversion.mos │ │ │ │ │ └── Water │ │ │ │ │ └── Examples │ │ │ │ │ ├── TemperatureDependentDensityDerivativeCheck.mos │ │ │ │ │ ├── TemperatureDependentDensityProperties.mos │ │ │ │ │ ├── TemperatureDependentDensityTemperatureEnthalpyInversion.mos │ │ │ │ │ └── WaterProperties_pT.mos │ │ │ ├── Obsolete │ │ │ │ └── Year2024 │ │ │ │ │ ├── Fluid │ │ │ │ │ ├── Chillers │ │ │ │ │ │ └── Examples │ │ │ │ │ │ │ └── Chiller.mos │ │ │ │ │ └── HeatPumps │ │ │ │ │ │ └── Examples │ │ │ │ │ │ └── HeatPump.mos │ │ │ │ │ └── Systems │ │ │ │ │ └── HeatPumpSystems │ │ │ │ │ └── Examples │ │ │ │ │ └── HeatPumpSystem.mos │ │ │ ├── Systems │ │ │ │ ├── HydraulicModules │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── Admix.mos │ │ │ │ │ │ ├── Injection.mos │ │ │ │ │ │ ├── Injection2WayValve.mos │ │ │ │ │ │ ├── Pump.mos │ │ │ │ │ │ ├── Throttle.mos │ │ │ │ │ │ └── ThrottlePump.mos │ │ │ │ ├── ModularAHU │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── DemandControlledAHU.mos │ │ │ │ │ │ ├── GenericAHU.mos │ │ │ │ │ │ └── Heater.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── AHU2_Cooler.mos │ │ │ │ │ │ ├── AHU2_Heater.mos │ │ │ │ │ │ └── AHU2_Preheater.mos │ │ │ │ └── ScalableGenerationModules │ │ │ │ │ └── Examples │ │ │ │ │ ├── ScalableBoilerConstantSup.mos │ │ │ │ │ ├── ScalableBoilerFeedback.mos │ │ │ │ │ └── ScalableBoilerHeatingCurve.mos │ │ │ ├── ThermalZones │ │ │ │ ├── HighOrder │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── ASHREA140 │ │ │ │ │ │ │ └── CompareDynamicAndStaticSolarFrac_Case270.mos │ │ │ │ │ │ ├── OFDHeatLoad.mos │ │ │ │ │ │ └── RoomGFOw2_DayNightMode.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── ASHRAE140 │ │ │ │ │ │ ├── Case210.mos │ │ │ │ │ │ ├── Case220.mos │ │ │ │ │ │ ├── Case230.mos │ │ │ │ │ │ ├── Case240.mos │ │ │ │ │ │ ├── Case250.mos │ │ │ │ │ │ ├── Case270.mos │ │ │ │ │ │ ├── Case280.mos │ │ │ │ │ │ ├── Case300.mos │ │ │ │ │ │ ├── Case320.mos │ │ │ │ │ │ ├── Case395.mos │ │ │ │ │ │ ├── Case400.mos │ │ │ │ │ │ ├── Case410.mos │ │ │ │ │ │ ├── Case420.mos │ │ │ │ │ │ ├── Case430.mos │ │ │ │ │ │ ├── Case440.mos │ │ │ │ │ │ ├── Case600.mos │ │ │ │ │ │ ├── Case600FF.mos │ │ │ │ │ │ ├── Case620.mos │ │ │ │ │ │ ├── Case640.mos │ │ │ │ │ │ ├── Case650.mos │ │ │ │ │ │ ├── Case650FF.mos │ │ │ │ │ │ ├── Case800.mos │ │ │ │ │ │ ├── Case810.mos │ │ │ │ │ │ ├── Case900.mos │ │ │ │ │ │ ├── Case900FF.mos │ │ │ │ │ │ ├── Case920.mos │ │ │ │ │ │ ├── Case940.mos │ │ │ │ │ │ ├── Case950.mos │ │ │ │ │ │ └── Case950FF.mos │ │ │ │ │ │ └── EmpiricalValidation │ │ │ │ │ │ ├── TwinHouseN2.mos │ │ │ │ │ │ └── Warehouse.mos │ │ │ │ ├── ISO13790 │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── FreeFloating.mos │ │ │ │ │ │ ├── FreeFloatingHVAC.mos │ │ │ │ │ │ ├── HeatingCooling.mos │ │ │ │ │ │ └── HeatingCoolingHVAC.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ └── BESTEST │ │ │ │ │ │ ├── Case600.mos │ │ │ │ │ │ ├── Case600FF.mos │ │ │ │ │ │ ├── Case900.mos │ │ │ │ │ │ ├── Case900FF.mos │ │ │ │ │ │ ├── Cases6xx │ │ │ │ │ │ ├── Case600.mos │ │ │ │ │ │ ├── Case600FF.mos │ │ │ │ │ │ ├── Case610.mos │ │ │ │ │ │ ├── Case620.mos │ │ │ │ │ │ ├── Case630.mos │ │ │ │ │ │ ├── Case640.mos │ │ │ │ │ │ ├── Case650.mos │ │ │ │ │ │ ├── Case650FF.mos │ │ │ │ │ │ ├── Case660.mos │ │ │ │ │ │ ├── Case670.mos │ │ │ │ │ │ ├── Case680.mos │ │ │ │ │ │ ├── Case680FF.mos │ │ │ │ │ │ ├── Case685.mos │ │ │ │ │ │ └── Case695.mos │ │ │ │ │ │ └── Cases9xx │ │ │ │ │ │ ├── Case900.mos │ │ │ │ │ │ ├── Case900FF.mos │ │ │ │ │ │ ├── Case910.mos │ │ │ │ │ │ ├── Case920.mos │ │ │ │ │ │ ├── Case930.mos │ │ │ │ │ │ ├── Case940.mos │ │ │ │ │ │ ├── Case950.mos │ │ │ │ │ │ ├── Case950FF.mos │ │ │ │ │ │ ├── Case980.mos │ │ │ │ │ │ ├── Case980FF.mos │ │ │ │ │ │ ├── Case985.mos │ │ │ │ │ │ └── Case995.mos │ │ │ │ └── ReducedOrder │ │ │ │ │ ├── Examples │ │ │ │ │ ├── ComparisonThermalZoneMoistAndDryAir.mos │ │ │ │ │ ├── Multizone.mos │ │ │ │ │ ├── MultizoneEquipped.mos │ │ │ │ │ ├── MultizoneInterzonalsFixedHeater.mos │ │ │ │ │ ├── MultizoneMoistAirCO2.mos │ │ │ │ │ ├── MultizoneMoistAirCO2Equipped.mos │ │ │ │ │ ├── MultizoneMoistAirCO2EquippedSwimmingFacility.mos │ │ │ │ │ ├── MultizonePartlyCooled.mos │ │ │ │ │ ├── SimpleRoomFourElements.mos │ │ │ │ │ ├── SimpleRoomFourElementsTraceSubstance.mos │ │ │ │ │ ├── SimpleRoomOneElement.mos │ │ │ │ │ ├── SimpleRoomThreeElements.mos │ │ │ │ │ ├── SimpleRoomTwoElements.mos │ │ │ │ │ ├── SimpleRoomTwoElementsNonConstantTGround.mos │ │ │ │ │ ├── ThermalZone.mos │ │ │ │ │ ├── ThermalZoneAirExchange.mos │ │ │ │ │ ├── ThermalZoneMoistAir.mos │ │ │ │ │ ├── ThermalZoneMoistAirSwimmingPool.mos │ │ │ │ │ └── ThermalZoneMoistCO2AirExchange.mos │ │ │ │ │ └── Validation │ │ │ │ │ ├── RoomSteadyState.mos │ │ │ │ │ ├── RoomWithLatentGain.mos │ │ │ │ │ ├── RoomWithoutLatentGain.mos │ │ │ │ │ └── VDI6007 │ │ │ │ │ ├── TestCase1.mos │ │ │ │ │ ├── TestCase10.mos │ │ │ │ │ ├── TestCase11.mos │ │ │ │ │ ├── TestCase12.mos │ │ │ │ │ ├── TestCase2.mos │ │ │ │ │ ├── TestCase3.mos │ │ │ │ │ ├── TestCase4.mos │ │ │ │ │ ├── TestCase5.mos │ │ │ │ │ ├── TestCase6.mos │ │ │ │ │ ├── TestCase7.mos │ │ │ │ │ ├── TestCase8.mos │ │ │ │ │ └── TestCase9.mos │ │ │ └── Utilities │ │ │ │ ├── Clustering │ │ │ │ └── Validation │ │ │ │ │ ├── KMeans_1d.mos │ │ │ │ │ └── KMeans_2d.mos │ │ │ │ ├── Cryptographics │ │ │ │ └── Validation │ │ │ │ │ └── SHA1.mos │ │ │ │ ├── Diagnostics │ │ │ │ └── Validation │ │ │ │ │ └── CheckEquality.mos │ │ │ │ ├── Examples │ │ │ │ ├── NcDataReader_win32.mos │ │ │ │ └── NcDataReader_win64.mos │ │ │ │ ├── IO │ │ │ │ ├── Files │ │ │ │ │ ├── Examples │ │ │ │ │ │ ├── CSVReader.mos │ │ │ │ │ │ ├── CSVWriter.mos │ │ │ │ │ │ ├── JSONWriter.mos │ │ │ │ │ │ ├── WeeklySchedule.mos │ │ │ │ │ │ └── WeeklySchedule7to19.mos │ │ │ │ │ └── Validation │ │ │ │ │ │ └── WeeklyScheduleWindowsLineEndings.mos │ │ │ │ └── SignalExchange │ │ │ │ │ └── Examples │ │ │ │ │ ├── FirstOrder.mos │ │ │ │ │ └── WeatherStation.mos │ │ │ │ ├── KPIs │ │ │ │ └── Examples │ │ │ │ │ ├── Co2Kpis.mos │ │ │ │ │ ├── EnergyKpis.mos │ │ │ │ │ ├── IntegralErrorDualReference.mos │ │ │ │ │ ├── IntegralErrorSingleReference.mos │ │ │ │ │ └── TemperatureKpis.mos │ │ │ │ ├── Math │ │ │ │ ├── Examples │ │ │ │ │ ├── Average.mos │ │ │ │ │ ├── BesselJ0.mos │ │ │ │ │ ├── BesselJ1.mos │ │ │ │ │ ├── BesselY0.mos │ │ │ │ │ ├── BesselY1.mos │ │ │ │ │ ├── Bicubic.mos │ │ │ │ │ ├── Binomial.mos │ │ │ │ │ ├── Biquadratic.mos │ │ │ │ │ ├── BooleanReplicator.mos │ │ │ │ │ ├── ExponentialIntegralE1.mos │ │ │ │ │ ├── Factorial.mos │ │ │ │ │ ├── FallingFactorial.mos │ │ │ │ │ ├── IntegerReplicator.mos │ │ │ │ │ ├── IntegratorWithReset.mos │ │ │ │ │ ├── Interpolate.mos │ │ │ │ │ ├── InverseXRegularized.mos │ │ │ │ │ ├── MovingAverage.mos │ │ │ │ │ ├── Polynomial.mos │ │ │ │ │ ├── PowerLinearized.mos │ │ │ │ │ ├── QuadraticLinear.mos │ │ │ │ │ ├── RegNonZeroPower.mos │ │ │ │ │ ├── SmoothBlocks.mos │ │ │ │ │ ├── SmoothExponential.mos │ │ │ │ │ ├── SmoothHeaviside.mos │ │ │ │ │ ├── SmoothLimit.mos │ │ │ │ │ ├── SmoothMin.mos │ │ │ │ │ ├── Splice.mos │ │ │ │ │ └── VectorFunctions.mos │ │ │ │ └── Functions │ │ │ │ │ └── Examples │ │ │ │ │ ├── BesselJ0.mos │ │ │ │ │ ├── BesselJ1.mos │ │ │ │ │ ├── BesselY0.mos │ │ │ │ │ ├── BesselY1.mos │ │ │ │ │ ├── Binomial.mos │ │ │ │ │ ├── CubicHermite.mos │ │ │ │ │ ├── ExponentialIntegralE1.mos │ │ │ │ │ ├── Factorial.mos │ │ │ │ │ ├── FallingFactorial.mos │ │ │ │ │ ├── Interpolate.mos │ │ │ │ │ ├── InverseXDerivativeCheck.mos │ │ │ │ │ ├── InverseXDerivative_2_Check.mos │ │ │ │ │ ├── InverseXRegularized.mos │ │ │ │ │ ├── IsMonotonic.mos │ │ │ │ │ ├── Polynomial.mos │ │ │ │ │ ├── PowerLinearized.mos │ │ │ │ │ ├── QuinticHermite.mos │ │ │ │ │ ├── RegNonZeroPower.mos │ │ │ │ │ ├── RegNonZeroPowerDerivativeCheck.mos │ │ │ │ │ ├── RegNonZeroPowerDerivative_2_Check.mos │ │ │ │ │ ├── RegStep.mos │ │ │ │ │ ├── Round.mos │ │ │ │ │ ├── SmoothExponentialDerivativeCheck.mos │ │ │ │ │ ├── SmoothHeavisideDerivatives.mos │ │ │ │ │ ├── SmoothInterpolation.mos │ │ │ │ │ ├── SpliceFunction.mos │ │ │ │ │ ├── SpliceFunctionDerivativeCheck.mos │ │ │ │ │ └── TrapezoidalIntegration.mos │ │ │ │ ├── Psychrometrics │ │ │ │ ├── Examples │ │ │ │ │ ├── Density_pTX.mos │ │ │ │ │ ├── DewPointTemperature.mos │ │ │ │ │ ├── HumidityRatioPressure.mos │ │ │ │ │ ├── MassFraction_pTphi.mos │ │ │ │ │ ├── Phi_pTX.mos │ │ │ │ │ ├── SaturationPressure.mos │ │ │ │ │ ├── SaturationPressureLiquid.mos │ │ │ │ │ ├── SublimationPressureIce.mos │ │ │ │ │ ├── TWetBul_TDryBulPhi.mos │ │ │ │ │ ├── TWetBul_TDryBulXi.mos │ │ │ │ │ └── TotalAirDryAir.mos │ │ │ │ └── Functions │ │ │ │ │ ├── BaseClasses │ │ │ │ │ └── Examples │ │ │ │ │ │ ├── DewPointTemperatureDerivativeCheck.mos │ │ │ │ │ │ ├── DewPointTemperatureDerivativeCheck_amb.mos │ │ │ │ │ │ ├── InverseDewPointTemperatureDerivativeCheck_amb.mos │ │ │ │ │ │ ├── SaturationPressureDerivativeCheck.mos │ │ │ │ │ │ └── WaterVaporPressureDerivativeCheck.mos │ │ │ │ │ └── Examples │ │ │ │ │ ├── Density_pTX.mos │ │ │ │ │ ├── SaturationPressure.mos │ │ │ │ │ ├── X_pSatpphi.mos │ │ │ │ │ ├── pW_TDewPoi.mos │ │ │ │ │ ├── pW_TDewPoi_comparison.mos │ │ │ │ │ ├── pW_X.mos │ │ │ │ │ └── phi_pTX.mos │ │ │ │ ├── Sensors │ │ │ │ └── Examples │ │ │ │ │ └── ExergyMeters.mos │ │ │ │ └── Time │ │ │ │ ├── Examples │ │ │ │ ├── CalendarTime.mos │ │ │ │ └── ModelTime.mos │ │ │ │ └── Validation │ │ │ │ ├── CalendarTimeMonths.mos │ │ │ │ ├── CalendarTimeMonthsMinus.mos │ │ │ │ └── CalendarTimeMonthsPlus.mos │ │ ├── JModelica │ │ │ └── buildingspy_to_csv.py │ │ ├── mergeModelicaIBPSA.py │ │ ├── mergePaths.json │ │ └── travis │ │ │ ├── Makefile │ │ │ ├── bin │ │ │ ├── dymola │ │ │ └── jm_ipython.sh │ │ │ ├── dymola │ │ │ └── dymola │ │ │ └── omc │ │ │ └── omc │ ├── SocketCommunicationServer │ │ ├── ExampleServer.cpp │ │ └── ExampleServer.exe │ ├── bin │ │ └── ConvertWeatherData.jar │ ├── src │ │ ├── ThermalZones │ │ │ └── ISO13790 │ │ │ │ └── Validation │ │ │ │ └── BESTEST │ │ │ │ ├── ASHRAE140_data.dat │ │ │ │ └── simulateAndPlot.py │ │ ├── convertEPW │ │ │ ├── Makefile │ │ │ ├── doc │ │ │ │ ├── ConvertWeatherData.html │ │ │ │ ├── allclasses-frame.html │ │ │ │ ├── allclasses-index.html │ │ │ │ ├── allclasses-noframe.html │ │ │ │ ├── allclasses.html │ │ │ │ ├── allpackages-index.html │ │ │ │ ├── constant-values.html │ │ │ │ ├── deprecated-list.html │ │ │ │ ├── element-list │ │ │ │ ├── help-doc.html │ │ │ │ ├── index-all.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery │ │ │ │ │ ├── external │ │ │ │ │ │ └── jquery │ │ │ │ │ │ │ └── jquery.js │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery-3.3.1.js │ │ │ │ │ ├── jquery-3.5.1.js │ │ │ │ │ ├── jquery-migrate-3.0.1.js │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ ├── jquery-ui.js │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery-ui.min.js │ │ │ │ │ ├── jquery-ui.structure.css │ │ │ │ │ └── jquery-ui.structure.min.css │ │ │ │ ├── member-search-index.js │ │ │ │ ├── member-search-index.zip │ │ │ │ ├── overview-tree.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-list │ │ │ │ ├── package-search-index.js │ │ │ │ ├── package-search-index.zip │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── resources │ │ │ │ │ ├── glass.png │ │ │ │ │ ├── inherit.gif │ │ │ │ │ └── x.png │ │ │ │ ├── script.js │ │ │ │ ├── search.js │ │ │ │ ├── stylesheet.css │ │ │ │ ├── type-search-index.js │ │ │ │ └── type-search-index.zip │ │ │ └── src │ │ │ │ ├── ConvertWeatherData.java │ │ │ │ ├── Makefile │ │ │ │ └── Manifest.txt │ │ └── fluid │ │ │ └── heatpumps │ │ │ └── calibration │ │ │ ├── Examples │ │ │ ├── .gitignore │ │ │ ├── SomeManufacturer_ABC060_70kW_4_0COP_R410A.mo │ │ │ ├── __init__.py │ │ │ ├── dummy_performance_data.py │ │ │ ├── example_calibration.py │ │ │ ├── package.order │ │ │ └── somePerformanceData.txt │ │ │ ├── Makefile │ │ │ ├── PythonModel │ │ │ ├── __init__.py │ │ │ ├── calibrate.py │ │ │ ├── compressors.py │ │ │ ├── fluids.py │ │ │ ├── heatexchangers.py │ │ │ ├── heatpumps.py │ │ │ └── refrigerants.py │ │ │ ├── __init__.py │ │ │ ├── doc │ │ │ ├── Makefile │ │ │ ├── build │ │ │ │ └── html │ │ │ │ │ ├── _images │ │ │ │ │ ├── calibration_final_parameters.png │ │ │ │ │ └── calibration_guess_parameters.png │ │ │ │ │ ├── _sources │ │ │ │ │ ├── calibrate.rst.txt │ │ │ │ │ ├── compressors.rst.txt │ │ │ │ │ ├── dummy_performance_data.rst.txt │ │ │ │ │ ├── example_calibration.rst.txt │ │ │ │ │ ├── fluids.rst.txt │ │ │ │ │ ├── heatexchangers.rst.txt │ │ │ │ │ ├── heatpumps.rst.txt │ │ │ │ │ ├── index.rst.txt │ │ │ │ │ └── refrigerants.rst.txt │ │ │ │ │ ├── _static │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ ├── basic.css │ │ │ │ │ ├── bootstrap-2.3.2 │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ │ ├── bootstrap-3.3.6 │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ └── npm.js │ │ │ │ │ ├── bootstrap-3.3.7 │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ └── npm.js │ │ │ │ │ ├── bootstrap-3.4.1 │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ └── npm.js │ │ │ │ │ ├── bootstrap-sphinx.css │ │ │ │ │ ├── bootstrap-sphinx.js │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap_custom.css │ │ │ │ │ ├── bootswatch-2.3.2 │ │ │ │ │ │ ├── amelia │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── cerulean │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── cosmo │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── cyborg │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── flatly │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ │ ├── journal │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── readable │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── simplex │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── slate │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── spacelab │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── spruce │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── superhero │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ └── united │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ ├── bootswatch-3.3.6 │ │ │ │ │ │ ├── cerulean │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── cosmo │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── cyborg │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── darkly │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── flatly │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ ├── journal │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── lumen │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── paper │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── readable │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── sandstone │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── simplex │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── slate │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── spacelab │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── superhero │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── united │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ └── yeti │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ ├── bootswatch-3.3.7 │ │ │ │ │ │ ├── cerulean │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── cosmo │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── cyborg │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── darkly │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── flatly │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ ├── journal │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── lumen │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── paper │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── readable │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── sandstone │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── simplex │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── slate │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── solar │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── spacelab │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── superhero │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── united │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ └── yeti │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ ├── bootswatch-3.4.1 │ │ │ │ │ │ ├── cerulean │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── cosmo │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── cyborg │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── darkly │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── flatly │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ ├── journal │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── lumen │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── paper │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── readable │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── sandstone │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── simplex │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── slate │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── spacelab │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── superhero │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ ├── united │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ └── yeti │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ ├── comment-bright.png │ │ │ │ │ ├── comment-close.png │ │ │ │ │ ├── comment.png │ │ │ │ │ ├── custom-sphinx.css │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── doctools.js │ │ │ │ │ ├── documentation_options.js │ │ │ │ │ ├── down-pressed.png │ │ │ │ │ ├── down.png │ │ │ │ │ ├── file.png │ │ │ │ │ ├── jquery-3.1.0.js │ │ │ │ │ ├── jquery-3.2.1.js │ │ │ │ │ ├── jquery-3.5.1.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jquery-1.11.0.min.js │ │ │ │ │ │ ├── jquery-1.12.4.min.js │ │ │ │ │ │ └── jquery-fix.js │ │ │ │ │ ├── language_data.js │ │ │ │ │ ├── lbl-icon.ico │ │ │ │ │ ├── lbl-icon.png │ │ │ │ │ ├── lbl-icon.psd │ │ │ │ │ ├── lbl-logo.png │ │ │ │ │ ├── lbl-logo.psd │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── pygments.css │ │ │ │ │ ├── searchtools.js │ │ │ │ │ ├── sphinxdoc.css │ │ │ │ │ ├── underscore-1.13.1.js │ │ │ │ │ ├── underscore-1.3.1.js │ │ │ │ │ ├── underscore.js │ │ │ │ │ ├── up-pressed.png │ │ │ │ │ ├── up.png │ │ │ │ │ └── websupport.js │ │ │ │ │ ├── calibrate.html │ │ │ │ │ ├── compressors.html │ │ │ │ │ ├── dummy_performance_data.html │ │ │ │ │ ├── example_calibration.html │ │ │ │ │ ├── fluids.html │ │ │ │ │ ├── genindex.html │ │ │ │ │ ├── heatexchangers.html │ │ │ │ │ ├── heatpumps.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── objects.inv │ │ │ │ │ ├── py-modindex.html │ │ │ │ │ ├── refrigerants.html │ │ │ │ │ ├── search.html │ │ │ │ │ └── searchindex.js │ │ │ ├── make.bat │ │ │ ├── requirements.txt │ │ │ └── source │ │ │ │ ├── _figures │ │ │ │ ├── calibration_final_parameters.png │ │ │ │ └── calibration_guess_parameters.png │ │ │ │ ├── _static │ │ │ │ ├── basic.css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap_custom.css │ │ │ │ ├── custom-sphinx.css │ │ │ │ ├── custom.css │ │ │ │ ├── lbl-icon.ico │ │ │ │ ├── lbl-icon.png │ │ │ │ ├── lbl-icon.psd │ │ │ │ ├── lbl-logo.png │ │ │ │ ├── lbl-logo.psd │ │ │ │ ├── pygments.css │ │ │ │ └── sphinxdoc.css │ │ │ │ ├── _templates │ │ │ │ ├── layout.html │ │ │ │ ├── navbar.html │ │ │ │ └── sourcelink.html │ │ │ │ ├── calibrate.rst │ │ │ │ ├── compressors.rst │ │ │ │ ├── conf.py │ │ │ │ ├── dummy_performance_data.rst │ │ │ │ ├── example_calibration.rst │ │ │ │ ├── fluids.rst │ │ │ │ ├── heatexchangers.rst │ │ │ │ ├── heatpumps.rst │ │ │ │ ├── index.rst │ │ │ │ └── refrigerants.rst │ │ │ └── manufacturerData.txt │ ├── weatherdata │ │ ├── ASHRAE140.mos │ │ ├── DEU_NW_Morschenich_for_MultizoneInterzonalsFixedHeaterExample.mos │ │ ├── DRYCOLD.TMY │ │ ├── DRYCOLD.mos │ │ ├── NIST_onemin_Ground_2016.txt │ │ ├── NIST_onemin_Roof_2016.txt │ │ ├── TRY2010_12_Jahr_Modelica-Library.txt │ │ ├── TRY2015_524042130202_Jahr.txt │ │ ├── TRY2015_Jahr_City_Aachen.mos │ │ ├── USA_CA_San.Francisco.Intl.AP.724940_TMY3.epw │ │ ├── USA_CA_San.Francisco.Intl.AP.724940_TMY3.mos │ │ ├── USA_CO_Denver.Intl.AP.725650_TMY3.epw │ │ ├── USA_CO_Denver.Intl.AP.725650_TMY3.mos │ │ ├── USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw │ │ ├── USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.mos │ │ ├── WeatherData_Ashrae140_LOM.txt │ │ ├── Weather_TRY_Berlin_winter.mos │ │ └── Weatherdata_ASHARE140.txt │ └── www │ │ ├── navigation.png │ │ └── wiki │ │ ├── SimulationSetupModelica.svg │ │ ├── SimulationSetupSchema.pptx │ │ └── SimulationSetupSchema.svg ├── Systems │ ├── HydraulicModules │ │ ├── Admix.mo │ │ ├── BaseClasses │ │ │ ├── BasicPumpInterface.mo │ │ │ ├── HydraulicBus.mo │ │ │ ├── PartialHydraulicModule.mo │ │ │ ├── PumpInterface_PumpHeadControlled.mo │ │ │ ├── PumpInterface_PumpSpeedControlled.mo │ │ │ ├── PumpInterface_SpeedControlledNrpm.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Controller │ │ │ ├── CalcHydraulicPower.mo │ │ │ ├── CtrMix.mo │ │ │ ├── CtrPump.mo │ │ │ ├── CtrPumpVFlow.mo │ │ │ ├── CtrThrottle.mo │ │ │ ├── CtrThrottleQFlow.mo │ │ │ ├── CtrThrottleVFlow.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── Admix.mo │ │ │ ├── ERC_ExperimentalHall_CoolingCircuit.mo │ │ │ ├── Injection.mo │ │ │ ├── Injection2WayValve.mo │ │ │ ├── Pump.mo │ │ │ ├── Throttle.mo │ │ │ ├── ThrottlePump.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Injection.mo │ │ ├── Injection2WayValve.mo │ │ ├── Pump.mo │ │ ├── SimpleConsumer.mo │ │ ├── Throttle.mo │ │ ├── ThrottlePump.mo │ │ ├── package.mo │ │ └── package.order │ ├── ModularAHU │ │ ├── BaseClasses │ │ │ ├── GenericAHUBus.mo │ │ │ ├── RegisterBus.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Controller │ │ │ ├── CtrAHUBasic.mo │ │ │ ├── CtrAHUCO2.mo │ │ │ ├── CtrRegBasic.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── Cooler.mo │ │ │ ├── DemandControlledAHU.mo │ │ │ ├── EONERC_AHU2.mo │ │ │ ├── GenericAHU.mo │ │ │ ├── Heater.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── GenericAHU.mo │ │ ├── RegisterModule.mo │ │ ├── Validation │ │ │ ├── AHU2_Cooler.mo │ │ │ ├── AHU2_Heater.mo │ │ │ ├── AHU2_Preheater.mo │ │ │ ├── MeasuredData │ │ │ │ ├── AHU2_Cooler_RampValve.mo │ │ │ │ ├── AHU2_Cooler_StepResponse.mo │ │ │ │ ├── AHU2_Preheater_ControlTest.mo │ │ │ │ ├── AHU2_Preheater_RampValve.mo │ │ │ │ ├── AHU2_Preheater_StepResponse.mo │ │ │ │ ├── AHU2_Reheater_RampValve.mo │ │ │ │ ├── AHU2_Reheater_StepResponse.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── ScalableGenerationModules │ │ ├── ScalableBoiler │ │ │ ├── Controls │ │ │ │ ├── BoilerControl.mo │ │ │ │ ├── DeviceStatusDelay.mo │ │ │ │ ├── FeedbackControl.mo │ │ │ │ ├── FirRatMinCheck.mo │ │ │ │ ├── InternalFirRatControl.mo │ │ │ │ ├── SafetyControl.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── ScalableBoilerConstantSup.mo │ │ │ │ ├── ScalableBoilerFeedbackNew.mo │ │ │ │ ├── ScalableBoilerHeatingCurve.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ScalableBoiler.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── TABS │ │ ├── BaseClasses │ │ │ ├── TabsBus.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Controller │ │ │ ├── CtrTabs.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── Tabs.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Tabs.mo │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── ThermalZones │ ├── HighOrder │ │ ├── Components │ │ │ ├── DryAir │ │ │ │ ├── Airload.mo │ │ │ │ ├── DynamicVentilation.mo │ │ │ │ ├── InfiltrationRate_DIN12831.mo │ │ │ │ ├── VarAirExchange.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── DryAir │ │ │ │ │ ├── DryAir_test.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Walls │ │ │ │ │ ├── InsideWall.mo │ │ │ │ │ ├── OutsideWall.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── WindowsDoors │ │ │ │ │ ├── DoorSimple.mo │ │ │ │ │ ├── WindowSimple.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── MoistAir │ │ │ │ ├── VarMoistAirExchange.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Shadow │ │ │ │ ├── Examples │ │ │ │ │ ├── ShadowEffectTest.mo │ │ │ │ │ ├── ShadowLengthTest.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── RadiationTransfer.mo │ │ │ │ ├── ShadowEffect.mo │ │ │ │ ├── ShadowLength.mo │ │ │ │ ├── Types │ │ │ │ │ ├── package.mo │ │ │ │ │ ├── package.order │ │ │ │ │ └── selectorShadowEffectMode.mo │ │ │ │ ├── WeatherDataProcessing.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Sunblinds │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── PartialSunblind.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Sunblind.mo │ │ │ │ ├── SunblindTimeVariable.mo │ │ │ │ ├── Sunblind_Task44.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Types │ │ │ │ ├── CalcMethodConvectiveHeatTransfer.mo │ │ │ │ ├── CalcMethodConvectiveHeatTransferInsideSurface.mo │ │ │ │ ├── CalcMethodRadiativeHeatTransfer.mo │ │ │ │ ├── CoeffTableEastWestWindow.mo │ │ │ │ ├── CoeffTableSouthWindow.mo │ │ │ │ ├── InsideSurfaceOrientation.mo │ │ │ │ ├── PartialCoeffTable.mo │ │ │ │ ├── ThermalInsulationRegulation.mo │ │ │ │ ├── package.mo │ │ │ │ ├── package.order │ │ │ │ └── selectorCoefficients.mo │ │ │ ├── Walls │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── ConvNLayerClearanceStar.mo │ │ │ │ │ ├── SimpleNLayer.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Wall.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── WindowsDoors │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── CorrectionSolarGain │ │ │ │ │ │ ├── CorGSimple.mo │ │ │ │ │ │ ├── CorG_ASHRAE140.mo │ │ │ │ │ │ ├── CorG_VDI6007.mo │ │ │ │ │ │ ├── PartialCorG.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── PartialWindow.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Door.mo │ │ │ │ ├── WindowSimple.mo │ │ │ │ ├── Window_ASHRAE140.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── ASHREA140 │ │ │ │ ├── CompareDynamicAndStaticSolarFrac_Case270.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── OFDHeatLoad.mo │ │ │ ├── OFD_1Jan.mo │ │ │ ├── RoomGFOw2_DayNightMode.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── House │ │ │ ├── OFD_MiddleInnerLoadWall │ │ │ │ ├── BuildingEnvelope │ │ │ │ │ ├── GroundFloorBuildingEnvelope.mo │ │ │ │ │ ├── UpperFloorBuildingEnvelope.mo │ │ │ │ │ ├── WholeHouseBuildingEnvelope.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── EnergySystem │ │ │ │ │ ├── IdealHeaters │ │ │ │ │ │ ├── GroundFloor.mo │ │ │ │ │ │ ├── UpperFloor.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Rooms │ │ │ ├── ASHRAE140 │ │ │ │ ├── EastWestFacingWindows.mo │ │ │ │ ├── SouthFacingWindows.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── BaseClasses │ │ │ │ ├── PartialRoom.mo │ │ │ │ ├── PartialRoomFourWalls.mo │ │ │ │ ├── PartialRoomParams.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── OFD │ │ │ │ ├── Attic_Ro2Lf5.mo │ │ │ │ ├── Ow1IwL2IwS1Gr1Uf1.mo │ │ │ │ ├── Ow1IwL2IwS1Lf1At1Ro1.mo │ │ │ │ ├── Ow2IwL1IwS1Gr1Uf1.mo │ │ │ │ ├── Ow2IwL1IwS1Lf1At1Ro1.mo │ │ │ │ ├── Ow2IwL2IwS1Gr1Uf1.mo │ │ │ │ ├── Ow2IwL2IwS1Lf1At1Ro1.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── RoomEmpiricalValidation │ │ │ │ ├── RoomTwinHouseN2.mo │ │ │ │ ├── RoomWarehouse.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Validation │ │ │ ├── ASHRAE140 │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── CheckResultsAccordingToASHRAE.mo │ │ │ │ │ ├── PartialCase.mo │ │ │ │ │ ├── ValidationData │ │ │ │ │ │ ├── AcceptedResultsFromASHRAECoolingLoad.mo │ │ │ │ │ │ ├── AcceptedResultsFromASHRAEHeatingLoad.mo │ │ │ │ │ │ ├── ValidationDataASHRAEBaseDataDefinition.mo │ │ │ │ │ │ ├── package.mo │ │ │ │ │ │ └── package.order │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Case210.mo │ │ │ │ ├── Case220.mo │ │ │ │ ├── Case230.mo │ │ │ │ ├── Case240.mo │ │ │ │ ├── Case250.mo │ │ │ │ ├── Case270.mo │ │ │ │ ├── Case280.mo │ │ │ │ ├── Case300.mo │ │ │ │ ├── Case320.mo │ │ │ │ ├── Case395.mo │ │ │ │ ├── Case400.mo │ │ │ │ ├── Case410.mo │ │ │ │ ├── Case420.mo │ │ │ │ ├── Case430.mo │ │ │ │ ├── Case440.mo │ │ │ │ ├── Case600.mo │ │ │ │ ├── Case600FF.mo │ │ │ │ ├── Case620.mo │ │ │ │ ├── Case640.mo │ │ │ │ ├── Case650.mo │ │ │ │ ├── Case650FF.mo │ │ │ │ ├── Case800.mo │ │ │ │ ├── Case810.mo │ │ │ │ ├── Case900.mo │ │ │ │ ├── Case900FF.mo │ │ │ │ ├── Case920.mo │ │ │ │ ├── Case940.mo │ │ │ │ ├── Case950.mo │ │ │ │ ├── Case950FF.mo │ │ │ │ ├── UsersGuide │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── EmpiricalValidation │ │ │ │ ├── TwinHouseN2.mo │ │ │ │ ├── Warehouse.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── ISO13790 │ │ ├── BaseClasses │ │ │ ├── GainMass.mo │ │ │ ├── GainSurface.mo │ │ │ ├── GlazedElements.mo │ │ │ ├── OpaqueElements.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Data │ │ │ ├── Generic.mo │ │ │ ├── Heavy.mo │ │ │ ├── Light.mo │ │ │ ├── Medium.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── FreeFloating.mo │ │ │ ├── FreeFloatingHVAC.mo │ │ │ ├── HeatingCooling.mo │ │ │ ├── HeatingCoolingHVAC.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Validation │ │ │ ├── BESTEST │ │ │ │ ├── Case600.mo │ │ │ │ ├── Case600FF.mo │ │ │ │ ├── Case900.mo │ │ │ │ ├── Case900FF.mo │ │ │ │ ├── Cases6xx │ │ │ │ │ ├── Case600.mo │ │ │ │ │ ├── Case600FF.mo │ │ │ │ │ ├── Case610.mo │ │ │ │ │ ├── Case620.mo │ │ │ │ │ ├── Case630.mo │ │ │ │ │ ├── Case640.mo │ │ │ │ │ ├── Case650.mo │ │ │ │ │ ├── Case650FF.mo │ │ │ │ │ ├── Case660.mo │ │ │ │ │ ├── Case670.mo │ │ │ │ │ ├── Case680.mo │ │ │ │ │ ├── Case680FF.mo │ │ │ │ │ ├── Case685.mo │ │ │ │ │ ├── Case695.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Cases9xx │ │ │ │ │ ├── Case900.mo │ │ │ │ │ ├── Case900FF.mo │ │ │ │ │ ├── Case910.mo │ │ │ │ │ ├── Case920.mo │ │ │ │ │ ├── Case930.mo │ │ │ │ │ ├── Case940.mo │ │ │ │ │ ├── Case950.mo │ │ │ │ │ ├── Case950FF.mo │ │ │ │ │ ├── Case980.mo │ │ │ │ │ ├── Case980FF.mo │ │ │ │ │ ├── Case985.mo │ │ │ │ │ ├── Case995.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Data │ │ │ │ │ ├── Case600FFResults.mo │ │ │ │ │ ├── Case600Mass.mo │ │ │ │ │ ├── Case600Results.mo │ │ │ │ │ ├── Case900Mass.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── UsersGuide.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Zone5R1C │ │ │ ├── Zone.mo │ │ │ ├── ZoneHVAC.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── ReducedOrder │ │ ├── EquivalentAirTemperature │ │ │ ├── BaseClasses │ │ │ │ ├── PartialVDI6007.mo │ │ │ │ ├── SourceSelector.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── VDI6007.mo │ │ │ ├── VDI6007WithWindow.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── ComparisonThermalZoneMoistAndDryAir.mo │ │ │ ├── Multizone.mo │ │ │ ├── MultizoneEquipped.mo │ │ │ ├── MultizoneInterzonalsFixedHeater.mo │ │ │ ├── MultizoneMoistAirCO2.mo │ │ │ ├── MultizoneMoistAirCO2Equipped.mo │ │ │ ├── MultizoneMoistAirCO2EquippedSwimmingFacility.mo │ │ │ ├── MultizonePartlyCooled.mo │ │ │ ├── SimpleRoomFourElements.mo │ │ │ ├── SimpleRoomFourElementsTraceSubstance.mo │ │ │ ├── SimpleRoomOneElement.mo │ │ │ ├── SimpleRoomThreeElements.mo │ │ │ ├── SimpleRoomTwoElements.mo │ │ │ ├── SimpleRoomTwoElementsNonConstantTGround.mo │ │ │ ├── ThermalZone.mo │ │ │ ├── ThermalZoneAirExchange.mo │ │ │ ├── ThermalZoneMoistAir.mo │ │ │ ├── ThermalZoneMoistAirSwimmingPool.mo │ │ │ ├── ThermalZoneMoistCO2AirExchange.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Multizone │ │ │ ├── BaseClasses │ │ │ │ ├── AbsToRelHum.mo │ │ │ │ ├── AirFlowRateSplit.mo │ │ │ │ ├── AirFlowRateSum.mo │ │ │ │ ├── FlowArrayRearranging.mo │ │ │ │ ├── MoistSplitter.mo │ │ │ │ ├── MultizonePostProcessing.mo │ │ │ │ ├── PartialMultizone.mo │ │ │ │ ├── RelToAbsHum.mo │ │ │ │ ├── SumCondition.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Multizone.mo │ │ │ ├── MultizoneEquipped.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── RC │ │ │ ├── BaseClasses │ │ │ │ ├── ExteriorWall.mo │ │ │ │ ├── ExteriorWallContainer.mo │ │ │ │ ├── GSurfSurf.mo │ │ │ │ ├── InteriorWall.mo │ │ │ │ ├── ThermSplitter.mo │ │ │ │ ├── package.mo │ │ │ │ ├── package.order │ │ │ │ └── splitFacVal.mo │ │ │ ├── FiveElements.mo │ │ │ ├── FourElements.mo │ │ │ ├── OneElement.mo │ │ │ ├── ThreeElements.mo │ │ │ ├── TwoElements.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── SolarGain │ │ │ ├── BaseClasses │ │ │ │ ├── PartialCorrectionG.mo │ │ │ │ ├── PartialCorrectionGTaue.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── CorrectionGDoublePane.mo │ │ │ ├── CorrectionGTaueDoublePane.mo │ │ │ ├── SimpleExternalShading.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ThermalZone │ │ │ ├── BaseClasses │ │ │ │ ├── PartialThermalZone.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ThermalZone.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Validation │ │ │ ├── ASHRAE140 │ │ │ │ ├── FiveElements │ │ │ │ │ ├── TestCase960.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── FourElements │ │ │ │ │ ├── TestCase600.mo │ │ │ │ │ ├── TestCase600FF.mo │ │ │ │ │ ├── TestCase620.mo │ │ │ │ │ ├── TestCase640.mo │ │ │ │ │ ├── TestCase650.mo │ │ │ │ │ ├── TestCase650FF.mo │ │ │ │ │ ├── TestCase900.mo │ │ │ │ │ ├── TestCase900FF.mo │ │ │ │ │ ├── TestCase920.mo │ │ │ │ │ ├── TestCase940.mo │ │ │ │ │ ├── TestCase950.mo │ │ │ │ │ ├── TestCase950FF.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── OneElement │ │ │ │ │ ├── TestCase600.mo │ │ │ │ │ ├── TestCase600FF.mo │ │ │ │ │ ├── TestCase620.mo │ │ │ │ │ ├── TestCase640.mo │ │ │ │ │ ├── TestCase650.mo │ │ │ │ │ ├── TestCase650FF.mo │ │ │ │ │ ├── TestCase900.mo │ │ │ │ │ ├── TestCase900FF.mo │ │ │ │ │ ├── TestCase920.mo │ │ │ │ │ ├── TestCase940.mo │ │ │ │ │ ├── TestCase950.mo │ │ │ │ │ ├── TestCase950FF.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── ThreeElements │ │ │ │ │ ├── TestCase600.mo │ │ │ │ │ ├── TestCase600FF.mo │ │ │ │ │ ├── TestCase620.mo │ │ │ │ │ ├── TestCase640.mo │ │ │ │ │ ├── TestCase650.mo │ │ │ │ │ ├── TestCase650FF.mo │ │ │ │ │ ├── TestCase900.mo │ │ │ │ │ ├── TestCase900FF.mo │ │ │ │ │ ├── TestCase920.mo │ │ │ │ │ ├── TestCase940.mo │ │ │ │ │ ├── TestCase950.mo │ │ │ │ │ ├── TestCase950FF.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── TwoElements │ │ │ │ │ ├── TestCase600.mo │ │ │ │ │ ├── TestCase600FF.mo │ │ │ │ │ ├── TestCase620.mo │ │ │ │ │ ├── TestCase640.mo │ │ │ │ │ ├── TestCase650.mo │ │ │ │ │ ├── TestCase650FF.mo │ │ │ │ │ ├── TestCase900.mo │ │ │ │ │ ├── TestCase900FF.mo │ │ │ │ │ ├── TestCase920.mo │ │ │ │ │ ├── TestCase940.mo │ │ │ │ │ ├── TestCase950.mo │ │ │ │ │ ├── TestCase950FF.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── RoomSteadyState.mo │ │ │ ├── RoomWithLatentGain.mo │ │ │ ├── RoomWithoutLatentGain.mo │ │ │ ├── VDI6007 │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── VerifyDifferenceThreePeriods.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── TestCase1.mo │ │ │ │ ├── TestCase10.mo │ │ │ │ ├── TestCase11.mo │ │ │ │ ├── TestCase12.mo │ │ │ │ ├── TestCase2.mo │ │ │ │ ├── TestCase3.mo │ │ │ │ ├── TestCase4.mo │ │ │ │ ├── TestCase5.mo │ │ │ │ ├── TestCase6.mo │ │ │ │ ├── TestCase7.mo │ │ │ │ ├── TestCase8.mo │ │ │ │ ├── TestCase9.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Windows │ │ │ ├── BaseClasses │ │ │ │ ├── Conversions │ │ │ │ │ ├── HDifToClearCovered.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ ├── package.order │ │ │ │ │ ├── to_HDirNor.mo │ │ │ │ │ ├── to_northAzimuth.mo │ │ │ │ │ └── to_surfaceTiltVDI.mo │ │ │ │ ├── HVisible.mo │ │ │ │ ├── HWindow.mo │ │ │ │ ├── HeatIllumination.mo │ │ │ │ ├── Illumination.mo │ │ │ │ ├── SelfShadowing.mo │ │ │ │ ├── ShadedWindow.mo │ │ │ │ ├── SkylineShadowing.mo │ │ │ │ ├── Sunblind.mo │ │ │ │ ├── VentilationHeat.mo │ │ │ │ ├── Window.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── Illumination.mo │ │ │ │ ├── ShadedWindow.mo │ │ │ │ ├── VentilationHeat.mo │ │ │ │ ├── Window.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ShadedWindow.mo │ │ │ ├── UsersGuide.mo │ │ │ ├── Validation │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── IncidenceAngleVDI6007.mo │ │ │ │ │ ├── SolarDeclinationAngleVDI6007.mo │ │ │ │ │ ├── SolarHourAngleVDI6007.mo │ │ │ │ │ ├── e_ILim_TestCasesVDI.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── SelfShadowing │ │ │ │ │ ├── SelfShadowingTestAbove.mo │ │ │ │ │ ├── SelfShadowingTestBelow.mo │ │ │ │ │ ├── SelfShadowingTestLeft.mo │ │ │ │ │ ├── SelfShadowingTestRight.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── SkylineShadowingTest.mo │ │ │ │ ├── VDI2078 │ │ │ │ │ ├── TestCase1_Illumination.mo │ │ │ │ │ ├── TestCase3_VentilationHeat.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Window.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── Types │ ├── Azimuth │ │ ├── package.mo │ │ └── package.order │ ├── Tilt │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── UsersGuide │ ├── Acknowledgements.mo │ ├── Contact.mo │ ├── Conventions │ │ ├── ModelTemplateDocumentation.mo │ │ ├── RecordTemplateDocumentation.mo │ │ ├── package.mo │ │ └── package.order │ ├── Copyright.mo │ ├── License.mo │ ├── package.mo │ └── package.order ├── Utilities │ ├── Assertions │ │ ├── RealPassThroughWithAssertion.mo │ │ ├── package.mo │ │ └── package.order │ ├── Clustering │ │ ├── KMeans.mo │ │ ├── Validation │ │ │ ├── KMeans_1d.mo │ │ │ ├── KMeans_2d.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Communication │ │ ├── SocketCommunication │ │ │ ├── Components │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── PartialTCPCommunicator.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── TCPCommunicatorExample.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── ExampleClientLoop.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── UsersGuide │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Cryptographics │ │ ├── Validation │ │ │ ├── SHA1.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ ├── package.order │ │ └── sha.mo │ ├── Diagnostics │ │ ├── AssertEquality.mo │ │ ├── AssertInequality.mo │ │ ├── BaseClasses │ │ │ ├── PartialInputCheck.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── CheckEquality.mo │ │ ├── Validation │ │ │ ├── CheckEquality.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Examples │ │ ├── HeatConv_outside.mo │ │ ├── HeatTransfer_test.mo │ │ ├── TimeUtilities_test.mo │ │ ├── package.mo │ │ └── package.order │ ├── HeatTransfer │ │ ├── CalcQFlow.mo │ │ ├── CylindricHeatConduction.mo │ │ ├── CylindricHeatTransfer.mo │ │ ├── CylindricLoad.mo │ │ ├── HeatConv.mo │ │ ├── HeatConvInside.mo │ │ ├── HeatConvOutside.mo │ │ ├── HeatConvPipeInsideDynamic.mo │ │ ├── HeatToRad.mo │ │ ├── SolarRadInRoom.mo │ │ ├── SolarRadToHeat.mo │ │ ├── package.mo │ │ └── package.order │ ├── IO │ │ ├── Files │ │ │ ├── BaseClasses │ │ │ │ ├── FileWriter.mo │ │ │ │ ├── FileWriterObject.mo │ │ │ │ ├── JSONWriterObject.mo │ │ │ │ ├── OutputTime.mo │ │ │ │ ├── WeeklyScheduleObject.mo │ │ │ │ ├── cacheVals.mo │ │ │ │ ├── package.mo │ │ │ │ ├── package.order │ │ │ │ └── writeJSON.mo │ │ │ ├── CSVWriter.mo │ │ │ ├── CombiTimeTableWriter.mo │ │ │ ├── Examples │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── PartialCSV.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── CSVReader.mo │ │ │ │ ├── CSVWriter.mo │ │ │ │ ├── JSONWriter.mo │ │ │ │ ├── WeeklySchedule.mo │ │ │ │ ├── WeeklySchedule7to19.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── JSONWriter.mo │ │ │ ├── Validation │ │ │ │ ├── WeeklyScheduleWindowsLineEndings.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── WeeklySchedule.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── SignalExchange │ │ │ ├── Examples │ │ │ │ ├── BaseClasses │ │ │ │ │ ├── ExportedModel.mo │ │ │ │ │ ├── OriginalModel.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── FirstOrder.mo │ │ │ │ ├── WeatherStation.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Overwrite.mo │ │ │ ├── Read.mo │ │ │ ├── SignalTypes │ │ │ │ ├── SignalsForKPIs.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── WeatherStation.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Interfaces │ │ ├── Adaptors │ │ │ ├── ConvRadToCombPort.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ConvRadComb.mo │ │ ├── RadPort.mo │ │ ├── ShortRadSurf.mo │ │ ├── SolarRad_in.mo │ │ ├── SolarRad_out.mo │ │ ├── package.mo │ │ └── package.order │ ├── KPIs │ │ ├── BaseClasses │ │ │ ├── ComfortTemperatureDIN16798.mo │ │ │ ├── PartialAssessmentBase.mo │ │ │ ├── PartialCo2Assessment.mo │ │ │ ├── PartialIntegralErrorDualReference.mo │ │ │ ├── PartialIntegralErrorSingleReference.mo │ │ │ ├── PartialIntegratorBase.mo │ │ │ ├── PartialTemperatureAssessment.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Energy │ │ │ ├── ElectricityMeter.mo │ │ │ ├── ThermalEnergyMeterDual.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Examples │ │ │ ├── Co2Kpis.mo │ │ │ ├── EnergyKpis.mo │ │ │ ├── IntegralErrorDualReference.mo │ │ │ ├── IntegralErrorSingleReference.mo │ │ │ ├── TemperatureKpis.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── IndoorAirQuality │ │ │ ├── Co2DIN16798.mo │ │ │ ├── Co2FixedLimit.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── IntegralErrorDualReference │ │ │ ├── IntegralErrorDualBounds.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── IntegralErrorSingleReference │ │ │ ├── IntegralAbsoluteError.mo │ │ │ ├── IntegralErrorBySign.mo │ │ │ ├── IntegralSquareError.mo │ │ │ ├── IntegralTimer.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Temperature │ │ │ ├── DIN16798.mo │ │ │ ├── FixedBounds.mo │ │ │ ├── FlexibleBounds.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Logical │ │ ├── DynamicHysteresis.mo │ │ ├── SmoothSwitch.mo │ │ ├── package.mo │ │ └── package.order │ ├── MassTransfer │ │ ├── Convection.mo │ │ ├── MassDiffusion.mo │ │ ├── MassFlowSensor.mo │ │ ├── MassPort.mo │ │ ├── PrescribedPartialPressure.mo │ │ ├── package.mo │ │ └── package.order │ ├── Math │ │ ├── Average.mo │ │ ├── BesselJ0.mo │ │ ├── BesselJ1.mo │ │ ├── BesselY0.mo │ │ ├── BesselY1.mo │ │ ├── Bicubic.mo │ │ ├── Binomial.mo │ │ ├── Biquadratic.mo │ │ ├── BooleanReplicator.mo │ │ ├── Examples │ │ │ ├── Average.mo │ │ │ ├── BesselJ0.mo │ │ │ ├── BesselJ1.mo │ │ │ ├── BesselY0.mo │ │ │ ├── BesselY1.mo │ │ │ ├── Bicubic.mo │ │ │ ├── Binomial.mo │ │ │ ├── Biquadratic.mo │ │ │ ├── BooleanReplicator.mo │ │ │ ├── ExponentialIntegralE1.mo │ │ │ ├── Factorial.mo │ │ │ ├── FallingFactorial.mo │ │ │ ├── IntegerReplicator.mo │ │ │ ├── IntegratorWithReset.mo │ │ │ ├── Interpolate.mo │ │ │ ├── InverseXRegularized.mo │ │ │ ├── MovingAverage.mo │ │ │ ├── Polynomial.mo │ │ │ ├── PowerLinearized.mo │ │ │ ├── QuadraticLinear.mo │ │ │ ├── RegNonZeroPower.mo │ │ │ ├── SmoothBlocks.mo │ │ │ ├── SmoothExponential.mo │ │ │ ├── SmoothHeaviside.mo │ │ │ ├── SmoothLimit.mo │ │ │ ├── SmoothMin.mo │ │ │ ├── Splice.mo │ │ │ ├── VectorFunctions.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ExponentialIntegralE1.mo │ │ ├── Factorial.mo │ │ ├── FallingFactorial.mo │ │ ├── Functions │ │ │ ├── BaseClasses │ │ │ │ ├── der_2_regNonZeroPower.mo │ │ │ │ ├── der_2_smoothTransition.mo │ │ │ │ ├── der_inverseXRegularized.mo │ │ │ │ ├── der_regNonZeroPower.mo │ │ │ │ ├── der_smoothTransition.mo │ │ │ │ ├── der_spliceFunction.mo │ │ │ │ ├── package.mo │ │ │ │ ├── package.order │ │ │ │ └── smoothTransition.mo │ │ │ ├── Examples │ │ │ │ ├── BesselJ0.mo │ │ │ │ ├── BesselJ1.mo │ │ │ │ ├── BesselY0.mo │ │ │ │ ├── BesselY1.mo │ │ │ │ ├── Binomial.mo │ │ │ │ ├── CubicHermite.mo │ │ │ │ ├── ExponentialIntegralE1.mo │ │ │ │ ├── Factorial.mo │ │ │ │ ├── FallingFactorial.mo │ │ │ │ ├── Interpolate.mo │ │ │ │ ├── InverseXDerivativeCheck.mo │ │ │ │ ├── InverseXDerivative_2_Check.mo │ │ │ │ ├── InverseXRegularized.mo │ │ │ │ ├── IsMonotonic.mo │ │ │ │ ├── Polynomial.mo │ │ │ │ ├── PowerLinearized.mo │ │ │ │ ├── QuinticHermite.mo │ │ │ │ ├── RegNonZeroPower.mo │ │ │ │ ├── RegNonZeroPowerDerivativeCheck.mo │ │ │ │ ├── RegNonZeroPowerDerivative_2_Check.mo │ │ │ │ ├── RegStep.mo │ │ │ │ ├── Round.mo │ │ │ │ ├── SmoothExponentialDerivativeCheck.mo │ │ │ │ ├── SmoothHeavisideDerivatives.mo │ │ │ │ ├── SmoothInterpolation.mo │ │ │ │ ├── SpliceFunction.mo │ │ │ │ ├── SpliceFunctionDerivativeCheck.mo │ │ │ │ ├── TrapezoidalIntegration.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── average.mo │ │ │ ├── besselJ0.mo │ │ │ ├── besselJ1.mo │ │ │ ├── besselY0.mo │ │ │ ├── besselY1.mo │ │ │ ├── bicubic.mo │ │ │ ├── binomial.mo │ │ │ ├── biquadratic.mo │ │ │ ├── booleanReplicator.mo │ │ │ ├── cubicHermiteLinearExtrapolation.mo │ │ │ ├── exponentialIntegralE1.mo │ │ │ ├── factorial.mo │ │ │ ├── fallingFactorial.mo │ │ │ ├── integerReplicator.mo │ │ │ ├── interpolate.mo │ │ │ ├── inverseXRegularized.mo │ │ │ ├── isMonotonic.mo │ │ │ ├── linearInterpolation.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ ├── polynomial.mo │ │ │ ├── powerLinearized.mo │ │ │ ├── quadraticLinear.mo │ │ │ ├── quinticHermite.mo │ │ │ ├── regNonZeroPower.mo │ │ │ ├── regStep.mo │ │ │ ├── round.mo │ │ │ ├── smoothExponential.mo │ │ │ ├── smoothHeaviside.mo │ │ │ ├── smoothInterpolation.mo │ │ │ ├── smoothLimit.mo │ │ │ ├── smoothMax.mo │ │ │ ├── smoothMin.mo │ │ │ ├── spliceFunction.mo │ │ │ ├── splineDerivatives.mo │ │ │ └── trapezoidalIntegration.mo │ │ ├── IntegerReplicator.mo │ │ ├── IntegratorWithReset.mo │ │ ├── Interpolate.mo │ │ ├── InverseXRegularized.mo │ │ ├── Max.mo │ │ ├── Min.mo │ │ ├── MovingAverage.mo │ │ ├── Polynomial.mo │ │ ├── PowerLinearized.mo │ │ ├── QuadraticLinear.mo │ │ ├── RegNonZeroPower.mo │ │ ├── SmoothExponential.mo │ │ ├── SmoothHeaviside.mo │ │ ├── SmoothLimit.mo │ │ ├── SmoothMax.mo │ │ ├── SmoothMin.mo │ │ ├── Splice.mo │ │ ├── TrapezoidalIntegration.mo │ │ ├── package.mo │ │ └── package.order │ ├── Multiplier │ │ ├── M_flowMultiplier.mo │ │ ├── Q_flowMultiplier.mo │ │ ├── package.mo │ │ └── package.order │ ├── Psychrometrics │ │ ├── BaseClasses │ │ │ ├── HumidityRatioVaporPressure.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Constants.mo │ │ ├── Density_pTX.mo │ │ ├── Examples │ │ │ ├── Density_pTX.mo │ │ │ ├── DewPointTemperature.mo │ │ │ ├── HumidityRatioPressure.mo │ │ │ ├── MassFraction_pTphi.mo │ │ │ ├── Phi_pTX.mo │ │ │ ├── SaturationPressure.mo │ │ │ ├── SaturationPressureLiquid.mo │ │ │ ├── SublimationPressureIce.mo │ │ │ ├── TWetBul_TDryBulPhi.mo │ │ │ ├── TWetBul_TDryBulXi.mo │ │ │ ├── TotalAirDryAir.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Functions │ │ │ ├── BaseClasses │ │ │ │ ├── Examples │ │ │ │ │ ├── DewPointTemperatureDerivativeCheck.mo │ │ │ │ │ ├── DewPointTemperatureDerivativeCheck_amb.mo │ │ │ │ │ ├── InverseDewPointTemperatureDerivativeCheck_amb.mo │ │ │ │ │ ├── SaturationPressureDerivativeCheck.mo │ │ │ │ │ ├── WaterVaporPressureDerivativeCheck.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── der_TDewPoi_pW_amb.mo │ │ │ │ ├── der_pW_TDewPoi.mo │ │ │ │ ├── der_pW_TDewPoi_amb.mo │ │ │ │ ├── der_pW_X.mo │ │ │ │ ├── der_saturationPressureLiquid.mo │ │ │ │ ├── der_sublimationPressureIce.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Examples │ │ │ │ ├── Density_pTX.mo │ │ │ │ ├── SaturationPressure.mo │ │ │ │ ├── X_pSatpphi.mo │ │ │ │ ├── pW_TDewPoi.mo │ │ │ │ ├── pW_TDewPoi_comparison.mo │ │ │ │ ├── pW_X.mo │ │ │ │ ├── package.mo │ │ │ │ ├── package.order │ │ │ │ └── phi_pTX.mo │ │ │ ├── TDewPoi_pW.mo │ │ │ ├── TDewPoi_pW_amb.mo │ │ │ ├── X_pSatpphi.mo │ │ │ ├── X_pTphi.mo │ │ │ ├── X_pW.mo │ │ │ ├── density_pTX.mo │ │ │ ├── pW_TDewPoi.mo │ │ │ ├── pW_TDewPoi_amb.mo │ │ │ ├── pW_X.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ ├── phi_pTX.mo │ │ │ ├── saturationPressure.mo │ │ │ ├── saturationPressureLiquid.mo │ │ │ └── sublimationPressureIce.mo │ │ ├── MixedHumidity.mo │ │ ├── MixedTemperature.mo │ │ ├── Phi_pTX.mo │ │ ├── SaturationPressure.mo │ │ ├── SaturationPressureLiquid.mo │ │ ├── SublimationPressureIce.mo │ │ ├── TDewPoi_pW.mo │ │ ├── TWetBul_TDryBulPhi.mo │ │ ├── TWetBul_TDryBulXi.mo │ │ ├── ToDryAir.mo │ │ ├── ToTotalAir.mo │ │ ├── X_pTphi.mo │ │ ├── X_pW.mo │ │ ├── hSat_pTSat.mo │ │ ├── pW_TDewPoi.mo │ │ ├── pW_X.mo │ │ ├── package.mo │ │ └── package.order │ ├── Sensors │ │ ├── EnergyMeter.mo │ │ ├── Examples │ │ │ ├── ExergyMeters.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ExergyMeter │ │ │ ├── FlowExergyMeter.mo │ │ │ ├── HeatExergyMeter.mo │ │ │ ├── StoredExergyMeter.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── FuelCounter.mo │ │ ├── package.mo │ │ └── package.order │ ├── Sources │ │ ├── BaseParameters.mo │ │ ├── HeaterCooler │ │ │ ├── HeaterCoolerController.mo │ │ │ ├── HeaterCoolerPI.mo │ │ │ ├── PartialHeaterCooler.mo │ │ │ ├── PartialHeaterCoolerPI.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── HourOfDay.mo │ │ ├── NightMode.mo │ │ ├── PrescribedSolarRad.mo │ │ ├── package.mo │ │ └── package.order │ ├── Tables │ │ ├── CombiTable2DExtra.mo │ │ ├── package.mo │ │ └── package.order │ ├── Time │ │ ├── CalendarTime.mo │ │ ├── DaytimeSwitch.mo │ │ ├── Examples │ │ │ ├── CalendarTime.mo │ │ │ ├── ModelTime.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ModelTime.mo │ │ ├── Types │ │ │ ├── ZeroTime.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Validation │ │ │ ├── CalendarTimeMonths.mo │ │ │ ├── CalendarTimeMonthsMinus.mo │ │ │ ├── CalendarTimeMonthsPlus.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── package.mo └── package.order ├── PUBLICATIONS.md ├── README.md └── ci ├── config └── modelica_py_ci_config.toml ├── naming_guideline.toml └── whitelist ├── dymola_check_whitelist.txt ├── dymola_simulate_whitelist.txt ├── ibpsa_whitelist.txt ├── om_check_whitelist.txt └── om_simulate_whitelist.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.mo linguist-language=Modelica 2 | -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/.gitconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/issue-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/.github/issue-branch.yml -------------------------------------------------------------------------------- /.github/workflows/github-action-slack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/.github/workflows/github-action-slack.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /AixLib/Airflow/AirCurtain/Examples/package.order: -------------------------------------------------------------------------------- 1 | AirCurtain 2 | -------------------------------------------------------------------------------- /AixLib/Airflow/AirCurtain/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/AirCurtain/package.mo -------------------------------------------------------------------------------- /AixLib/Airflow/AirCurtain/package.order: -------------------------------------------------------------------------------- 1 | AirCurtainSimplified 2 | Examples 3 | -------------------------------------------------------------------------------- /AixLib/Airflow/AirHandlingUnit/AHU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/AirHandlingUnit/AHU.mo -------------------------------------------------------------------------------- /AixLib/Airflow/AirHandlingUnit/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialAHU 2 | -------------------------------------------------------------------------------- /AixLib/Airflow/AirHandlingUnit/Examples/package.order: -------------------------------------------------------------------------------- 1 | AHU 2 | -------------------------------------------------------------------------------- /AixLib/Airflow/AirHandlingUnit/ModularAirHandlingUnit/Components/PressureDrop/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | partialPressureDrop 2 | -------------------------------------------------------------------------------- /AixLib/Airflow/AirHandlingUnit/ModularAirHandlingUnit/Examples/package.order: -------------------------------------------------------------------------------- 1 | ExampleAHU 2 | -------------------------------------------------------------------------------- /AixLib/Airflow/AirHandlingUnit/ModularAirHandlingUnit/Verification/package.order: -------------------------------------------------------------------------------- 1 | ComparisonToAHU 2 | -------------------------------------------------------------------------------- /AixLib/Airflow/AirHandlingUnit/NoAHU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/AirHandlingUnit/NoAHU.mo -------------------------------------------------------------------------------- /AixLib/Airflow/AirHandlingUnit/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/AirHandlingUnit/package.mo -------------------------------------------------------------------------------- /AixLib/Airflow/FacadeVentilationUnit/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | SetPower 2 | -------------------------------------------------------------------------------- /AixLib/Airflow/FacadeVentilationUnit/DataBase/package.order: -------------------------------------------------------------------------------- 1 | FVUBaseRecord 2 | -------------------------------------------------------------------------------- /AixLib/Airflow/FacadeVentilationUnit/Examples/package.order: -------------------------------------------------------------------------------- 1 | FacadeVentilationUnit 2 | -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/DoorOpen.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/DoorOpen.mo -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/DoorOperable.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/DoorOperable.mo -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/MediumColumn.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/MediumColumn.mo -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/Orifice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/Orifice.mo -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/Point_m_flow.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/Point_m_flow.mo -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/Points_m_flow.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/Points_m_flow.mo -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/Table_V_flow.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/Table_V_flow.mo -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/Table_m_flow.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/Table_m_flow.mo -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/Types/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/Types/package.mo -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/Types/package.order: -------------------------------------------------------------------------------- 1 | densitySelection 2 | -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/UsersGuide.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/UsersGuide.mo -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/ZonalFlow_ACS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/ZonalFlow_ACS.mo -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/package.mo -------------------------------------------------------------------------------- /AixLib/Airflow/Multizone/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/Multizone/package.order -------------------------------------------------------------------------------- /AixLib/Airflow/WindowVentilation/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/WindowVentilation/package.mo -------------------------------------------------------------------------------- /AixLib/Airflow/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/package.mo -------------------------------------------------------------------------------- /AixLib/Airflow/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Airflow/package.order -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/InternalGains/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialInternalGain 2 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/InternalGains/CO2/package.order: -------------------------------------------------------------------------------- 1 | CO2Balance 2 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/InternalGains/Examples/InternalGains/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialHumansExample 2 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/InternalGains/Examples/package.order: -------------------------------------------------------------------------------- 1 | InternalGains 2 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/InternalGains/Moisture/package.order: -------------------------------------------------------------------------------- 1 | MoistureGains 2 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/SkyTemperature/Examples/package.order: -------------------------------------------------------------------------------- 1 | BlackBody 2 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/SkyTemperature/package.order: -------------------------------------------------------------------------------- 1 | BlackBody 2 | Examples 3 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/Types.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/BoundaryConditions/Types.mo -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/UsersGuide.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/BoundaryConditions/UsersGuide.mo -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/Validation/package.order: -------------------------------------------------------------------------------- 1 | UsersGuide 2 | IsotropicAndPerezDiffuseRadiation 3 | BESTEST 4 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/WeatherData/Examples/package.order: -------------------------------------------------------------------------------- 1 | ReaderTMY3 2 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/Examples/package.order: -------------------------------------------------------------------------------- 1 | WeatherModels 2 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/RadiationOnTiltedSurface/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialRadOnTiltedSurf 2 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/WeatherData/Old/WeatherTRY/package.order: -------------------------------------------------------------------------------- 1 | Weather 2 | RadiationOnTiltedSurface 3 | Examples 4 | BaseClasses 5 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/WeatherData/Old/package.order: -------------------------------------------------------------------------------- 1 | WeatherTRY 2 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/WeatherData/package.order: -------------------------------------------------------------------------------- 1 | Bus 2 | ReaderTMY3 3 | Old 4 | Examples 5 | Validation 6 | BaseClasses 7 | -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/BoundaryConditions/package.mo -------------------------------------------------------------------------------- /AixLib/BoundaryConditions/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/BoundaryConditions/package.order -------------------------------------------------------------------------------- /AixLib/Controls/AirHandling/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/AirHandling/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/AirHandling/package.order: -------------------------------------------------------------------------------- 1 | FVUController 2 | -------------------------------------------------------------------------------- /AixLib/Controls/Continuous/LimPID.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Continuous/LimPID.mo -------------------------------------------------------------------------------- /AixLib/Controls/Continuous/OffTimer.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Continuous/OffTimer.mo -------------------------------------------------------------------------------- /AixLib/Controls/Continuous/PITemp.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Continuous/PITemp.mo -------------------------------------------------------------------------------- /AixLib/Controls/Continuous/SignalRanker.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Continuous/SignalRanker.mo -------------------------------------------------------------------------------- /AixLib/Controls/Continuous/Validation/package.order: -------------------------------------------------------------------------------- 1 | LimPIDReset 2 | OffTimerNonZeroStart 3 | -------------------------------------------------------------------------------- /AixLib/Controls/Continuous/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Continuous/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/Continuous/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Continuous/package.order -------------------------------------------------------------------------------- /AixLib/Controls/Discrete/BooleanDelay.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Discrete/BooleanDelay.mo -------------------------------------------------------------------------------- /AixLib/Controls/Discrete/Examples/package.order: -------------------------------------------------------------------------------- 1 | BooleanDelay 2 | -------------------------------------------------------------------------------- /AixLib/Controls/Discrete/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Discrete/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/Discrete/package.order: -------------------------------------------------------------------------------- 1 | BooleanDelay 2 | Examples 3 | -------------------------------------------------------------------------------- /AixLib/Controls/HVACAgentBasedControl/Examples/HVACAgentsCommunications/package.order: -------------------------------------------------------------------------------- 1 | SimpleCommunication 2 | -------------------------------------------------------------------------------- /AixLib/Controls/HVACAgentBasedControl/UsersGuide/package.order: -------------------------------------------------------------------------------- 1 | Award 2 | Gettingstarted 3 | Overview 4 | Requirements 5 | -------------------------------------------------------------------------------- /AixLib/Controls/HVACAgentBasedControl/package.order: -------------------------------------------------------------------------------- 1 | UsersGuide 2 | Agents 3 | CostFunctions 4 | Examples 5 | BaseClasses 6 | -------------------------------------------------------------------------------- /AixLib/Controls/HeatPump/AntiLegionella.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/HeatPump/AntiLegionella.mo -------------------------------------------------------------------------------- /AixLib/Controls/HeatPump/DefrostControl.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/HeatPump/DefrostControl.mo -------------------------------------------------------------------------------- /AixLib/Controls/HeatPump/HPControl.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/HeatPump/HPControl.mo -------------------------------------------------------------------------------- /AixLib/Controls/HeatPump/ModularHeatPumps/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialModularController 2 | -------------------------------------------------------------------------------- /AixLib/Controls/HeatPump/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/HeatPump/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/HeatPump/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/HeatPump/package.order -------------------------------------------------------------------------------- /AixLib/Controls/Interfaces/CHPControlBus.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Interfaces/CHPControlBus.mo -------------------------------------------------------------------------------- /AixLib/Controls/Interfaces/FVUControlBus.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Interfaces/FVUControlBus.mo -------------------------------------------------------------------------------- /AixLib/Controls/Interfaces/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Interfaces/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/Interfaces/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Interfaces/package.order -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Constants.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Constants.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Discrete/Sampler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Discrete/Sampler.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Discrete/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Discrete/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Integers/Abs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Integers/Abs.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Integers/Add.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Integers/Add.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Integers/Change.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Integers/Change.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Integers/Equal.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Integers/Equal.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Integers/Greater.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Integers/Greater.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Integers/Less.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Integers/Less.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Integers/Max.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Integers/Max.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Integers/Min.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Integers/Min.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Integers/Sources/package.order: -------------------------------------------------------------------------------- 1 | Constant 2 | Pulse 3 | TimeTable 4 | Validation 5 | -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Integers/Stage.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Integers/Stage.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Integers/Switch.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Integers/Switch.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Integers/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Integers/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/And.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/And.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Change.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Change.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Edge.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Edge.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Latch.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Latch.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/MultiAnd.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/MultiAnd.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/MultiOr.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/MultiOr.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Nand.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Nand.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Nor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Nor.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Not.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Not.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Or.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Or.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Pre.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Pre.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Proof.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Proof.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Sources/package.order: -------------------------------------------------------------------------------- 1 | Constant 2 | Pulse 3 | SampleTrigger 4 | TimeTable 5 | Validation 6 | -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Switch.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Switch.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Timer.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Timer.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Toggle.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Toggle.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/Xor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/Xor.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Logical/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Logical/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Abs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Abs.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Acos.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Acos.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Add.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Add.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Asin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Asin.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Atan.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Atan.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Atan2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Atan2.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Average.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Average.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Cos.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Cos.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Derivative.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Derivative.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Divide.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Divide.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Exp.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Exp.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Greater.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Greater.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Hysteresis.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Hysteresis.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Less.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Less.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Limiter.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Limiter.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Line.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Line.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Log.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Log.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Log10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Log10.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/MatrixGain.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/MatrixGain.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/MatrixMax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/MatrixMax.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/MatrixMin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/MatrixMin.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Max.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Max.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Min.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Min.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Modulo.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Modulo.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/MultiMax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/MultiMax.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/MultiMin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/MultiMin.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/MultiSum.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/MultiSum.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Multiply.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Multiply.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/PID.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/PID.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Ramp.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Ramp.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Round.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Round.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Sin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Sin.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Sort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Sort.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Sqrt.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Sqrt.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Subtract.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Subtract.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Switch.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Switch.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/Tan.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/Tan.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Reals/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Reals/package.order -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Routing/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Routing/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Types/Smoothness.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Types/Smoothness.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Types/ZeroTime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Types/ZeroTime.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Types/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Types/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Types/package.order: -------------------------------------------------------------------------------- 1 | Extrapolation 2 | SimpleController 3 | Smoothness 4 | ZeroTime 5 | -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Utilities/Assert.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/Utilities/Assert.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/Utilities/package.order: -------------------------------------------------------------------------------- 1 | Assert 2 | SunRiseSet 3 | Validation 4 | -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/CDL/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/CDL/package.order -------------------------------------------------------------------------------- /AixLib/Controls/OBC/UsersGuide.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/UsersGuide.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/Utilities/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | OptimalStartCalculation 2 | -------------------------------------------------------------------------------- /AixLib/Controls/OBC/Utilities/SetPoints/package.order: -------------------------------------------------------------------------------- 1 | SupplyReturnTemperatureReset 2 | Validation 3 | -------------------------------------------------------------------------------- /AixLib/Controls/OBC/Utilities/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/Utilities/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/Utilities/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/Utilities/package.order -------------------------------------------------------------------------------- /AixLib/Controls/OBC/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/OBC/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/OBC/package.order: -------------------------------------------------------------------------------- 1 | UsersGuide 2 | CDL 3 | Utilities 4 | -------------------------------------------------------------------------------- /AixLib/Controls/SetPoints/Examples/Table.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/SetPoints/Examples/Table.mo -------------------------------------------------------------------------------- /AixLib/Controls/SetPoints/Functions/package.order: -------------------------------------------------------------------------------- 1 | HeatingCurveFunction 2 | PartialBaseFct 3 | -------------------------------------------------------------------------------- /AixLib/Controls/SetPoints/HeatingCurve.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/SetPoints/HeatingCurve.mo -------------------------------------------------------------------------------- /AixLib/Controls/SetPoints/Table.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/SetPoints/Table.mo -------------------------------------------------------------------------------- /AixLib/Controls/SetPoints/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/SetPoints/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/SetPoints/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/SetPoints/package.order -------------------------------------------------------------------------------- /AixLib/Controls/Types.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/Types.mo -------------------------------------------------------------------------------- /AixLib/Controls/VentilationController/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | DEMA 2 | OptimalTempDeCarliHumidity 3 | coefficients 4 | -------------------------------------------------------------------------------- /AixLib/Controls/VentilationController/package.order: -------------------------------------------------------------------------------- 1 | VentilationController 2 | BaseClasses 3 | -------------------------------------------------------------------------------- /AixLib/Controls/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/package.mo -------------------------------------------------------------------------------- /AixLib/Controls/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Controls/package.order -------------------------------------------------------------------------------- /AixLib/DataBase/ActiveWalls/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/ActiveWalls/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/ActiveWalls/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/ActiveWalls/package.order -------------------------------------------------------------------------------- /AixLib/DataBase/Boiler/General/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Boiler/General/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Boiler/WorkLoad/ideal.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Boiler/WorkLoad/ideal.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Boiler/WorkLoad/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Boiler/WorkLoad/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Boiler/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Boiler/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Boiler/package.order: -------------------------------------------------------------------------------- 1 | DayNightMode 2 | General 3 | WorkLoad 4 | -------------------------------------------------------------------------------- /AixLib/DataBase/CHP/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/CHP/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/CHP/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/CHP/package.order -------------------------------------------------------------------------------- /AixLib/DataBase/Media/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Media/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Media/package.order: -------------------------------------------------------------------------------- 1 | Refrigerants 2 | -------------------------------------------------------------------------------- /AixLib/DataBase/Pipes/Copper/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Pipes/Copper/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Pipes/PE_X/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Pipes/PE_X/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Pipes/PE_X/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Pipes/PE_X/package.order -------------------------------------------------------------------------------- /AixLib/DataBase/Pipes/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Pipes/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Pipes/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Pipes/package.order -------------------------------------------------------------------------------- /AixLib/DataBase/Pools/ChildrensPool.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Pools/ChildrensPool.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Pools/SportPool.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Pools/SportPool.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Pools/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Pools/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Pools/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Pools/package.order -------------------------------------------------------------------------------- /AixLib/DataBase/Profiles/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Profiles/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Profiles/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Profiles/package.order -------------------------------------------------------------------------------- /AixLib/DataBase/Pumps/Pump1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Pumps/Pump1.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Pumps/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Pumps/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Pumps/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Pumps/package.order -------------------------------------------------------------------------------- /AixLib/DataBase/Radiators/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Radiators/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Radiators/package.order: -------------------------------------------------------------------------------- 1 | RadiatorBaseDataDefinition 2 | Standard_MFD_WSchV1984_OneAppartment 3 | -------------------------------------------------------------------------------- /AixLib/DataBase/SolarElectric/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/SolarElectric/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/SolarThermal/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/SolarThermal/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Storage/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Storage/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Storage/package.order: -------------------------------------------------------------------------------- 1 | Generic_New_2000l 2 | StorageDetailedBaseDataDefinition 3 | -------------------------------------------------------------------------------- /AixLib/DataBase/Surfaces/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Surfaces/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Surfaces/package.order: -------------------------------------------------------------------------------- 1 | RoughnessForHT 2 | -------------------------------------------------------------------------------- /AixLib/DataBase/ThermalZones/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/ThermalZones/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Walls/Collections/package.order: -------------------------------------------------------------------------------- 1 | BaseDataMultiWalls 2 | ASHRAE140 3 | EmpricalValidation 4 | OFD 5 | -------------------------------------------------------------------------------- /AixLib/DataBase/Walls/EnEV2002/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Walls/EnEV2002/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Walls/EnEV2002/package.order: -------------------------------------------------------------------------------- 1 | Ceiling 2 | Floor 3 | IW 4 | OW 5 | -------------------------------------------------------------------------------- /AixLib/DataBase/Walls/EnEV2009/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Walls/EnEV2009/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Walls/EnEV2009/package.order: -------------------------------------------------------------------------------- 1 | Ceiling 2 | Floor 3 | IW 4 | OW 5 | -------------------------------------------------------------------------------- /AixLib/DataBase/Walls/WSchV1984/package.order: -------------------------------------------------------------------------------- 1 | Ceiling 2 | Floor 3 | IW 4 | OW 5 | -------------------------------------------------------------------------------- /AixLib/DataBase/Walls/WSchV1995/package.order: -------------------------------------------------------------------------------- 1 | Ceiling 2 | Floor 3 | IW 4 | OW 5 | -------------------------------------------------------------------------------- /AixLib/DataBase/Walls/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Walls/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Walls/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Walls/package.order -------------------------------------------------------------------------------- /AixLib/DataBase/Weather/SummerDay.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Weather/SummerDay.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Weather/TRYWinterDay.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Weather/TRYWinterDay.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Weather/WinterDay.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Weather/WinterDay.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Weather/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Weather/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/Weather/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/Weather/package.order -------------------------------------------------------------------------------- /AixLib/DataBase/WindowsDoors/ASHRAE140WithPanes/package.order: -------------------------------------------------------------------------------- 1 | Default 2 | -------------------------------------------------------------------------------- /AixLib/DataBase/WindowsDoors/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/WindowsDoors/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/WindowsDoors/package.order: -------------------------------------------------------------------------------- 1 | ASHRAE140WithPanes 2 | Simple 3 | -------------------------------------------------------------------------------- /AixLib/DataBase/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/package.mo -------------------------------------------------------------------------------- /AixLib/DataBase/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/DataBase/package.order -------------------------------------------------------------------------------- /AixLib/Electrical/AC/Interfaces/package.order: -------------------------------------------------------------------------------- 1 | PowerOutput 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/OnePhase/Basics/package.order: -------------------------------------------------------------------------------- 1 | Ground 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/OnePhase/Sensors/Examples/package.order: -------------------------------------------------------------------------------- 1 | GeneralizedSensor 2 | Probe 3 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/OnePhase/Sensors/package.order: -------------------------------------------------------------------------------- 1 | GeneralizedSensor 2 | Probe 3 | Examples 4 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/OnePhase/Sources/package.order: -------------------------------------------------------------------------------- 1 | FixedVoltage 2 | Generator 3 | Grid 4 | WindTurbine 5 | Examples 6 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/OnePhase/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/AC/OnePhase/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/AC/ThreePhasesBalanced/Loads/Examples/package.order: -------------------------------------------------------------------------------- 1 | Impedances 2 | ParallelLoads 3 | ThreePhases 4 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/ThreePhasesBalanced/Sensors/Examples/package.order: -------------------------------------------------------------------------------- 1 | GeneralizedSensor 2 | Probe 3 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/ThreePhasesBalanced/Sensors/package.order: -------------------------------------------------------------------------------- 1 | GeneralizedSensor 2 | Probe 3 | Examples 4 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/ThreePhasesBalanced/Sources/package.order: -------------------------------------------------------------------------------- 1 | FixedVoltage 2 | Generator 3 | Grid 4 | Examples 5 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/ThreePhasesUnbalanced/Conversion/Examples/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | TransformerExample 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/ThreePhasesUnbalanced/Interfaces/Examples/package.order: -------------------------------------------------------------------------------- 1 | WyeToDelta 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/ThreePhasesUnbalanced/Sensors/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | GeneralizedProbe 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/ThreePhasesUnbalanced/Sensors/Examples/package.order: -------------------------------------------------------------------------------- 1 | Sensors 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/ThreePhasesUnbalanced/Validation/IEEETests/Test4NodesFeeder/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | IEEE4 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/ThreePhasesUnbalanced/Validation/IEEETests/package.order: -------------------------------------------------------------------------------- 1 | Test4NodesFeeder 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/ThreePhasesUnbalanced/Validation/package.order: -------------------------------------------------------------------------------- 1 | IEEETests 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/AC/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/AC/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/AC/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/AC/package.order -------------------------------------------------------------------------------- /AixLib/Electrical/BaseClasses/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/BaseClasses/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | WindTurbine 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Conversion/Examples/package.order: -------------------------------------------------------------------------------- 1 | DCDCConverter 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Conversion/package.order: -------------------------------------------------------------------------------- 1 | DCDCConverter 2 | Examples 3 | -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Lines/Line.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/DC/Lines/Line.mo -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Lines/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/DC/Lines/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Lines/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/DC/Lines/package.order -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Loads/Conductor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/DC/Loads/Conductor.mo -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Loads/Resistor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/DC/Loads/Resistor.mo -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Loads/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/DC/Loads/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Loads/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/DC/Loads/package.order -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Sensors/Examples/package.order: -------------------------------------------------------------------------------- 1 | GeneralizedSensor 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Sensors/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/DC/Sensors/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Sensors/package.order: -------------------------------------------------------------------------------- 1 | GeneralizedSensor 2 | Examples 3 | -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Sources/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | WindCorrection 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Sources/Examples/package.order: -------------------------------------------------------------------------------- 1 | VoltageSource 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/DC/Sources/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/DC/Sources/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/DC/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/DC/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/DC/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/DC/package.order -------------------------------------------------------------------------------- /AixLib/Electrical/Icons/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Icons/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Icons/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Icons/package.order -------------------------------------------------------------------------------- /AixLib/Electrical/Interfaces/Ground.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Interfaces/Ground.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Interfaces/Impedance.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Interfaces/Impedance.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Interfaces/Load.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Interfaces/Load.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Interfaces/Source.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Interfaces/Source.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Interfaces/Terminal.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Interfaces/Terminal.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Interfaces/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Interfaces/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Machines/Examples/package.order: -------------------------------------------------------------------------------- 1 | InductionMotor 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/Machines/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Machines/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Machines/package.order: -------------------------------------------------------------------------------- 1 | InductionMachine 2 | PVInverterRMS 3 | Examples 4 | -------------------------------------------------------------------------------- /AixLib/Electrical/PVSystem/Examples/package.order: -------------------------------------------------------------------------------- 1 | ExamplePVSystem 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/PVSystem/PVSystem.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/PVSystem/PVSystem.mo -------------------------------------------------------------------------------- /AixLib/Electrical/PVSystem/Validation/package.order: -------------------------------------------------------------------------------- 1 | ValidationPVSystem 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/PVSystem/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/PVSystem/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/PVSystem/package.order: -------------------------------------------------------------------------------- 1 | PVSystem 2 | Examples 3 | Validation 4 | BaseClasses 5 | -------------------------------------------------------------------------------- /AixLib/Electrical/PhaseSystems/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/PhaseSystems/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Transmission/Types/package.order: -------------------------------------------------------------------------------- 1 | Material 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/Transmission/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Transmission/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Types/CableMode.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Types/CableMode.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Types/InitMode.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Types/InitMode.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Types/Load.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Types/Load.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Types/LoadConnection.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Types/LoadConnection.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Types/PerUnit.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Types/PerUnit.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Types/VoltageLevel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Types/VoltageLevel.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Types/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Types/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Types/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Types/package.order -------------------------------------------------------------------------------- /AixLib/Electrical/UsersGuide.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/UsersGuide.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Utilities/Controllers/package.order: -------------------------------------------------------------------------------- 1 | StateMachineVoltCtrl 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/Utilities/Examples/package.order: -------------------------------------------------------------------------------- 1 | TestVoltageCTRL 2 | -------------------------------------------------------------------------------- /AixLib/Electrical/Utilities/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Utilities/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/Utilities/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/Utilities/package.order -------------------------------------------------------------------------------- /AixLib/Electrical/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/package.mo -------------------------------------------------------------------------------- /AixLib/Electrical/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Electrical/package.order -------------------------------------------------------------------------------- /AixLib/Examples/SimpleHouse.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Examples/SimpleHouse.mo -------------------------------------------------------------------------------- /AixLib/Examples/Tutorial/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Examples/Tutorial/package.mo -------------------------------------------------------------------------------- /AixLib/Examples/Tutorial/package.order: -------------------------------------------------------------------------------- 1 | SimpleHouse 2 | -------------------------------------------------------------------------------- /AixLib/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Examples/package.order: -------------------------------------------------------------------------------- 1 | Tutorial 2 | SimpleHouse 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/BaseClasses/Examples/package.order: -------------------------------------------------------------------------------- 1 | EqualPercentageDerivativeCheck 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/Dampers/Examples/package.order: -------------------------------------------------------------------------------- 1 | Damper 2 | MixingBox 3 | VAVBoxExponential 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/Dampers/Validation/package.order: -------------------------------------------------------------------------------- 1 | PressureIndependent 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/Dampers/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Actuators/Dampers/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/Motors/Examples/package.order: -------------------------------------------------------------------------------- 1 | IdealMotor 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/Motors/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Actuators/Motors/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/Motors/package.order: -------------------------------------------------------------------------------- 1 | IdealMotor 2 | Examples 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/Valves/ExpansionValves/SimpleExpansionValves/package.order: -------------------------------------------------------------------------------- 1 | IsenthalpicExpansionValve 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/Valves/ExpansionValves/UsersGuide/package.order: -------------------------------------------------------------------------------- 1 | Approaches 2 | Composition 3 | References 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/Valves/ExpansionValves/Utilities/package.order: -------------------------------------------------------------------------------- 1 | ModularSensors 2 | FlowCoefficient 3 | Types 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/Valves/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Actuators/Valves/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Actuators/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Actuators/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Actuators/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/BaseClasses/Validation/package.order: -------------------------------------------------------------------------------- 1 | ActuatorFilter 2 | MassFlowRateMultiplier 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/BaseClasses/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/BaseClasses/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/BaseClasses/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/BaseClasses/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/BoilerCHP/Boiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/BoilerCHP/Boiler.mo -------------------------------------------------------------------------------- /AixLib/Fluid/BoilerCHP/BoilerGeneric.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/BoilerCHP/BoilerGeneric.mo -------------------------------------------------------------------------------- /AixLib/Fluid/BoilerCHP/BoilerNoControl.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/BoilerCHP/BoilerNoControl.mo -------------------------------------------------------------------------------- /AixLib/Fluid/BoilerCHP/CHP.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/BoilerCHP/CHP.mo -------------------------------------------------------------------------------- /AixLib/Fluid/BoilerCHP/CHPNoControl.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/BoilerCHP/CHPNoControl.mo -------------------------------------------------------------------------------- /AixLib/Fluid/BoilerCHP/Data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/BoilerCHP/Data.mo -------------------------------------------------------------------------------- /AixLib/Fluid/BoilerCHP/ModularCHP/package.order: -------------------------------------------------------------------------------- 1 | ModularCHPIntegrated 2 | BaseClasses 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/BoilerCHP/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/BoilerCHP/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/BoilerCHP/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/BoilerCHP/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/CHPs/OrganicRankine/Data/package.order: -------------------------------------------------------------------------------- 1 | Generic 2 | WorkingFluids 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/CHPs/OrganicRankine/Examples/package.order: -------------------------------------------------------------------------------- 1 | ORCHotWater 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/CHPs/OrganicRankine/Validation/package.order: -------------------------------------------------------------------------------- 1 | VariableSource 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/CHPs/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/CHPs/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/CHPs/package.order: -------------------------------------------------------------------------------- 1 | OrganicRankine 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Chillers/Carnot_TEva.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Chillers/Carnot_TEva.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Chillers/Carnot_y.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Chillers/Carnot_y.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Chillers/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Chillers/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Chillers/ModularReversible/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | RefrigerantCycle 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Chillers/ModularReversible/Controls/Safety/package.order: -------------------------------------------------------------------------------- 1 | OperationalEnvelope 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Chillers/ModularReversible/Controls/package.order: -------------------------------------------------------------------------------- 1 | Safety 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Chillers/ModularReversible/Data/TableData2D/package.order: -------------------------------------------------------------------------------- 1 | Generic 2 | EN14511 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/Chillers/ModularReversible/Data/package.order: -------------------------------------------------------------------------------- 1 | TableData2D 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Chillers/ModularReversible/RefrigerantCycle/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | NoCooling 2 | PartialChillerCycle 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/Chillers/ModularReversible/Validation/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialModularComparison 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Chillers/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Chillers/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Chillers/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Chillers/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/Delays/DelayFirstOrder.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Delays/DelayFirstOrder.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Delays/Examples/Delay.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Delays/Examples/Delay.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Delays/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Delays/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Delays/Examples/package.order: -------------------------------------------------------------------------------- 1 | Delay 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Delays/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Delays/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Delays/package.order: -------------------------------------------------------------------------------- 1 | DelayFirstOrder 2 | Examples 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/DistrictHeatingCooling/BaseClasses/Supplies/OpenLoop/package.order: -------------------------------------------------------------------------------- 1 | PartialSupply 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/DistrictHeatingCooling/BaseClasses/Supplies/package.order: -------------------------------------------------------------------------------- 1 | OpenLoop 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/DistrictHeatingCooling/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | Supplies 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/DistrictHeatingCooling/Supplies/ClosedLoop/package.order: -------------------------------------------------------------------------------- 1 | DHCSupplyHeaterCoolerStorage 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/DistrictHeatingCooling/Supplies/Examples/package.order: -------------------------------------------------------------------------------- 1 | DHCSupplyHeaterCoolerStorage 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/DistrictHeatingCooling/Supplies/OpenLoop/package.order: -------------------------------------------------------------------------------- 1 | SourceIdeal 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Examples/FlowSystem/Basic.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Examples/FlowSystem/Basic.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Examples/GeothermalHeatPump/Components/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | BoilerBase 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Examples/GeothermalHeatPump/package.order: -------------------------------------------------------------------------------- 1 | GeothermalHeatPump 2 | Components 3 | Control 4 | BaseClasses 5 | -------------------------------------------------------------------------------- /AixLib/Fluid/Examples/Performance/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | Example1 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Examples/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Examples/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Adaptors/HVAC.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Adaptors/HVAC.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Adaptors/Inlet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Adaptors/Inlet.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Adaptors/Outlet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Adaptors/Outlet.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Adaptors/ThermalZone.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Adaptors/ThermalZone.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Adaptors/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Adaptors/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Adaptors/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Adaptors/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/BaseClasses/X_w_toX.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/BaseClasses/X_w_toX.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/BaseClasses/hOut_toT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/BaseClasses/hOut_toT.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/BaseClasses/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/BaseClasses/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | X_w_toX 2 | hOut_toT 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Conversion/InletToAir.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Conversion/InletToAir.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Conversion/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Conversion/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Conversion/package.order: -------------------------------------------------------------------------------- 1 | AirToOutlet 2 | InletToAir 3 | Validation 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/ExportContainers/Examples/package.order: -------------------------------------------------------------------------------- 1 | FMUs 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/ExportContainers/Validation/package.order: -------------------------------------------------------------------------------- 1 | FMUs 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/FlowSplitter_u.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/FlowSplitter_u.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Interfaces/Inlet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Interfaces/Inlet.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Interfaces/Outlet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Interfaces/Outlet.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Interfaces/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Interfaces/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Interfaces/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Interfaces/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Sink_T.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Sink_T.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Source_T.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Source_T.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/UsersGuide.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/UsersGuide.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Validation/HeaterFan.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Validation/HeaterFan.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Validation/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Validation/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/Validation/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/Validation/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FMI/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FMI/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/FixedResistances/Junction.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FixedResistances/Junction.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FixedResistances/Pipe.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FixedResistances/Pipe.mo -------------------------------------------------------------------------------- /AixLib/Fluid/FixedResistances/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/FixedResistances/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/Aquifer/Data/package.order: -------------------------------------------------------------------------------- 1 | Rock 2 | Template 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/Aquifer/Examples/package.order: -------------------------------------------------------------------------------- 1 | CoolingOffice 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/Aquifer/Validation/package.order: -------------------------------------------------------------------------------- 1 | NumberWells 2 | SimulationTest 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/Aquifer/package.order: -------------------------------------------------------------------------------- 1 | MultiWell 2 | Data 3 | Examples 4 | Validation 5 | -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/Borefields/BaseClasses/Boreholes/Examples/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialBorehole 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/Borefields/Data/Borefield/package.order: -------------------------------------------------------------------------------- 1 | Example 2 | Template 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/Borefields/Data/Configuration/package.order: -------------------------------------------------------------------------------- 1 | Example 2 | Template 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/Borefields/Data/Filling/package.order: -------------------------------------------------------------------------------- 1 | Bentonite 2 | Template 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/Borefields/Data/Soil/package.order: -------------------------------------------------------------------------------- 1 | SandStone 2 | Template 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/Borefields/Data/package.order: -------------------------------------------------------------------------------- 1 | Borefield 2 | Configuration 3 | Filling 4 | Soil 5 | -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/Borefields/Validation/package.order: -------------------------------------------------------------------------------- 1 | ConstantHeatInjection_100Boreholes 2 | Sandbox 3 | BaseClasses 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Geothermal/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Geothermal/package.order: -------------------------------------------------------------------------------- 1 | Aquifer 2 | Borefields 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatExchangers/ActiveBeams/Data/package.order: -------------------------------------------------------------------------------- 1 | Trox 2 | Generic 3 | BaseClasses 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatExchangers/ActiveWalls/package.order: -------------------------------------------------------------------------------- 1 | Distributor 2 | PanelHeating 3 | Examples 4 | BaseClasses 5 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatExchangers/DynamicHX.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/HeatExchangers/DynamicHX.mo -------------------------------------------------------------------------------- /AixLib/Fluid/HeatExchangers/Examples/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | EffectivenessNTUMassFlow 2 | Heater 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatExchangers/Heater_T.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/HeatExchangers/Heater_T.mo -------------------------------------------------------------------------------- /AixLib/Fluid/HeatExchangers/HeatingRod.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/HeatExchangers/HeatingRod.mo -------------------------------------------------------------------------------- /AixLib/Fluid/HeatExchangers/Radiators/BaseClasses/RadiatorTypes/package.order: -------------------------------------------------------------------------------- 1 | RadiatorType 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatExchangers/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/HeatExchangers/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/HeatExchangers/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/HeatExchangers/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/Carnot_TCon.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/HeatPumps/Carnot_TCon.mo -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/Carnot_y.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/HeatPumps/Carnot_y.mo -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/Compressors/BaseClasses/Validation/package.order: -------------------------------------------------------------------------------- 1 | TemperatureProtection 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/Data/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | HeatPumps 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/Data/ReciprocatingWaterToWater/package.order: -------------------------------------------------------------------------------- 1 | Generic 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/Data/ScrollWaterToWater/package.order: -------------------------------------------------------------------------------- 1 | Generic 2 | Heating 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/Data/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/HeatPumps/Data/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/Data/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/HeatPumps/Data/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/ModularReversible/Controls/Safety/Data/package.order: -------------------------------------------------------------------------------- 1 | Generic 2 | Wuellhorst2021 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/ModularReversible/Controls/Safety/Examples/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialSafety 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/ModularReversible/Controls/package.order: -------------------------------------------------------------------------------- 1 | Safety 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/ModularReversible/Data/TableDataSDF/TableData3D/package.order: -------------------------------------------------------------------------------- 1 | Generic 2 | VZH088AG 3 | VCLibPy 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/ModularReversible/RefrigerantCycle/Frosting/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialIcingFactor 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/ModularReversible/RefrigerantCycle/Frosting/Functions/package.order: -------------------------------------------------------------------------------- 1 | partialIcingFactor 2 | wetterAfjei1997 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/ModularReversible/RefrigerantCycle/Frosting/Validation/package.order: -------------------------------------------------------------------------------- 1 | WetterAfjei1997 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/ModularReversible/RefrigerantCycle/Inertias/package.order: -------------------------------------------------------------------------------- 1 | NoInertia 2 | VariableOrder 3 | BaseClasses 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/ModularReversible/Validation/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialValidation 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/HeatPumps/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/HeatPumps/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/HeatPumps/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/Humidifiers/Humidifier_u.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Humidifiers/Humidifier_u.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Humidifiers/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Humidifiers/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Humidifiers/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Humidifiers/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/Interfaces/EightPort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Interfaces/EightPort.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Interfaces/Examples/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PrescribedOutletState 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Interfaces/PartialTwoPort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Interfaces/PartialTwoPort.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Interfaces/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Interfaces/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Interfaces/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Interfaces/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/MassExchangers/Examples/package.order: -------------------------------------------------------------------------------- 1 | ConstantEffectiveness 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/MassExchangers/MembraneBasedEnthalpyExchangers/Examples/package.order: -------------------------------------------------------------------------------- 1 | Test_EnthalpyExchanger 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/MassExchangers/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/MassExchangers/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/MassExchangers/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/MassExchangers/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/MixingVolumes/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/MixingVolumes/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/MixingVolumes/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/MixingVolumes/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/BaseClasses/Types.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Movers/BaseClasses/Types.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Compressors/SimpleCompressors/CompressionProcesses/package.order: -------------------------------------------------------------------------------- 1 | RotaryCompression 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Compressors/UsersGuide/package.order: -------------------------------------------------------------------------------- 1 | Approaches 2 | Composition 3 | References 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Data/Fans/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Movers/Data/Fans/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Data/Fans/package.order: -------------------------------------------------------------------------------- 1 | Greenheck 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Data/Generic.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Movers/Data/Generic.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Data/Pumps/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Movers/Data/Pumps/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Data/Pumps/package.order: -------------------------------------------------------------------------------- 1 | Wilo 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Data/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Movers/Data/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Data/package.order: -------------------------------------------------------------------------------- 1 | Generic 2 | Fans 3 | Pumps 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/DpControlledMovers/Examples/package.order: -------------------------------------------------------------------------------- 1 | DpConst 2 | DpVar 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/DpControlledMovers/Types/package.order: -------------------------------------------------------------------------------- 1 | CtrlType 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/DpControlledMovers/package.order: -------------------------------------------------------------------------------- 1 | DpControlled_dp 2 | Types 3 | Examples 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Examples/Data/package.order: -------------------------------------------------------------------------------- 1 | EnglanderNorford1992 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Movers/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/FlowControlled_dp.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Movers/FlowControlled_dp.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Preconfigured/Validation/package.order: -------------------------------------------------------------------------------- 1 | ControlledFlowMachinePreconfigured 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/PumpsPolynomialBased/Controls/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PumpController 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/SpeedControlled_y.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Movers/SpeedControlled_y.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/UsersGuide.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Movers/UsersGuide.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/Validation/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Movers/Validation/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Movers/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Movers/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Movers/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/Pools/BaseClasses/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Pools/BaseClasses/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Pools/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | AirFlowMoistureToROM 2 | HeatTransferConduction 3 | waveMachine 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/Pools/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Pools/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Pools/Examples/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Pools/Examples/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/Pools/IndoorSwimmingPool.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Pools/IndoorSwimmingPool.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Pools/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Pools/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Pools/package.order: -------------------------------------------------------------------------------- 1 | IndoorSwimmingPool 2 | Examples 3 | BaseClasses 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/Conversions/Examples/package.order: -------------------------------------------------------------------------------- 1 | To_VolumeFraction 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/Conversions/package.order: -------------------------------------------------------------------------------- 1 | To_VolumeFraction 2 | Examples 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/Density.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/Density.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/DensityTwoPort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/DensityTwoPort.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/EnthalpyFlowRate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/EnthalpyFlowRate.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/EntropyFlowRate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/EntropyFlowRate.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/Examples/Density.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/Examples/Density.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/Examples/PPM.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/Examples/PPM.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/Examples/Pressure.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/Examples/Pressure.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/Examples/Velocity.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/Examples/Velocity.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/HeatMeter.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/HeatMeter.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/MassFlowRate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/MassFlowRate.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/MassFraction.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/MassFraction.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/ModularSensors.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/ModularSensors.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/PPM.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/PPM.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/PPMTwoPort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/PPMTwoPort.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/Pressure.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/Pressure.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/RelativeHumidity.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/RelativeHumidity.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/RelativePressure.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/RelativePressure.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/SpecificEnthalpy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/SpecificEnthalpy.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/SpecificEntropy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/SpecificEntropy.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/Temperature.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/Temperature.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/TraceSubstances.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/TraceSubstances.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/UsersGuide.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/UsersGuide.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/Velocity.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/Velocity.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/VolumeFlowRate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/VolumeFlowRate.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sensors/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sensors/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/Solar/Thermal/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | SolarThermalEfficiency 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Solar/Thermal/Examples/package.order: -------------------------------------------------------------------------------- 1 | SolarThermalCollector 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Solar/Thermal/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Solar/Thermal/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Solar/Thermal/package.order: -------------------------------------------------------------------------------- 1 | SolarThermal 2 | Examples 3 | BaseClasses 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/Solar/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Solar/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Solar/package.order: -------------------------------------------------------------------------------- 1 | Thermal 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/SolarCollectors/ASHRAE93.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/SolarCollectors/ASHRAE93.mo -------------------------------------------------------------------------------- /AixLib/Fluid/SolarCollectors/Controls/BaseClasses/Examples/package.order: -------------------------------------------------------------------------------- 1 | GCritCalc 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/SolarCollectors/Controls/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | GCritCalc 2 | Examples 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/SolarCollectors/Controls/Examples/package.order: -------------------------------------------------------------------------------- 1 | SolarPumpController 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/SolarCollectors/Controls/package.order: -------------------------------------------------------------------------------- 1 | CollectorPump 2 | Examples 3 | BaseClasses 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/SolarCollectors/Data/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | validateAngles 2 | Generic 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/SolarCollectors/Data/Tubular/package.order: -------------------------------------------------------------------------------- 1 | T_AMKCollectraAGOWR20 2 | T_JiaxingDiyiC0130 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/SolarCollectors/EN12975.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/SolarCollectors/EN12975.mo -------------------------------------------------------------------------------- /AixLib/Fluid/SolarCollectors/PhotovoltaicThermal/Examples/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialExample 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/SolarCollectors/PhotovoltaicThermal/Examples/package.order: -------------------------------------------------------------------------------- 1 | PhotovoltaicThermal 2 | BaseClasses 3 | -------------------------------------------------------------------------------- /AixLib/Fluid/SolarCollectors/PhotovoltaicThermal/package.order: -------------------------------------------------------------------------------- 1 | EN12975Curves 2 | Data 3 | Examples 4 | -------------------------------------------------------------------------------- /AixLib/Fluid/SolarCollectors/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/SolarCollectors/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/Boundary_pT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/Boundary_pT.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/Boundary_ph.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/Boundary_ph.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/Examples/Outside.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/Examples/Outside.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/MassFlowSource_T.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/MassFlowSource_T.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/MassFlowSource_h.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/MassFlowSource_h.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/Outside.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/Outside.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/Outside_CpData.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/Outside_CpData.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/Outside_CpLowRise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/Outside_CpLowRise.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/PropertySource_T.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/PropertySource_T.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/PropertySource_h.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/PropertySource_h.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Sources/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Sources/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/Storage/BaseClasses/Examples/package.order: -------------------------------------------------------------------------------- 1 | IndirectTankHeatExchanger 2 | -------------------------------------------------------------------------------- /AixLib/Fluid/Storage/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Storage/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Storage/ExpansionVessel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Storage/ExpansionVessel.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Storage/StorageDetailed.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Storage/StorageDetailed.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Storage/StorageSimple.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Storage/StorageSimple.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Storage/Stratified.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Storage/Stratified.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Storage/TwoPhaseSeparator.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Storage/TwoPhaseSeparator.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Storage/UsersGuide.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Storage/UsersGuide.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Storage/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Storage/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/Storage/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Storage/package.order -------------------------------------------------------------------------------- /AixLib/Fluid/Types.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/Types.mo -------------------------------------------------------------------------------- /AixLib/Fluid/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/package.mo -------------------------------------------------------------------------------- /AixLib/Fluid/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Fluid/package.order -------------------------------------------------------------------------------- /AixLib/Media/Air.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Air.mo -------------------------------------------------------------------------------- /AixLib/Media/AirIncompressible.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/AirIncompressible.mo -------------------------------------------------------------------------------- /AixLib/Media/Antifreeze/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PropertyCoefficients 2 | -------------------------------------------------------------------------------- /AixLib/Media/Antifreeze/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Antifreeze/package.mo -------------------------------------------------------------------------------- /AixLib/Media/Antifreeze/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Antifreeze/package.order -------------------------------------------------------------------------------- /AixLib/Media/Examples/AirProperties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Examples/AirProperties.mo -------------------------------------------------------------------------------- /AixLib/Media/Examples/SteamProperties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Examples/SteamProperties.mo -------------------------------------------------------------------------------- /AixLib/Media/Examples/WaterProperties.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Examples/WaterProperties.mo -------------------------------------------------------------------------------- /AixLib/Media/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Media/Examples/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Examples/package.order -------------------------------------------------------------------------------- /AixLib/Media/Refrigerants/R290/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Refrigerants/R290/package.mo -------------------------------------------------------------------------------- /AixLib/Media/Refrigerants/UsersGuide/package.order: -------------------------------------------------------------------------------- 1 | Approaches 2 | Composition 3 | Naming 4 | References 5 | -------------------------------------------------------------------------------- /AixLib/Media/Refrigerants/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Refrigerants/package.mo -------------------------------------------------------------------------------- /AixLib/Media/Refrigerants/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Refrigerants/package.order -------------------------------------------------------------------------------- /AixLib/Media/Specialized/Air/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Specialized/Air/package.mo -------------------------------------------------------------------------------- /AixLib/Media/Specialized/Air/package.order: -------------------------------------------------------------------------------- 1 | PerfectGas 2 | Examples 3 | -------------------------------------------------------------------------------- /AixLib/Media/Specialized/Water/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Specialized/Water/package.mo -------------------------------------------------------------------------------- /AixLib/Media/Specialized/Water/package.order: -------------------------------------------------------------------------------- 1 | TemperatureDependentDensity 2 | ConstantProperties_pT 3 | Examples 4 | -------------------------------------------------------------------------------- /AixLib/Media/Specialized/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Specialized/package.mo -------------------------------------------------------------------------------- /AixLib/Media/Specialized/package.order: -------------------------------------------------------------------------------- 1 | Air 2 | Water 3 | -------------------------------------------------------------------------------- /AixLib/Media/Steam.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Steam.mo -------------------------------------------------------------------------------- /AixLib/Media/Water.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/Water.mo -------------------------------------------------------------------------------- /AixLib/Media/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/package.mo -------------------------------------------------------------------------------- /AixLib/Media/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Media/package.order -------------------------------------------------------------------------------- /AixLib/Obsolete/BaseClasses/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/BaseClasses/package.mo -------------------------------------------------------------------------------- /AixLib/Obsolete/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | ObsoleteModel 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/DataBase/package.order: -------------------------------------------------------------------------------- 1 | SolarElectric 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/UsersGuide.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/UsersGuide.mo -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2019/Fluid/HeatPumps/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | CycleHP 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2019/Fluid/Sources/package.order: -------------------------------------------------------------------------------- 1 | FixedBoundary 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2019/Fluid/Storage/package.order: -------------------------------------------------------------------------------- 1 | StorageWall 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2019/Fluid/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/Year2019/Fluid/package.mo -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2019/Fluid/package.order: -------------------------------------------------------------------------------- 1 | HeatPumps 2 | Sources 3 | Storage 4 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2019/Utilities/HeatTransfer/package.order: -------------------------------------------------------------------------------- 1 | HeatToStar 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2019/Utilities/Sources/InternalGains/package.order: -------------------------------------------------------------------------------- 1 | Humans 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2019/Utilities/Sources/package.order: -------------------------------------------------------------------------------- 1 | InternalGains 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2019/Utilities/package.order: -------------------------------------------------------------------------------- 1 | HeatTransfer 2 | Sources 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2019/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/Year2019/package.mo -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2019/package.order: -------------------------------------------------------------------------------- 1 | Fluid 2 | Utilities 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2020/FastHVAC/Storage/package.order: -------------------------------------------------------------------------------- 1 | HeatStorage 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2020/FastHVAC/package.order: -------------------------------------------------------------------------------- 1 | Storage 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Components/Walls/package.order: -------------------------------------------------------------------------------- 1 | Wall_ASHRAE140 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Components/package.order: -------------------------------------------------------------------------------- 1 | Walls 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Rooms/MFD/CellarAttic/package.order: -------------------------------------------------------------------------------- 1 | Attic_Ro2Lf1 2 | Cellar 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Rooms/MFD/package.order: -------------------------------------------------------------------------------- 1 | CellarAttic 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2020/ThermalZones/HighOrder/Rooms/package.order: -------------------------------------------------------------------------------- 1 | MFD 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2020/ThermalZones/HighOrder/package.order: -------------------------------------------------------------------------------- 1 | Components 2 | Rooms 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2020/ThermalZones/package.order: -------------------------------------------------------------------------------- 1 | HighOrder 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2020/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/Year2020/package.mo -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2020/package.order: -------------------------------------------------------------------------------- 1 | FastHVAC 2 | ThermalZones 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2021/DataBase.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/Year2021/DataBase.mo -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2021/Electrical/package.order: -------------------------------------------------------------------------------- 1 | PVSystem 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2021/Fluid/Actuators/package.order: -------------------------------------------------------------------------------- 1 | Valves 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2021/Fluid/Movers/package.order: -------------------------------------------------------------------------------- 1 | Pump 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2021/Fluid/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/Year2021/Fluid/package.mo -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2021/Fluid/package.order: -------------------------------------------------------------------------------- 1 | Actuators 2 | Movers 3 | Examples 4 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2021/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/Year2021/package.mo -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2021/package.order: -------------------------------------------------------------------------------- 1 | DataBase 2 | Electrical 3 | Fluid 4 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2022/Examples/package.order: -------------------------------------------------------------------------------- 1 | NcDataReader 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Examples/package.order: -------------------------------------------------------------------------------- 1 | Appartment_VoWo 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2022/ThermalZones/HighOrder/House/package.order: -------------------------------------------------------------------------------- 1 | MFD 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2022/ThermalZones/HighOrder/Rooms/package.order: -------------------------------------------------------------------------------- 1 | MFD 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2022/ThermalZones/HighOrder/package.order: -------------------------------------------------------------------------------- 1 | House 2 | Rooms 3 | Examples 4 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2022/ThermalZones/package.order: -------------------------------------------------------------------------------- 1 | HighOrder 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2022/Utilities/package.order: -------------------------------------------------------------------------------- 1 | NcDataReader 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2022/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/Year2022/package.mo -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2022/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/Year2022/package.order -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Airflow/Multizone/BaseClasses/Examples/package.order: -------------------------------------------------------------------------------- 1 | Interpolate 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Airflow/Multizone/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | interpolate 2 | Examples 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Airflow/Multizone/package.order: -------------------------------------------------------------------------------- 1 | BaseClasses 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Airflow/package.order: -------------------------------------------------------------------------------- 1 | Multizone 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Controls/HeatPump/package.order: -------------------------------------------------------------------------------- 1 | SafetyControls 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Controls/Interfaces/package.order: -------------------------------------------------------------------------------- 1 | VapourCompressionMachineControlBus 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Controls/package.order: -------------------------------------------------------------------------------- 1 | HeatPump 2 | Interfaces 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/DataBase/Chiller/EN14511/package.order: -------------------------------------------------------------------------------- 1 | Vitocal200AWO201 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/DataBase/HeatPump/Functions/package.order: -------------------------------------------------------------------------------- 1 | Characteristics 2 | DefrostCorrection 3 | IcingFactor 4 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/DataBase/HeatPump/PerformanceData/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialPerformanceData 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/DataBase/package.order: -------------------------------------------------------------------------------- 1 | Chiller 2 | HeatPump 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Fluid/Chillers/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | InnerCycle_Chiller 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Fluid/Chillers/Examples/package.order: -------------------------------------------------------------------------------- 1 | Chiller 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Fluid/Chillers/package.order: -------------------------------------------------------------------------------- 1 | Chiller 2 | Examples 3 | BaseClasses 4 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Fluid/HeatExchangers/package.order: -------------------------------------------------------------------------------- 1 | EvaporatorCondenserWithCapacity 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Fluid/HeatPumps/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | InnerCycle_HeatPump 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Fluid/HeatPumps/Examples/package.order: -------------------------------------------------------------------------------- 1 | HeatPump 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Fluid/HeatPumps/package.order: -------------------------------------------------------------------------------- 1 | HeatPump 2 | Examples 3 | BaseClasses 4 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Fluid/Movers/package.order: -------------------------------------------------------------------------------- 1 | SpeedControlled_Nrpm 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Fluid/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/Year2024/Fluid/package.mo -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Systems/HeatPumpSystems/Examples/package.order: -------------------------------------------------------------------------------- 1 | HeatPumpSystem 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Systems/HeatPumpSystems/package.order: -------------------------------------------------------------------------------- 1 | HeatPumpSystem 2 | Examples 3 | BaseClasses 4 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/Systems/package.order: -------------------------------------------------------------------------------- 1 | HeatPumpSystems 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/Year2024/package.mo -------------------------------------------------------------------------------- /AixLib/Obsolete/Year2024/package.order: -------------------------------------------------------------------------------- 1 | Airflow 2 | Controls 3 | DataBase 4 | Fluid 5 | Systems 6 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Components/Chiller/package.order: -------------------------------------------------------------------------------- 1 | Chiller 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Components/Controller/package.order: -------------------------------------------------------------------------------- 1 | SwitchCounter 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/Boiler/package.order: -------------------------------------------------------------------------------- 1 | Boiler 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/CHP/package.order: -------------------------------------------------------------------------------- 1 | CHP_PT1 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/HeatPump/package.order: -------------------------------------------------------------------------------- 1 | HeatPump 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Components/HeatGenerators/package.order: -------------------------------------------------------------------------------- 1 | Boiler 2 | CHP 3 | HeatPump 4 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pipes/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PipeBase 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Components/Pumps/package.order: -------------------------------------------------------------------------------- 1 | FluidSource 2 | Pump 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Components/Sinks/package.order: -------------------------------------------------------------------------------- 1 | Sink 2 | Vessel 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Components/Valves/BaseClases/package.order: -------------------------------------------------------------------------------- 1 | HysteresisValve 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Data/Boiler/package.order: -------------------------------------------------------------------------------- 1 | DayNightMode 2 | General 3 | WorkLoad 4 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Data/package.order: -------------------------------------------------------------------------------- 1 | Boiler 2 | CHP 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Chiller/package.order: -------------------------------------------------------------------------------- 1 | Chiller 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/HeatExchangers/DHWHeatExchanger/package.order: -------------------------------------------------------------------------------- 1 | DHWHeatExchanger 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/HeatExchangers/MultiRadiator/package.order: -------------------------------------------------------------------------------- 1 | ValidationMultiRadiator 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/HeatExchangers/RadiatorMultiLayer/package.order: -------------------------------------------------------------------------------- 1 | ValidationRadiator 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/HeatGenerators/Boiler/package.order: -------------------------------------------------------------------------------- 1 | Boiler 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/HeatGenerators/CHP/package.order: -------------------------------------------------------------------------------- 1 | CHP 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/HeatGenerators/HeatPump/package.order: -------------------------------------------------------------------------------- 1 | HeatPump 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/HeatGenerators/package.order: -------------------------------------------------------------------------------- 1 | Boiler 2 | CHP 3 | HeatPump 4 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Pipes/package.order: -------------------------------------------------------------------------------- 1 | Pipes 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Pumps/package.order: -------------------------------------------------------------------------------- 1 | FluidSource 2 | Pump 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Sensors/package.order: -------------------------------------------------------------------------------- 1 | SensorVerification 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Sinks/package.order: -------------------------------------------------------------------------------- 1 | SinkSourceVesselTest 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Examples/Storage/package.order: -------------------------------------------------------------------------------- 1 | BufferStorageVariablePorts 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Media/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | MediumSimple 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/FastHVAC/Media/package.order: -------------------------------------------------------------------------------- 1 | DC20 2 | WaterSimple 3 | BaseClasses 4 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/Utilities/package.order: -------------------------------------------------------------------------------- 1 | HeatTransfer 2 | -------------------------------------------------------------------------------- /AixLib/Obsolete/YearIndependent/package.order: -------------------------------------------------------------------------------- 1 | FastHVAC 2 | Utilities 3 | -------------------------------------------------------------------------------- /AixLib/Obsolete/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/package.mo -------------------------------------------------------------------------------- /AixLib/Obsolete/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Obsolete/package.order -------------------------------------------------------------------------------- /AixLib/Resources/C-Sources/getTimeSpan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/C-Sources/getTimeSpan.c -------------------------------------------------------------------------------- /AixLib/Resources/C-Sources/getTimeSpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/C-Sources/getTimeSpan.h -------------------------------------------------------------------------------- /AixLib/Resources/Data/schedule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/Data/schedule.txt -------------------------------------------------------------------------------- /AixLib/Resources/Data/scheduleWindows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/Data/scheduleWindows.txt -------------------------------------------------------------------------------- /AixLib/Resources/Images/EBC_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/Images/EBC_Logo.png -------------------------------------------------------------------------------- /AixLib/Resources/Images/IBPSA-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/Images/IBPSA-logo.png -------------------------------------------------------------------------------- /AixLib/Resources/Include/MDDUDPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/Include/MDDUDPSocket.h -------------------------------------------------------------------------------- /AixLib/Resources/Scripts/mergePaths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/Scripts/mergePaths.json -------------------------------------------------------------------------------- /AixLib/Resources/Scripts/travis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/Scripts/travis/Makefile -------------------------------------------------------------------------------- /AixLib/Resources/Scripts/travis/omc/omc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/Scripts/travis/omc/omc -------------------------------------------------------------------------------- /AixLib/Resources/src/convertEPW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/src/convertEPW/Makefile -------------------------------------------------------------------------------- /AixLib/Resources/src/convertEPW/doc/element-list: -------------------------------------------------------------------------------- 1 | unnamed package 2 | -------------------------------------------------------------------------------- /AixLib/Resources/src/convertEPW/doc/package-list: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AixLib/Resources/src/convertEPW/src/Manifest.txt: -------------------------------------------------------------------------------- 1 | Main-class: ConvertWeatherData 2 | -------------------------------------------------------------------------------- /AixLib/Resources/src/fluid/heatpumps/calibration/Examples/package.order: -------------------------------------------------------------------------------- 1 | SomeManufacturer_ABC060_70kW_4_0COP_R410A 2 | -------------------------------------------------------------------------------- /AixLib/Resources/weatherdata/DRYCOLD.TMY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/weatherdata/DRYCOLD.TMY -------------------------------------------------------------------------------- /AixLib/Resources/weatherdata/DRYCOLD.mos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/weatherdata/DRYCOLD.mos -------------------------------------------------------------------------------- /AixLib/Resources/www/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Resources/www/navigation.png -------------------------------------------------------------------------------- /AixLib/Systems/HydraulicModules/Admix.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/HydraulicModules/Admix.mo -------------------------------------------------------------------------------- /AixLib/Systems/HydraulicModules/Pump.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/HydraulicModules/Pump.mo -------------------------------------------------------------------------------- /AixLib/Systems/ModularAHU/GenericAHU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/ModularAHU/GenericAHU.mo -------------------------------------------------------------------------------- /AixLib/Systems/ModularAHU/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/ModularAHU/package.mo -------------------------------------------------------------------------------- /AixLib/Systems/ModularAHU/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/ModularAHU/package.order -------------------------------------------------------------------------------- /AixLib/Systems/ScalableGenerationModules/ScalableBoiler/package.order: -------------------------------------------------------------------------------- 1 | ScalableBoiler 2 | Controls 3 | Examples 4 | -------------------------------------------------------------------------------- /AixLib/Systems/ScalableGenerationModules/package.order: -------------------------------------------------------------------------------- 1 | ScalableBoiler 2 | -------------------------------------------------------------------------------- /AixLib/Systems/TABS/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | TabsBus 2 | -------------------------------------------------------------------------------- /AixLib/Systems/TABS/Controller/CtrTabs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/TABS/Controller/CtrTabs.mo -------------------------------------------------------------------------------- /AixLib/Systems/TABS/Controller/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/TABS/Controller/package.mo -------------------------------------------------------------------------------- /AixLib/Systems/TABS/Controller/package.order: -------------------------------------------------------------------------------- 1 | CtrTabs 2 | -------------------------------------------------------------------------------- /AixLib/Systems/TABS/Examples/Tabs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/TABS/Examples/Tabs.mo -------------------------------------------------------------------------------- /AixLib/Systems/TABS/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/TABS/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Systems/TABS/Examples/package.order: -------------------------------------------------------------------------------- 1 | Tabs 2 | -------------------------------------------------------------------------------- /AixLib/Systems/TABS/Tabs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/TABS/Tabs.mo -------------------------------------------------------------------------------- /AixLib/Systems/TABS/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/TABS/package.mo -------------------------------------------------------------------------------- /AixLib/Systems/TABS/package.order: -------------------------------------------------------------------------------- 1 | Tabs 2 | Controller 3 | Examples 4 | BaseClasses 5 | -------------------------------------------------------------------------------- /AixLib/Systems/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/package.mo -------------------------------------------------------------------------------- /AixLib/Systems/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Systems/package.order -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/Components/Examples/DryAir/package.order: -------------------------------------------------------------------------------- 1 | DryAir_test 2 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/Components/Examples/package.order: -------------------------------------------------------------------------------- 1 | DryAir 2 | Walls 3 | WindowsDoors 4 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/Components/MoistAir/package.order: -------------------------------------------------------------------------------- 1 | VarMoistAirExchange 2 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/Components/Shadow/Types/package.order: -------------------------------------------------------------------------------- 1 | selectorShadowEffectMode 2 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/Components/Sunblinds/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialSunblind 2 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/Components/Walls/package.order: -------------------------------------------------------------------------------- 1 | Wall 2 | BaseClasses 3 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/Components/WindowsDoors/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialWindow 2 | CorrectionSolarGain 3 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/Examples/ASHREA140/package.order: -------------------------------------------------------------------------------- 1 | CompareDynamicAndStaticSolarFrac_Case270 2 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/Examples/package.order: -------------------------------------------------------------------------------- 1 | OFDHeatLoad 2 | OFD_1Jan 3 | RoomGFOw2_DayNightMode 4 | ASHREA140 5 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/House/OFD_MiddleInnerLoadWall/EnergySystem/package.order: -------------------------------------------------------------------------------- 1 | IdealHeaters 2 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/House/OFD_MiddleInnerLoadWall/package.order: -------------------------------------------------------------------------------- 1 | BuildingEnvelope 2 | EnergySystem 3 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/House/package.order: -------------------------------------------------------------------------------- 1 | OFD_MiddleInnerLoadWall 2 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/Rooms/package.order: -------------------------------------------------------------------------------- 1 | ASHRAE140 2 | OFD 3 | RoomEmpiricalValidation 4 | BaseClasses 5 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/Validation/ASHRAE140/UsersGuide/package.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/Validation/package.order: -------------------------------------------------------------------------------- 1 | ASHRAE140 2 | EmpiricalValidation 3 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/ThermalZones/HighOrder/package.mo -------------------------------------------------------------------------------- /AixLib/ThermalZones/HighOrder/package.order: -------------------------------------------------------------------------------- 1 | Components 2 | House 3 | Rooms 4 | Examples 5 | Validation 6 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/ISO13790/Data/package.order: -------------------------------------------------------------------------------- 1 | Generic 2 | Heavy 3 | Light 4 | Medium 5 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/ISO13790/Validation/package.order: -------------------------------------------------------------------------------- 1 | BESTEST 2 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/ISO13790/Zone5R1C/package.order: -------------------------------------------------------------------------------- 1 | Zone 2 | ZoneHVAC 3 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/ISO13790/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/ThermalZones/ISO13790/package.mo -------------------------------------------------------------------------------- /AixLib/ThermalZones/ISO13790/package.order: -------------------------------------------------------------------------------- 1 | Zone5R1C 2 | Data 3 | Examples 4 | Validation 5 | BaseClasses 6 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/ReducedOrder/EquivalentAirTemperature/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialVDI6007 2 | SourceSelector 3 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/ReducedOrder/ThermalZone/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialThermalZone 2 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/ReducedOrder/ThermalZone/package.order: -------------------------------------------------------------------------------- 1 | ThermalZone 2 | BaseClasses 3 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/ReducedOrder/Validation/ASHRAE140/FiveElements/package.order: -------------------------------------------------------------------------------- 1 | TestCase960 2 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/ReducedOrder/Validation/VDI6007/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | VerifyDifferenceThreePeriods 2 | -------------------------------------------------------------------------------- /AixLib/ThermalZones/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/ThermalZones/package.mo -------------------------------------------------------------------------------- /AixLib/ThermalZones/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/ThermalZones/package.order -------------------------------------------------------------------------------- /AixLib/Types/Azimuth/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Types/Azimuth/package.mo -------------------------------------------------------------------------------- /AixLib/Types/Azimuth/package.order: -------------------------------------------------------------------------------- 1 | S 2 | SW 3 | W 4 | NW 5 | N 6 | NE 7 | E 8 | SE 9 | -------------------------------------------------------------------------------- /AixLib/Types/Tilt/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Types/Tilt/package.mo -------------------------------------------------------------------------------- /AixLib/Types/Tilt/package.order: -------------------------------------------------------------------------------- 1 | Ceiling 2 | Floor 3 | Wall 4 | -------------------------------------------------------------------------------- /AixLib/Types/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Types/package.mo -------------------------------------------------------------------------------- /AixLib/Types/package.order: -------------------------------------------------------------------------------- 1 | Azimuth 2 | Tilt 3 | Reset 4 | -------------------------------------------------------------------------------- /AixLib/UsersGuide/Acknowledgements.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/UsersGuide/Acknowledgements.mo -------------------------------------------------------------------------------- /AixLib/UsersGuide/Contact.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/UsersGuide/Contact.mo -------------------------------------------------------------------------------- /AixLib/UsersGuide/Conventions/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/UsersGuide/Conventions/package.mo -------------------------------------------------------------------------------- /AixLib/UsersGuide/Copyright.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/UsersGuide/Copyright.mo -------------------------------------------------------------------------------- /AixLib/UsersGuide/License.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/UsersGuide/License.mo -------------------------------------------------------------------------------- /AixLib/UsersGuide/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/UsersGuide/package.mo -------------------------------------------------------------------------------- /AixLib/UsersGuide/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/UsersGuide/package.order -------------------------------------------------------------------------------- /AixLib/Utilities/Assertions/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Assertions/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Assertions/package.order: -------------------------------------------------------------------------------- 1 | RealPassThroughWithAssertion 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/Clustering/KMeans.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Clustering/KMeans.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Clustering/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Clustering/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Clustering/package.order: -------------------------------------------------------------------------------- 1 | KMeans 2 | Validation 3 | -------------------------------------------------------------------------------- /AixLib/Utilities/Communication/SocketCommunication/Components/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialTCPCommunicator 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/Communication/SocketCommunication/Components/package.order: -------------------------------------------------------------------------------- 1 | TCPCommunicatorExample 2 | BaseClasses 3 | -------------------------------------------------------------------------------- /AixLib/Utilities/Communication/SocketCommunication/Examples/package.order: -------------------------------------------------------------------------------- 1 | ExampleClientLoop 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/Communication/SocketCommunication/UsersGuide/package.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AixLib/Utilities/Communication/SocketCommunication/package.order: -------------------------------------------------------------------------------- 1 | UsersGuide 2 | Components 3 | Examples 4 | -------------------------------------------------------------------------------- /AixLib/Utilities/Communication/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Communication/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Communication/package.order: -------------------------------------------------------------------------------- 1 | SocketCommunication 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/Cryptographics/Validation/package.order: -------------------------------------------------------------------------------- 1 | SHA1 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/Cryptographics/package.order: -------------------------------------------------------------------------------- 1 | sha 2 | Validation 3 | -------------------------------------------------------------------------------- /AixLib/Utilities/Cryptographics/sha.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Cryptographics/sha.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Diagnostics/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialInputCheck 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/Diagnostics/Validation/package.order: -------------------------------------------------------------------------------- 1 | CheckEquality 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/Diagnostics/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Diagnostics/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Examples/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Examples/package.order -------------------------------------------------------------------------------- /AixLib/Utilities/HeatTransfer/HeatConv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/HeatTransfer/HeatConv.mo -------------------------------------------------------------------------------- /AixLib/Utilities/HeatTransfer/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/HeatTransfer/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/IO/Files/CSVWriter.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/IO/Files/CSVWriter.mo -------------------------------------------------------------------------------- /AixLib/Utilities/IO/Files/Examples/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | PartialCSV 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/IO/Files/JSONWriter.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/IO/Files/JSONWriter.mo -------------------------------------------------------------------------------- /AixLib/Utilities/IO/Files/Validation/package.order: -------------------------------------------------------------------------------- 1 | WeeklyScheduleWindowsLineEndings 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/IO/Files/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/IO/Files/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/IO/Files/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/IO/Files/package.order -------------------------------------------------------------------------------- /AixLib/Utilities/IO/SignalExchange/Examples/package.order: -------------------------------------------------------------------------------- 1 | FirstOrder 2 | WeatherStation 3 | BaseClasses 4 | -------------------------------------------------------------------------------- /AixLib/Utilities/IO/SignalExchange/SignalTypes/package.order: -------------------------------------------------------------------------------- 1 | SignalsForKPIs 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/IO/SignalExchange/package.order: -------------------------------------------------------------------------------- 1 | Overwrite 2 | Read 3 | WeatherStation 4 | SignalTypes 5 | Examples 6 | -------------------------------------------------------------------------------- /AixLib/Utilities/IO/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/IO/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/IO/package.order: -------------------------------------------------------------------------------- 1 | Files 2 | SignalExchange 3 | -------------------------------------------------------------------------------- /AixLib/Utilities/Interfaces/Adaptors/package.order: -------------------------------------------------------------------------------- 1 | ConvRadToCombPort 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/Interfaces/RadPort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Interfaces/RadPort.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Interfaces/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Interfaces/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Interfaces/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Interfaces/package.order -------------------------------------------------------------------------------- /AixLib/Utilities/KPIs/Energy/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/KPIs/Energy/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/KPIs/Examples/Co2Kpis.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/KPIs/Examples/Co2Kpis.mo -------------------------------------------------------------------------------- /AixLib/Utilities/KPIs/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/KPIs/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/KPIs/IndoorAirQuality/package.order: -------------------------------------------------------------------------------- 1 | Co2DIN16798 2 | Co2FixedLimit 3 | -------------------------------------------------------------------------------- /AixLib/Utilities/KPIs/IntegralErrorDualReference/package.order: -------------------------------------------------------------------------------- 1 | IntegralErrorDualBounds 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/KPIs/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/KPIs/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/KPIs/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/KPIs/package.order -------------------------------------------------------------------------------- /AixLib/Utilities/Logical/SmoothSwitch.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Logical/SmoothSwitch.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Logical/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Logical/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Logical/package.order: -------------------------------------------------------------------------------- 1 | DynamicHysteresis 2 | SmoothSwitch 3 | -------------------------------------------------------------------------------- /AixLib/Utilities/MassTransfer/MassPort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/MassTransfer/MassPort.mo -------------------------------------------------------------------------------- /AixLib/Utilities/MassTransfer/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/MassTransfer/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Average.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Average.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/BesselJ0.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/BesselJ0.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/BesselJ1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/BesselJ1.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/BesselY0.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/BesselY0.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/BesselY1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/BesselY1.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Bicubic.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Bicubic.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Binomial.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Binomial.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Biquadratic.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Biquadratic.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Examples/Average.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Examples/Average.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Examples/Bicubic.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Examples/Bicubic.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Examples/Splice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Examples/Splice.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Factorial.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Factorial.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/FallingFactorial.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/FallingFactorial.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Functions/round.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Functions/round.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Interpolate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Interpolate.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Max.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Max.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Min.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Min.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/MovingAverage.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/MovingAverage.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Polynomial.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Polynomial.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/PowerLinearized.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/PowerLinearized.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/QuadraticLinear.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/QuadraticLinear.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/RegNonZeroPower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/RegNonZeroPower.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/SmoothHeaviside.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/SmoothHeaviside.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/SmoothLimit.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/SmoothLimit.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/SmoothMax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/SmoothMax.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/SmoothMin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/SmoothMin.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/Splice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/Splice.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Math/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Math/package.order -------------------------------------------------------------------------------- /AixLib/Utilities/Multiplier/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Multiplier/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Multiplier/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Multiplier/package.order -------------------------------------------------------------------------------- /AixLib/Utilities/Psychrometrics/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | HumidityRatioVaporPressure 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/Psychrometrics/X_pW.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Psychrometrics/X_pW.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Psychrometrics/pW_X.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Psychrometrics/pW_X.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Sensors/EnergyMeter.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Sensors/EnergyMeter.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Sensors/Examples/package.order: -------------------------------------------------------------------------------- 1 | ExergyMeters 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/Sensors/FuelCounter.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Sensors/FuelCounter.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Sensors/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Sensors/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Sensors/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Sensors/package.order -------------------------------------------------------------------------------- /AixLib/Utilities/Sources/HourOfDay.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Sources/HourOfDay.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Sources/NightMode.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Sources/NightMode.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Sources/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Sources/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Sources/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Sources/package.order -------------------------------------------------------------------------------- /AixLib/Utilities/Tables/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Tables/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Tables/package.order: -------------------------------------------------------------------------------- 1 | CombiTable2DExtra 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/Time/CalendarTime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Time/CalendarTime.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Time/DaytimeSwitch.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Time/DaytimeSwitch.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Time/Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Time/Examples/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Time/ModelTime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Time/ModelTime.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Time/Types/ZeroTime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Time/Types/ZeroTime.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Time/Types/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Time/Types/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Time/Types/package.order: -------------------------------------------------------------------------------- 1 | ZeroTime 2 | -------------------------------------------------------------------------------- /AixLib/Utilities/Time/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Time/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/Time/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/Time/package.order -------------------------------------------------------------------------------- /AixLib/Utilities/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/package.mo -------------------------------------------------------------------------------- /AixLib/Utilities/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/Utilities/package.order -------------------------------------------------------------------------------- /AixLib/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/package.mo -------------------------------------------------------------------------------- /AixLib/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/AixLib/package.order -------------------------------------------------------------------------------- /PUBLICATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/PUBLICATIONS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/README.md -------------------------------------------------------------------------------- /ci/config/modelica_py_ci_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/ci/config/modelica_py_ci_config.toml -------------------------------------------------------------------------------- /ci/naming_guideline.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/ci/naming_guideline.toml -------------------------------------------------------------------------------- /ci/whitelist/dymola_check_whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/ci/whitelist/dymola_check_whitelist.txt -------------------------------------------------------------------------------- /ci/whitelist/ibpsa_whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/ci/whitelist/ibpsa_whitelist.txt -------------------------------------------------------------------------------- /ci/whitelist/om_check_whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/ci/whitelist/om_check_whitelist.txt -------------------------------------------------------------------------------- /ci/whitelist/om_simulate_whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWTH-EBC/AixLib/HEAD/ci/whitelist/om_simulate_whitelist.txt --------------------------------------------------------------------------------