├── Basics ├── Choices │ ├── FluidType.mo │ ├── GeometryOrientation.mo │ ├── HeatTransfer.mo │ ├── Init.mo │ ├── Position.mo │ ├── package.mo │ └── package.order ├── Constants │ ├── package.mo │ └── package.order ├── ControlVolumes │ ├── FluidVolumes │ │ ├── Check │ │ │ ├── Validation_VolumeVLE_L2_HeatTransfer_1ph_shell.mo │ │ │ ├── Validation_VolumeVLE_L2_HeatTransfer_2ph_shell.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── VolumeVLEGas_L3.mo │ │ ├── VolumeVLE_2.mo │ │ ├── VolumeVLE_3_TwoZones.mo │ │ ├── VolumeVLE_L3_TwoZonesNPort.mo │ │ ├── VolumeVLE_L4.mo │ │ ├── VolumeVLE_L4_Advanced.mo │ │ ├── package.mo │ │ └── package.order │ ├── Fundamentals │ │ ├── Check │ │ │ ├── Test_SmoothedDeltaTmean_arith.mo │ │ │ ├── Test_SmoothedDeltaTmean_log.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ChemicalReactions │ │ │ ├── ChemicalReactionsBaseGas.mo │ │ │ ├── DenitrificationBase.mo │ │ │ ├── Denitrification_L2.mo │ │ │ ├── DesulfurizationBase.mo │ │ │ ├── Desulfurization_L2.mo │ │ │ ├── E_FilterBase.mo │ │ │ ├── E_Filter_L2_Detailed.mo │ │ │ ├── E_Filter_L2_Empirical.mo │ │ │ ├── E_Filter_L2_Simple.mo │ │ │ ├── NoReaction_L2.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ └── reactionsInput.mo │ │ ├── Geometry │ │ │ ├── BlockShape.mo │ │ │ ├── FlatTubeFinnedGeometry_N_cv.mo │ │ │ ├── FlatTubeGeometry_N_cv.mo │ │ │ ├── GenericGeometry.mo │ │ │ ├── GenericGeometry_N_cv.mo │ │ │ ├── HollowBlock.mo │ │ │ ├── HollowBlockWithTubes.mo │ │ │ ├── HollowBlockWithTubesAndCarrierTubes.mo │ │ │ ├── HollowBlockWithTubesAndHotwell.mo │ │ │ ├── HollowCylinder.mo │ │ │ ├── HollowCylinderWithTubes.mo │ │ │ ├── PipeGeometry.mo │ │ │ ├── PipeGeometry_N_cv.mo │ │ │ ├── PipeWithHotwell.mo │ │ │ ├── PlateGeometry.mo │ │ │ ├── PlateGeometry_N_cv.mo │ │ │ ├── ShellWithTubes.mo │ │ │ ├── TubeType.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── HeatTransport │ │ │ ├── Gas_HT │ │ │ │ ├── Convection │ │ │ │ │ ├── ConvectionAndRadiation_tubeBank_L2.mo │ │ │ │ │ ├── Convection_carrierTubes_laminar_L2.mo │ │ │ │ │ ├── Convection_carrierTubes_turbulent_L2.mo │ │ │ │ │ ├── Convection_finnedTubes_L2.mo │ │ │ │ │ ├── Convection_flatWall_L2.mo │ │ │ │ │ ├── Convection_regenerativeAirPreheater_L4.mo │ │ │ │ │ ├── Convection_tubeBank_L2.mo │ │ │ │ │ ├── ConvectiveHeatTransfer.mo │ │ │ │ │ ├── HeatTransfer_L2.mo │ │ │ │ │ ├── HeatTransfer_L4.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── HeatTransfer.mo │ │ │ │ ├── HeatTransferGas.mo │ │ │ │ ├── Radiation │ │ │ │ │ ├── HeatTransfer_L2.mo │ │ │ │ │ ├── RadiantHeatTransfer.mo │ │ │ │ │ ├── Radiation_gas2Gas_L2.mo │ │ │ │ │ ├── Radiation_gas2Gas_advanced_L2.mo │ │ │ │ │ ├── Radiation_gas2Wall_L2.mo │ │ │ │ │ ├── Radiation_gas2Wall_advanced_L2.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Generic_HT │ │ │ │ ├── Adiabat_L2.mo │ │ │ │ ├── Adiabat_L3.mo │ │ │ │ ├── Adiabat_L4.mo │ │ │ │ ├── CharLine_L2.mo │ │ │ │ ├── CharLine_L4.mo │ │ │ │ ├── Constant_L2.mo │ │ │ │ ├── Constant_L3.mo │ │ │ │ ├── Constant_L4.mo │ │ │ │ ├── HeatTransfer_L2.mo │ │ │ │ ├── HeatTransfer_L3.mo │ │ │ │ ├── HeatTransfer_L4.mo │ │ │ │ ├── IdealHeatTransfer_L2.mo │ │ │ │ ├── Ideal_L3.mo │ │ │ │ ├── Ideal_L4.mo │ │ │ │ ├── NominalPoint_L4.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── HeatTransferBaseFlatTubeFinnedGas_L4.mo │ │ │ ├── HeatTransferBaseGas.mo │ │ │ ├── HeatTransferBaseGas_L3.mo │ │ │ ├── HeatTransferBaseGas_L4.mo │ │ │ ├── HeatTransferBaseGas_only.mo │ │ │ ├── HeatTransferBasePlateVLE_L2.mo │ │ │ ├── HeatTransferBasePlateVLE_L4.mo │ │ │ ├── HeatTransferBaseVLE.mo │ │ │ ├── HeatTransferBaseVLE_L3.mo │ │ │ ├── HeatTransferBaseVLE_L4.mo │ │ │ ├── ShellType_L2.mo │ │ │ ├── ShellType_L3.mo │ │ │ ├── TubeType_L2.mo │ │ │ ├── TubeType_L3.mo │ │ │ ├── VLE_HT │ │ │ │ ├── Constant_L3_ypsDependent.mo │ │ │ │ ├── HeatTransfer_L2.mo │ │ │ │ ├── HeatTransfer_L3.mo │ │ │ │ ├── HeatTransfer_L4.mo │ │ │ │ ├── NusseltPipe1ph_L2.mo │ │ │ │ ├── NusseltPipe_L4.mo │ │ │ │ ├── NusseltShell1ph_L2.mo │ │ │ │ ├── NusseltShell2ph_L2.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── PressureLoss │ │ │ ├── Gas_PL │ │ │ │ ├── PressureLoss_L4.mo │ │ │ │ ├── QuadraticNominalPoint_L2.mo │ │ │ │ ├── QuadraticNominalPoint_L4.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Generic_PL │ │ │ │ ├── LinearParallelZones_L3.mo │ │ │ │ ├── LinearPressureLoss_L2.mo │ │ │ │ ├── LinearPressureLoss_L4.mo │ │ │ │ ├── LinearSerialZones_L3.mo │ │ │ │ ├── NoFriction_L2.mo │ │ │ │ ├── NoFriction_L3.mo │ │ │ │ ├── NoFriction_L4.mo │ │ │ │ ├── PressureLoss_L2.mo │ │ │ │ ├── PressureLoss_L3.mo │ │ │ │ ├── PressureLoss_L4.mo │ │ │ │ ├── QuadraticNominalPoint_L2.mo │ │ │ │ ├── QuadraticNominalPoint_L4.mo │ │ │ │ ├── QuadraticParallelZones_L3.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── PressureLossBaseFlatTubeFinnedGas_L4.mo │ │ │ ├── PressureLossBaseGas_L2.mo │ │ │ ├── PressureLossBaseGas_L4.mo │ │ │ ├── PressureLossBasePlateVLE_L2.mo │ │ │ ├── PressureLossBasePlateVLE_L4.mo │ │ │ ├── PressureLossBaseVLE_L2.mo │ │ │ ├── PressureLossBaseVLE_L4.mo │ │ │ ├── ShellType_L2.mo │ │ │ ├── ShellType_L3.mo │ │ │ ├── TubeType_L2.mo │ │ │ ├── TubeType_L3.mo │ │ │ ├── VLE_PL │ │ │ │ ├── PressureLossCoeffcient_L2.mo │ │ │ │ ├── PressureLoss_L2.mo │ │ │ │ ├── PressureLoss_L4.mo │ │ │ │ ├── QuadraticNominalPoint_L2.mo │ │ │ │ ├── QuadraticNominalPoint_L4.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── SpacialDistribution │ │ │ ├── Homogeneous_L4.mo │ │ │ ├── IdealPhases.mo │ │ │ ├── IdeallySeparated.mo │ │ │ ├── IdeallyStirred.mo │ │ │ ├── MechanicalEquilibrium_L4.mo │ │ │ ├── RealMixed.mo │ │ │ ├── RealPhases.mo │ │ │ ├── RealSeparated.mo │ │ │ ├── SimpleAnalyticalSlip_L4.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── GasVolumes │ │ ├── Check │ │ │ ├── TestFlueGasCell.mo │ │ │ ├── TestFlueGasCell_N_cv.mo │ │ │ ├── TestFlueGasCell_chem.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── VolumeGas_L2.mo │ │ ├── VolumeGas_L2_advanced.mo │ │ ├── VolumeGas_L2_chem.mo │ │ ├── VolumeGas_L4.mo │ │ ├── VolumeGas_L4_advanced.mo │ │ ├── package.mo │ │ └── package.order │ ├── SolidVolumes │ │ ├── Check │ │ │ ├── TestNTU_Case1_Validation_Dynamic.mo │ │ │ ├── Test_NTU_CounterParallelCross_Comparison.mo │ │ │ ├── Validation_NTUcounter_DiscrPipes_Case1.mo │ │ │ ├── Validation_NTUparallel_DiscrPipes.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── CylindricalThickWall_L4.mo │ │ ├── CylindricalThinWall_L4.mo │ │ ├── Fundamentals │ │ │ ├── Averaging_Cp │ │ │ │ ├── ArithmeticMean.mo │ │ │ │ ├── ConstantheatCapacity.mo │ │ │ │ ├── GeneralMean.mo │ │ │ │ ├── InputOnly.mo │ │ │ │ ├── KepplerMean.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Blocks │ │ │ │ ├── Check │ │ │ │ │ ├── Check_TinyPIP.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── TinyPIP.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── HeatExchangerTypes │ │ │ │ ├── CounterFlow.mo │ │ │ │ ├── CounterFlow_L3.mo │ │ │ │ ├── CrossCounterFlow.mo │ │ │ │ ├── CrossFlow.mo │ │ │ │ ├── CrossFlow_L3.mo │ │ │ │ ├── CrossFlow_OneTubeRow.mo │ │ │ │ ├── GeneralHeatExchanger.mo │ │ │ │ ├── GeneralHeatExchanger_L3.mo │ │ │ │ ├── ParallelFlow.mo │ │ │ │ ├── ParallelFlow_L3.mo │ │ │ │ ├── TubeBundle.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ICom_NTU_L3.mo │ │ │ ├── Icons │ │ │ │ ├── HEX_CounterFlow_Icon.mo │ │ │ │ ├── HEX_CrossCounterFlow_Icon.mo │ │ │ │ ├── HEX_CrossFlow_Icon.mo │ │ │ │ ├── HEX_ParallelFlow_Icon.mo │ │ │ │ ├── HEX_TubeBundle_Icon.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── NTU_L2.mo │ │ ├── NTU_L2_effectiveResistance.mo │ │ ├── NTU_L3.mo │ │ ├── NTU_L3_standalone.mo │ │ ├── NTU_plate_L3.mo │ │ ├── NTU_plate_L3_standalone.mo │ │ ├── ThinPlateWall_L4.mo │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── Functions │ ├── A_hor_intCyl.mo │ ├── CalculateStateChangeFraction.mo │ ├── ClaRaDelay │ │ ├── ExternalTable.mo │ │ ├── getDelayValuesAtTime.mo │ │ ├── package.mo │ │ └── package.order │ ├── Factorial.mo │ ├── GenerateGrid.mo │ ├── InitialiseCombustionGas.mo │ ├── RecalculateComposition.mo │ ├── SmoothZeroTransition.mo │ ├── Stepsmoother.mo │ ├── Stepsmoother_der.mo │ ├── TestCases │ │ ├── TestGenerateGrid.mo │ │ ├── TestLogMean.mo │ │ ├── TestMaxAbs.mo │ │ ├── package.mo │ │ └── package.order │ ├── ThermoRoot.mo │ ├── ThermoRoot_der.mo │ ├── length.mo │ ├── maxAbs.mo │ ├── minAbs.mo │ ├── mod.mo │ ├── package.mo │ ├── package.order │ ├── pressureInterpolation.mo │ ├── shape_intCyl.mo │ └── vectorInterpolation.mo ├── Icons │ ├── Adapter2_bw.mo │ ├── Adapter2_fw.mo │ ├── Adapter3_bw.mo │ ├── Adapter3_fw.mo │ ├── Adapter5_bw.mo │ ├── Adapter5_fw.mo │ ├── AirPreheater.mo │ ├── AirPreheaterQuart.mo │ ├── Alpha.mo │ ├── AlphaEpsilon.mo │ ├── Ambience.mo │ ├── BalanceTank.mo │ ├── Boiler.mo │ ├── Bottle.mo │ ├── Box.mo │ ├── Burner.mo │ ├── BurnerSlice.mo │ ├── ChemicalReactions.mo │ ├── ComplexityLevel.mo │ ├── Compressor.mo │ ├── CoolingTower.mo │ ├── Cyclone.mo │ ├── Delta_p.mo │ ├── Drum.mo │ ├── E_Filter.mo │ ├── Efficiency.mo │ ├── Epsilon.mo │ ├── FeedwaterTank.mo │ ├── FlameRoom.mo │ ├── FlameRoomTubeBundle.mo │ ├── FlowAnchor.mo │ ├── FlowSensor.mo │ ├── FlowSink.mo │ ├── FlowSource.mo │ ├── FreeboardSlice.mo │ ├── Function.mo │ ├── FurnaceSlice.mo │ ├── HEX01.mo │ ├── HEX01FlatTubeFinnedDiscretized.mo │ ├── HEX01Plate.mo │ ├── HEX01PlateDiscretized.mo │ ├── HEX02.mo │ ├── HEX03.mo │ ├── HEX04.mo │ ├── HEX05.mo │ ├── Header.mo │ ├── Hopper.mo │ ├── HopperSlice.mo │ ├── IComIcon.mo │ ├── IdealMixing.mo │ ├── IdealPhases.mo │ ├── IdealSeparation.mo │ ├── Init.mo │ ├── MassComposition.mo │ ├── MechanicalEquilibriumIcon.mo │ ├── Mill.mo │ ├── Motor.mo │ ├── NTU.mo │ ├── Nozzle.mo │ ├── Obsolete.mo │ ├── PackageIcons │ │ ├── Basics100.mo │ │ ├── Basics50.mo │ │ ├── Basics60.mo │ │ ├── Basics80.mo │ │ ├── Basicsb100.mo │ │ ├── Basicsb50.mo │ │ ├── Basicsb60.mo │ │ ├── Basicsb80.mo │ │ ├── ClaRab100 │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Components100.mo │ │ ├── Components50.mo │ │ ├── Components60.mo │ │ ├── Components80.mo │ │ ├── Componentsb100.mo │ │ ├── Componentsb50.mo │ │ ├── Componentsb60.mo │ │ ├── Componentsb80.mo │ │ ├── Contact100.mo │ │ ├── Critical.mo │ │ ├── CycleInit100.mo │ │ ├── CycleInit50.mo │ │ ├── CycleInit60.mo │ │ ├── CycleInit80.mo │ │ ├── CycleInitb100.mo │ │ ├── CycleInitb50.mo │ │ ├── CycleInitb60.mo │ │ ├── CycleInitb80.mo │ │ ├── Examples100.mo │ │ ├── Examples50.mo │ │ ├── Examples60.mo │ │ ├── Examples80.mo │ │ ├── Examplesb100.mo │ │ ├── Examplesb50.mo │ │ ├── Examplesb60.mo │ │ ├── Examplesb80.mo │ │ ├── ExecutableExample100.mo │ │ ├── ExecutableExampleb50.mo │ │ ├── ExecutableExampleb60.mo │ │ ├── ExecutableExampleb80.mo │ │ ├── ExecutableRegressiong100.mo │ │ ├── FuelPackage.mo │ │ ├── Info100.mo │ │ ├── Subsystems100.mo │ │ ├── Subsystems50.mo │ │ ├── Subsystems60.mo │ │ ├── Subsystems80.mo │ │ ├── Subsystemsb100.mo │ │ ├── Subsystemsb50.mo │ │ ├── Subsystemsb60.mo │ │ ├── Subsystemsb80.mo │ │ ├── Visualisation100.mo │ │ ├── Visualisation50.mo │ │ ├── Visualisation60.mo │ │ ├── Visualisation80.mo │ │ ├── Visualisationb100.mo │ │ ├── Visualisationb50.mo │ │ ├── Visualisationb60.mo │ │ ├── Visualisationb80.mo │ │ ├── package.mo │ │ └── package.order │ ├── Pipe.mo │ ├── Pipe_L1.mo │ ├── Pipe_L2.mo │ ├── Pipe_L4.mo │ ├── Pipe_L4_a.mo │ ├── PowerSensor.mo │ ├── PressureSensor.mo │ ├── Pump.mo │ ├── RealMixing.mo │ ├── RealPhases.mo │ ├── RealSeparation.mo │ ├── RecordIcon.mo │ ├── RecordIconGraph.mo │ ├── RegressionSummary.mo │ ├── RollerBowlMill.mo │ ├── Sensor1.mo │ ├── Sensor2.mo │ ├── Separator.mo │ ├── SimpleCombustionChamber.mo │ ├── SimpleTurbine.mo │ ├── SprayInjector.mo │ ├── TemperatureSensor.mo │ ├── Tpipe.mo │ ├── Tpipe2.mo │ ├── TubeWithWall_L4.mo │ ├── Valve.mo │ ├── ValveControllable.mo │ ├── Volume.mo │ ├── Volume2Zones.mo │ ├── VolumeComposition.mo │ ├── Volume_L4.mo │ ├── WallThick.mo │ ├── WallThin.mo │ ├── WallThinLarge.mo │ ├── package.mo │ └── package.order ├── Interfaces │ ├── Bus.mo │ ├── Check │ │ ├── package.mo │ │ └── package.order │ ├── Connected2SimCenter.mo │ ├── CycleSumModel.mo │ ├── CycleSumPort.mo │ ├── CycleSummaryPort.mo │ ├── DataInterface.mo │ ├── DataInterfaceVector.mo │ ├── DataInterfaceVectorGas.mo │ ├── DoubleDataInterface.mo │ ├── ElectricPortIn.mo │ ├── ElectricPortOut.mo │ ├── EyeIn.mo │ ├── EyeInGas.mo │ ├── EyeOut.mo │ ├── EyeOutGas.mo │ ├── FluidPortIn.mo │ ├── FluidPortOut.mo │ ├── FuelFlueGas_inlet.mo │ ├── FuelFlueGas_outlet.mo │ ├── FuelInletDistr.mo │ ├── FuelOutletDistr.mo │ ├── FuelSlagFlueGas_inlet.mo │ ├── FuelSlagFlueGas_outlet.mo │ ├── Fuel_inlet.mo │ ├── Fuel_outlet.mo │ ├── GasMassSpecific.mo │ ├── GasPortIn.mo │ ├── GasPortOut.mo │ ├── HeatPort_a.mo │ ├── HeatPort_b.mo │ ├── Slag_inlet.mo │ ├── Slag_outlet.mo │ ├── SteamSignal.mo │ ├── package.mo │ ├── package.order │ └── vleFluidMassPort.mo ├── Media │ ├── Check │ │ ├── TestFuelObjectAndFuelDefinitions.mo │ │ ├── package.mo │ │ └── package.order │ ├── CreateInterpolatedMedium.mo │ ├── Fuel │ │ ├── CoalOilMixture.mo │ │ ├── Coal_Reference.mo │ │ ├── Coal_v1.mo │ │ ├── Coal_v2.mo │ │ ├── PartialFuel.mo │ │ ├── package.mo │ │ └── package.order │ ├── FuelFunctions │ │ ├── LHV_pTxi.mo │ │ ├── ashMassFraction_xi.mo │ │ ├── density_pTxi.mo │ │ ├── elementaryComposition_xi.mo │ │ ├── enthalpy_pTxi.mo │ │ ├── heatCapacity_pTxi.mo │ │ ├── massFraction_i_xi.mo │ │ ├── package.mo │ │ ├── package.order │ │ └── waterMassFraction_xi.mo │ ├── FuelObject.mo │ ├── FuelTypes │ │ ├── BaseFuel.mo │ │ ├── EmptyFuel.mo │ │ ├── Fuel_refvalues_v1.mo │ │ ├── Fuel_refvalues_v2.mo │ │ ├── Fuel_refvalues_v3.mo │ │ ├── Fuel_v3.mo │ │ ├── Fuel_verbandsformel_v1.mo │ │ ├── Fuel_verbandsformel_v2.mo │ │ ├── Fuel_verbandsformel_v3.mo │ │ ├── package.mo │ │ └── package.order │ ├── Slag │ │ ├── PartialSlag.mo │ │ ├── Slag_v1.mo │ │ ├── Slag_v2.mo │ │ ├── package.mo │ │ └── package.order │ ├── Solids │ │ ├── BaseSolid.mo │ │ ├── Fireclay.mo │ │ ├── InsulationOrstechLSP_H_const.mo │ │ ├── Steel10CrMo9_10.mo │ │ ├── Steel13CrMo4_5.mo │ │ ├── Steel15NiCuMoNb5.mo │ │ ├── Steel16Mo3.mo │ │ ├── Steel42CrMo4.mo │ │ ├── SteelAISI_904L.mo │ │ ├── SteelX10CrMoVNb9_1.mo │ │ ├── SteelX20CrMoV12_1.mo │ │ ├── SteelX2CrNi19_11.mo │ │ ├── SteelX2CrNiMo17_12_2.mo │ │ ├── SteelX3CrNiMo17_13.mo │ │ ├── SteelX5CrNi18_10.mo │ │ ├── SteelX5CrNiMo17_12_2.mo │ │ ├── SteelX8CrNiTi18_10.mo │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── Records │ ├── FlangeGas.mo │ ├── FlangeVLE.mo │ ├── FluidVLE_L2.mo │ ├── FluidVLE_L34.mo │ ├── IComBase_L2.mo │ ├── IComBase_L3.mo │ ├── IComFuel_L2.mo │ ├── IComGas_L2.mo │ ├── IComGas_L3.mo │ ├── IComVLE_L2.mo │ ├── IComVLE_L3.mo │ ├── IComVLE_L3_NPort.mo │ ├── IComVLE_L3_OnePort.mo │ ├── StaCyFlangeFuel.mo │ ├── StaCyFlangeGas.mo │ ├── StaCyFlangeGas_a.mo │ ├── StaCyFlangeVLE.mo │ ├── StaCyFlangeVLE_a.mo │ ├── StaticMeasurementValue.mo │ ├── package.mo │ └── package.order ├── Types │ ├── Color.mo │ ├── package.mo │ └── package.order ├── Units │ ├── AbsolutePressure.mo │ ├── Acceleration.mo │ ├── Angle.mo │ ├── AngularVelocity.mo │ ├── Area.mo │ ├── AreaFraction.mo │ ├── CoefficientOfHeatTransfer.mo │ ├── DensityMassSpecific.mo │ ├── DensityMolSpecific.mo │ ├── DensityVolumeSpecific.mo │ ├── DerivativeOfDensityMassSpecific.mo │ ├── DynamicViscosity.mo │ ├── Efficiency.mo │ ├── ElasticityModule.mo │ ├── ElectricCurrent.mo │ ├── ElectricResistance.mo │ ├── ElectricVoltage.mo │ ├── Energy.mo │ ├── EnergyMassSpecific.mo │ ├── Enthalpy.mo │ ├── EnthalpyFlowRate.mo │ ├── EnthalpyMassSpecific.mo │ ├── EnthalpyMolSpecific.mo │ ├── EnthalpyVolumeSpecific.mo │ ├── EntropyFlowRate.mo │ ├── EntropyMassSpecific.mo │ ├── Force.mo │ ├── Frequency.mo │ ├── FroudeNumber.mo │ ├── HeatCapacityFlowRate.mo │ ├── HeatCapacityMassSpecific.mo │ ├── HeatExpansionRateLinear.mo │ ├── HeatFlowRate.mo │ ├── HeatFlux.mo │ ├── Inductance.mo │ ├── InternalEnergy.mo │ ├── KinematicViscosity.mo │ ├── Length.mo │ ├── Mass.mo │ ├── MassFlowDensity.mo │ ├── MassFlowRate.mo │ ├── MassFlux.mo │ ├── MassFraction.mo │ ├── MassFraction_ppm.mo │ ├── MolFraction.mo │ ├── MolarMass.mo │ ├── MomentOfInertia.mo │ ├── Momentum.mo │ ├── MomentumFlowRate.mo │ ├── NusseltNumber.mo │ ├── Power.mo │ ├── PrandtlNumber.mo │ ├── Pressure.mo │ ├── PressureDifference.mo │ ├── RPM.mo │ ├── RelativeHumidity.mo │ ├── ReynoldsNumber.mo │ ├── ShearModulus.mo │ ├── Stress.mo │ ├── SurfaceTension.mo │ ├── Temperature.mo │ ├── TemperatureDifference.mo │ ├── Temperature_DegC.mo │ ├── ThermalConductivity.mo │ ├── ThermalResistance.mo │ ├── Time.mo │ ├── Torque.mo │ ├── Velocity.mo │ ├── Voltage.mo │ ├── Volume.mo │ ├── VolumeFlowRate.mo │ ├── VolumeFraction.mo │ ├── VolumeMassSpecific.mo │ ├── VolumeMolSpecific.mo │ ├── package.mo │ └── package.order ├── package.mo └── package.order ├── Components ├── Adapters │ ├── AerosolFuelConcentrator.mo │ ├── Check │ │ ├── RowOfScalar2VectorHeatPorts.mo │ │ ├── TestFluidConverters.mo │ │ ├── TestGasSensorAdapter.mo │ │ ├── TestScalar2VectorHeatPort.mo │ │ ├── package.mo │ │ └── package.order │ ├── ClaRa2ThermoPower.mo │ ├── Fluid2ClaRa.mo │ ├── FuelAerosolDistributor.mo │ ├── FuelFlueGas_join.mo │ ├── FuelFlueGas_split.mo │ ├── FuelSlagFlueGas_join.mo │ ├── FuelSlagFlueGas_split.mo │ ├── Fundamentals │ │ ├── FlangeA.mo │ │ ├── FlangeB.mo │ │ ├── SensT.mo │ │ ├── SinkP.mo │ │ ├── SourceP.mo │ │ ├── package.mo │ │ └── package.order │ ├── GasSensorAdapter.mo │ ├── Scalar2VectorHeatPort.mo │ ├── ThermoPower2ClaRa.mo │ ├── package.mo │ └── package.order ├── BoundaryConditions │ ├── Ambience.mo │ ├── BoundaryElectricFrequency.mo │ ├── BoundaryFuel_Txim_flow.mo │ ├── BoundaryFuel_pTxi.mo │ ├── BoundaryGas_Txim_flow.mo │ ├── BoundaryGas_pTxi.mo │ ├── BoundarySlag_Tm_flow.mo │ ├── BoundarySlag_pT.mo │ ├── BoundaryVLE_Txim_flow.mo │ ├── BoundaryVLE_hxim_flow.mo │ ├── BoundaryVLE_pTxi.mo │ ├── BoundaryVLE_phxi.mo │ ├── Check │ │ ├── TestFlueGasComposition.mo │ │ ├── TestFuelBoundaries.mo │ │ ├── TestIAPWSboundaries2.mo │ │ ├── package.mo │ │ └── package.order │ ├── GasCompositionByMassFractions.mo │ ├── GasCompositionByVolFractions.mo │ ├── PrescribedHeatFlow.mo │ ├── PrescribedHeatFlowScalar.mo │ ├── PrescribedMassFlowGas.mo │ ├── PrescribedMassFlowVLE.mo │ ├── package.mo │ └── package.order ├── Control │ ├── FeedForward │ │ ├── Check │ │ │ ├── TestBlockFF.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── FeedForwardBlock_3508.mo │ │ ├── package.mo │ │ └── package.order │ ├── PowerPlantControl │ │ ├── Check │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── LiveSteamTemperature.mo │ │ ├── package.mo │ │ └── package.order │ ├── PredictorModels_3508 │ │ ├── Check │ │ │ ├── TestPredictor.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ └── testReheater.mo │ │ ├── CoalSupplyBoiler_01_XRG.mo │ │ ├── EnthalpyPredictor.mo │ │ ├── Icons │ │ │ ├── BoilerPredictor.mo │ │ │ ├── TurbineAndReheat.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── TurbinesAndReheat_00_XRG.mo │ │ ├── TurbinesAndReheat_01_XRG.mo │ │ ├── TurbinesAndReheat_02_XRG.mo │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── Electrical │ ├── AsynchronousMotor_L2.mo │ ├── AsynchronousMotor_L2_base.mo │ ├── Check │ │ ├── TestAsynchronousMotor.mo │ │ ├── TestAsynchronousMotorWithPump.mo │ │ ├── TestTurboGenerator.mo │ │ ├── package.mo │ │ └── package.order │ ├── SimpleGenerator.mo │ ├── package.mo │ └── package.order ├── FlueGasCleaning │ ├── Denitrification │ │ ├── Check │ │ │ ├── Test_Denitrification.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Denitrification_L2.mo │ │ ├── package.mo │ │ └── package.order │ ├── Desulfurization │ │ ├── Check │ │ │ ├── Test_Desulfurization_ideal.mo │ │ │ ├── Test_FlueGasCleaning.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Desulfurization_L2_ideal.mo │ │ ├── package.mo │ │ └── package.order │ ├── E_Filter │ │ ├── Check │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ └── test_E_Filter.mo │ │ ├── E_Filter_L2.mo │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── Furnace │ ├── BaseClasses │ │ ├── CombustionChamberBase.mo │ │ ├── CombustionChamberBase_additional_HPs.mo │ │ ├── HopperBase.mo │ │ ├── package.mo │ │ └── package.order │ ├── Burner │ │ ├── Burner_L2_Dynamic.mo │ │ ├── Burner_L2_Dynamic_fuelDrying.mo │ │ ├── Burner_L2_Static.mo │ │ ├── package.mo │ │ └── package.order │ ├── Check │ │ ├── Test_CombustionChamber.mo │ │ ├── Test_CombustionChamber_control.mo │ │ ├── Test_CombustionChamber_vs_Burner_control.mo │ │ ├── Test_burner_adiabatic_fuelDrying.mo │ │ ├── package.mo │ │ └── package.order │ ├── ChemicalReactions │ │ ├── CoalReactionZone.mo │ │ ├── PartialReactionZone.mo │ │ ├── package.mo │ │ └── package.order │ ├── FlameRoom │ │ ├── FlameRoomAdditionalAir_L2_Dynamic.mo │ │ ├── FlameRoomAdditionalAir_L2_Static.mo │ │ ├── FlameRoomWithTubeBundle_L2_Dynamic.mo │ │ ├── FlameRoomWithTubeBundle_L2_Static.mo │ │ ├── FlameRoom_L2_Dynamic.mo │ │ ├── FlameRoom_L2_Static.mo │ │ ├── package.mo │ │ └── package.order │ ├── GeneralTransportPhenomena │ │ ├── BurningTime │ │ │ ├── ConstantBurningTime.mo │ │ │ ├── PartialBurningTime.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ParticleMigration │ │ │ ├── FixedMigrationSpeed_simple.mo │ │ │ ├── MeanMigrationSpeed.mo │ │ │ ├── PartialMigrationSpeed.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── ThermalCapacities │ │ │ ├── PartialThermalCapacity.mo │ │ │ ├── ThermalLowPass.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Hopper │ │ ├── Hopper_L2.mo │ │ ├── package.mo │ │ └── package.order │ ├── SimpleCombustionChamber.mo │ ├── package.mo │ └── package.order ├── HeatExchangers │ ├── Check │ │ ├── EvaluateDesuperheater.mo │ │ ├── Test_FlatTubeFinnedHEXvle2gas_L4.mo │ │ ├── Test_HEXvle2gas_L3_1ph_BU.mo │ │ ├── Test_HEXvle2vle_L3_1ph_BU_ntu.mo │ │ ├── Test_HEXvle2vle_L3_1ph_BU_simple.mo │ │ ├── Test_HEXvle2vle_L3_1ph_kA.mo │ │ ├── Test_HEXvle2vle_L3_2ph_BU_ntu.mo │ │ ├── Test_HEXvle2vle_L3_2ph_BU_simple.mo │ │ ├── Test_HEXvle2vle_L3_2ph_CH_ntu.mo │ │ ├── Test_HEXvle2vle_L3_2ph_CH_simple.mo │ │ ├── Test_HEXvle2vle_L3_2ph_CH_simple_shutoff.mo │ │ ├── Test_HEXvle2vle_L3_2ph_CU_ntu.mo │ │ ├── Test_HEXvle2vle_L3_2ph_CU_simple.mo │ │ ├── Test_PlateHEXvle2vle_L3_2ph_ntu.mo │ │ ├── Test_PlateHEXvle2vle_L4.mo │ │ ├── Test_RegenerativeAirPreheater.mo │ │ ├── package.mo │ │ └── package.order │ ├── FlatTubeFinnedHEXvle2gas_L4.mo │ ├── HEXvle2gas_L3_1ph_BU_ntu.mo │ ├── HEXvle2gas_L3_1ph_BU_simple.mo │ ├── HEXvle2gas_L3_2ph_BU_simple.mo │ ├── HEXvle2vle_L3_1ph_BU_ntu.mo │ ├── HEXvle2vle_L3_1ph_BU_simple.mo │ ├── HEXvle2vle_L3_1ph_kA.mo │ ├── HEXvle2vle_L3_2ph_BU_ntu.mo │ ├── HEXvle2vle_L3_2ph_BU_simple.mo │ ├── HEXvle2vle_L3_2ph_CH_ntu.mo │ ├── HEXvle2vle_L3_2ph_CH_simple.mo │ ├── HEXvle2vle_L3_2ph_CU_ntu.mo │ ├── HEXvle2vle_L3_2ph_CU_simple.mo │ ├── HEXvle_L3_2ph_BU.mo │ ├── IdealShell_L2.mo │ ├── PlateHEXvle2vle_L3_2ph_ntu.mo │ ├── PlateHEXvle2vle_L4.mo │ ├── RegenerativeAirPreheaterPrimaryAndSecondaryAir_L4.mo │ ├── RegenerativeAirPreheater_L4.mo │ ├── TubeBundle_L2.mo │ ├── package.mo │ └── package.order ├── MechanicalSeparation │ ├── BalanceTank_L3.mo │ ├── Bottle_L3.mo │ ├── Check │ │ ├── TestBalanceTank.mo │ │ ├── TestBottle.mo │ │ ├── TestDrum.mo │ │ ├── TestFeedWaterTank_1Separator.mo │ │ ├── TestSeparator_L1.mo │ │ ├── TestSeparator_L3.mo │ │ ├── package.mo │ │ └── package.order │ ├── Drum_L3.mo │ ├── FeedWaterTank_L2.mo │ ├── FeedWaterTank_L3.mo │ ├── FeedWaterTank_base.mo │ ├── SteamSeparatorVLE_L1.mo │ ├── SteamSeparatorVLE_L3.mo │ ├── package.mo │ └── package.order ├── Mills │ ├── HardCoalMills │ │ ├── Check │ │ │ ├── SimpleMillTester.mo │ │ │ ├── ValidateRollerBowlMill_3.mo │ │ │ ├── combineMillandFurnace.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ └── testRollerBowlMills.mo │ │ ├── Fundamentals │ │ │ ├── ASV1.mo │ │ │ ├── ASV3.mo │ │ │ ├── RollerBowlMillDefinition.mo │ │ │ ├── STV1.mo │ │ │ ├── STV4.mo │ │ │ ├── SummaryMill.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── RollerBowlMill_L1.mo │ │ ├── VerticalMill_L3.mo │ │ ├── package.mo │ │ └── package.order │ ├── LigniteMills │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ ├── package.order │ └── physicalMills │ │ ├── Check │ │ ├── package.mo │ │ ├── package.order │ │ ├── testMillBox_1.mo │ │ ├── testMillBox_1_measurementInput.mo │ │ └── testMillBox_2.mo │ │ ├── Volumes │ │ ├── CentrifugalClassifier.mo │ │ ├── Check │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ ├── testAerosolVolume.mo │ │ │ ├── testDryer.mo │ │ │ ├── testFuelJoin.mo │ │ │ └── testGrinder.mo │ │ ├── Dryer.mo │ │ ├── FlowClassifier.mo │ │ ├── FuelJoin_distributed.mo │ │ ├── Fundamentals │ │ │ ├── Classifying │ │ │ │ ├── Classifying_centrifugal.mo │ │ │ │ ├── Classifying_centrifugal_base.mo │ │ │ │ ├── Classifying_flow.mo │ │ │ │ ├── Classifying_flow_base.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Drying │ │ │ │ ├── Drying_base.mo │ │ │ │ ├── Drying_ideal.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Grinding │ │ │ │ ├── Breakage_Function │ │ │ │ │ ├── Breakage_Austin.mo │ │ │ │ │ ├── Breakage_Steinmetz.mo │ │ │ │ │ ├── Breakage_base.mo │ │ │ │ │ ├── Breakage_constant.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Selection_Function │ │ │ │ │ ├── Selection_Kersting.mo │ │ │ │ │ ├── Selection_Steinmetz.mo │ │ │ │ │ ├── Selection_base.mo │ │ │ │ │ ├── Selection_constant.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── Transport_Velocity │ │ │ │ │ ├── Transport_base.mo │ │ │ │ │ ├── Transport_complex.mo │ │ │ │ │ ├── Transport_constant.mo │ │ │ │ │ ├── package.mo │ │ │ │ │ └── package.order │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── Records │ │ │ │ ├── FuelClassification_base.mo │ │ │ │ ├── FuelClassification_example_05classes.mo │ │ │ │ ├── FuelClassification_example_11classes.mo │ │ │ │ ├── FuelClassification_example_21classes.mo │ │ │ │ ├── FuelClassification_generic.mo │ │ │ │ ├── GeometricProgression.mo │ │ │ │ ├── iCom_CentrifugalClassifier.mo │ │ │ │ ├── iCom_Dryer.mo │ │ │ │ ├── iCom_FlowClassifier.mo │ │ │ │ ├── iCom_Grinder.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── GrinderRingRoller.mo │ │ ├── package.mo │ │ └── package.order │ │ ├── mill_L4.mo │ │ ├── mill_L4_advancedInit.mo │ │ ├── package.mo │ │ └── package.order ├── Sensors │ ├── Check │ │ ├── TestFuelSensors.mo │ │ ├── TestSensorVLE_L3_T.mo │ │ ├── TestSensors.mo │ │ ├── TestVLESensors.mo │ │ ├── package.mo │ │ ├── package.order │ │ └── testGasSensors.mo │ ├── FuelSensorBase.mo │ ├── GasSensorBase.mo │ ├── SensorFuel_L1_LHV.mo │ ├── SensorFuel_L1_T.mo │ ├── SensorFuel_L1_m_flow.mo │ ├── SensorFuel_L1_xi.mo │ ├── SensorGas_L1_T.mo │ ├── SensorGas_L1_m_flow.mo │ ├── SensorGas_L1_p.mo │ ├── SensorGas_L1_xi.mo │ ├── SensorGas_L1_xi_i.mo │ ├── SensorVLE_L1_T.mo │ ├── SensorVLE_L1_m_flow.mo │ ├── SensorVLE_L1_p.mo │ ├── SensorVLE_L3_T.mo │ ├── TinySensorElectric_L1_P.mo │ ├── TinySensorGas_L1_Ex_flow.mo │ ├── TinySensorGas_L1_O2dry.mo │ ├── TinySensorGas_L1_T.mo │ ├── TinySensorGas_L1_V_flow.mo │ ├── TinySensorGas_L1_m_flow.mo │ ├── TinySensorGas_L1_p.mo │ ├── TinySensorVLE_L1_Ex_flow.mo │ ├── TinySensorVLE_L1_T.mo │ ├── TinySensorVLE_L1_m_flow.mo │ ├── TinySensorVLE_L1_p.mo │ ├── package.mo │ ├── package.order │ └── vleSensorBase.mo ├── TurboMachines │ ├── Compressors │ │ ├── BaseClasses │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ └── partialFan.mo │ │ ├── Check │ │ │ ├── Test_CompressorGas_L1_affinity.mo │ │ │ ├── Test_CompressorGas_L1_simple.mo │ │ │ ├── Test_CompressorGas_L1_stageStacked.mo │ │ │ ├── Test_CompressorGas_L1_stageStacked_singleStage.mo │ │ │ ├── Test_CompressorVLE_L1_stageStacked.mo │ │ │ ├── Test_MassFlow_VIGVControlled.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── CompressorGas_L1_affinity.mo │ │ ├── CompressorGas_L1_simple.mo │ │ ├── CompressorGas_L1_stageStacked.mo │ │ ├── CompressorVLE_L1_simple.mo │ │ ├── CompressorVLE_L1_stageStacked.mo │ │ ├── Fundamentals │ │ │ ├── GetInputsHydraulic.mo │ │ │ ├── PresetVariableType.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Fundamentals │ │ ├── GetInputsRotary.mo │ │ ├── GetInputsRotary2.mo │ │ ├── IComPump_L1.mo │ │ ├── IComPump_L2.mo │ │ ├── IComTurbine.mo │ │ ├── PumpEnergetics │ │ │ ├── BaseEnergetics.mo │ │ │ ├── EfficiencyCurves_Q1.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── PumpHydraulics │ │ │ ├── BaseHydraulics.mo │ │ │ ├── MetaStable_Q124.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── TurbineEfficiency │ │ │ ├── EfficiencyModelBase.mo │ │ │ ├── RayCorrelation.mo │ │ │ ├── TableMassFlow.mo │ │ │ ├── TableVolumeFlow.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── package.mo │ │ └── package.order │ ├── Pumps │ │ ├── Check │ │ │ ├── TestPumpModels.mo │ │ │ ├── TestPump_L1_OffDesign.mo │ │ │ ├── TestPump_L1_OffDesignInlet.mo │ │ │ ├── TestPump_L1_WithEMotor.mo │ │ │ ├── TestPump_L2_OffDesign.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Fundamentals │ │ │ ├── Outline.mo │ │ │ ├── PumpVLE_affinityBase.mo │ │ │ ├── Pump_Base.mo │ │ │ ├── Summary.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── PumpVLE_L1_affinity.mo │ │ ├── PumpVLE_L1_simple.mo │ │ ├── PumpVLE_L2_affinity.mo │ │ ├── package.mo │ │ └── package.order │ ├── Turbines │ │ ├── Check │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ ├── testSingleTurbineStage.mo │ │ │ ├── testStackedTurbineStages.mo │ │ │ └── testTurbineVLE_L1.mo │ │ ├── SteamTurbineVLE_L1.mo │ │ ├── SteamTurbine_base.mo │ │ ├── TurbineGas_L1_stageStacked.mo │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── Utilities │ ├── Blocks │ │ ├── Check │ │ │ ├── TestMinMax.mo │ │ │ ├── TestParameterizableTable1D.mo │ │ │ ├── TestSlidingmean.mo │ │ │ ├── TestStepsmootherGain.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ ├── testGradientLimiter.mo │ │ │ ├── testMatrixReader.mo │ │ │ ├── testRandomGenerators2.mo │ │ │ ├── testTableGain.mo │ │ │ ├── test_1_LimPID.mo │ │ │ └── test_2_LimPID.mo │ │ ├── Convert2StateDiscrete.mo │ │ ├── DerivativeClaRa.mo │ │ ├── DummyValue.mo │ │ ├── FirstOrderClaRa.mo │ │ ├── Fundamentals │ │ │ ├── normalvariate.mo │ │ │ ├── package.mo │ │ │ ├── package.order │ │ │ └── random.mo │ │ ├── Integrator.mo │ │ ├── LimPID.mo │ │ ├── Noise.mo │ │ ├── ParameterizableTable1D.mo │ │ ├── ReadMatrixFromFile.mo │ │ ├── RealInputMultiplyer.mo │ │ ├── RecalculateComposition.mo │ │ ├── SlidingMean.mo │ │ ├── StepSmootherGain.mo │ │ ├── TableGain.mo │ │ ├── TimeExtrema.mo │ │ ├── TrackThreshold.mo │ │ ├── VarGain.mo │ │ ├── VariableGradientLimiter.mo │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── VolumesValvesFittings │ ├── Fittings │ │ ├── Check │ │ │ ├── TestFuelSplit.mo │ │ │ ├── Test_JoinSplitGas_L2_flex.mo │ │ │ ├── Test_Junction.mo │ │ │ ├── Test_MixAndSplit.mo │ │ │ ├── Test_SprayInjector.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── FlueGasJunction_L2.mo │ │ ├── Fundamentals │ │ │ ├── BaseDp.mo │ │ │ ├── Linear.mo │ │ │ ├── NoFriction.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── JoinGas_L2_flex.mo │ │ ├── JoinVLE_L2_Y.mo │ │ ├── JoinVLE_L2_flex.mo │ │ ├── JoinVLE_L3_Y.mo │ │ ├── SplitFuelGas_L1_flex.mo │ │ ├── SplitFuel_L1_flex.mo │ │ ├── SplitGas_L2_flex.mo │ │ ├── SplitVLE_L2_Y.mo │ │ ├── SplitVLE_L2_flex.mo │ │ ├── SprayInjectorVLE_L3.mo │ │ ├── SprayInjectorVLE_L3_advanced.mo │ │ ├── package.mo │ │ └── package.order │ ├── Pipes │ │ ├── Check │ │ │ ├── FlowReversal │ │ │ │ ├── Test_Pipe_L4_Advanced.mo │ │ │ │ ├── Test_Pipe_L4_Simple.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── MassDefect │ │ │ │ ├── Test_Pipe_L2_Simple.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── OnePhaseFlow │ │ │ │ ├── Test_Pipe_L1_TML.mo │ │ │ │ ├── Test_Pipe_L1_TML_LongDistanceAndGravitationalPressureDrop.mo │ │ │ │ ├── Test_Pipe_L4_Advanced.mo │ │ │ │ ├── Test_Pipe_L4_Simple.mo │ │ │ │ ├── Test_Tube_FlueGas_L2_Simple.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── ThickWallScenarios │ │ │ │ ├── Test_Pipe_L1_TML_insulatedWall.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── TwoPhaseFlow │ │ │ │ ├── Test_HEXvle2vle_L3_2ph_CH_simple_headers.mo │ │ │ │ ├── Test_Pipe_L4_Advanced.mo │ │ │ │ ├── Test_Pipe_L4_Simple.mo │ │ │ │ ├── package.mo │ │ │ │ └── package.order │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Header.mo │ │ ├── PipeFlowGas_L4_Advanced.mo │ │ ├── PipeFlowGas_L4_Simple.mo │ │ ├── PipeFlowVLE_L1_TML.mo │ │ ├── PipeFlowVLE_L2_Simple.mo │ │ ├── PipeFlowVLE_L4_Advanced.mo │ │ ├── PipeFlowVLE_L4_Simple.mo │ │ ├── TubeBundle_L4H1.mo │ │ ├── package.mo │ │ └── package.order │ ├── Valves │ │ ├── Check │ │ │ ├── TestCheckValveOpenLeakage.mo │ │ │ ├── TestThreeWayGasValve.mo │ │ │ ├── TestThreeWayValve.mo │ │ │ ├── TestThreeWayValves.mo │ │ │ ├── TestValves.mo │ │ │ ├── Test_EN60534_compressible.mo │ │ │ ├── Test_EN60534_incompressible.mo │ │ │ ├── Test_GasValves.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── Fundamentals │ │ │ ├── Basic_TWV.mo │ │ │ ├── GenericPressureLoss.mo │ │ │ ├── ICom.mo │ │ │ ├── ICom_TWV.mo │ │ │ ├── IdealSymetric_TWV.mo │ │ │ ├── LinearNominalPoint.mo │ │ │ ├── QuadraticFrictionFlowAreaSymetric_TWV.mo │ │ │ ├── QuadraticFrictionNominalPointSymetric_TWV.mo │ │ │ ├── QuadraticKV.mo │ │ │ ├── QuadraticNominalPoint.mo │ │ │ ├── QuadraticZeta.mo │ │ │ ├── Quadratic_EN60534_base.mo │ │ │ ├── Quadratic_EN60534_compressible.mo │ │ │ ├── Quadratic_EN60534_incompressible.mo │ │ │ ├── Quadratic_EN60534_incompressible_base.mo │ │ │ ├── Quadratic_FlowFunction.mo │ │ │ ├── TWV_L1.mo │ │ │ ├── TWV_L2.mo │ │ │ ├── package.mo │ │ │ └── package.order │ │ ├── GenericValveGasWithDisplay_L1.mo │ │ ├── GenericValveGas_L1.mo │ │ ├── GenericValveVLEWithDisplay_L1.mo │ │ ├── GenericValveVLE_L1.mo │ │ ├── ThreeWayValveGas_L1.mo │ │ ├── ThreeWayValveGas_L1_simple.mo │ │ ├── ThreeWayValveVLE_L1.mo │ │ ├── ThreeWayValveVLE_L1_simple.mo │ │ ├── ThreeWayValveVLE_L2.mo │ │ ├── ThreeWayValve_base.mo │ │ ├── ThreeWayValve_baseGas.mo │ │ ├── ValveFuelFlueGas_L1.mo │ │ ├── package.mo │ │ └── package.order │ ├── package.mo │ └── package.order ├── package.mo └── package.order ├── Examples ├── SteamCycle_01.mo ├── SteamCycle_02.mo ├── SteamPowerPlant_01.mo ├── SteamPowerPlant_CombinedComponents_01.mo ├── VapourCycle_01.mo ├── package.mo └── package.order ├── Resources ├── Images │ ├── ClaRa-Logo.png │ ├── ClaRaLibraryInfo.png │ ├── Components │ │ ├── Adapter.png │ │ ├── Adapter2.png │ │ ├── Adapter2_backward.png │ │ ├── Adapter2_forward.png │ │ ├── Adapter3_backward.png │ │ ├── Adapter3_forward.png │ │ ├── Alpha.png │ │ ├── Alpha_epsilon.png │ │ ├── Ambience.png │ │ ├── BalanceTank.png │ │ ├── Boiler.png │ │ ├── Burner.png │ │ ├── BurnerSlice.png │ │ ├── CharBase.png │ │ ├── ChemicalReactions.png │ │ ├── Compressor.png │ │ ├── ContConveyor.png │ │ ├── CycleSummary.png │ │ ├── Cyclone.png │ │ ├── Deltap.png │ │ ├── Drum.png │ │ ├── EFilter.png │ │ ├── Efficiency.png │ │ ├── Epsilon.png │ │ ├── FeedwaterTank.png │ │ ├── FlameRoom.png │ │ ├── FlameRoomTB.png │ │ ├── FlatTubeFinnedGeometry.png │ │ ├── FlatTubeGeometry.png │ │ ├── FlowAnchor.png │ │ ├── FlowSensor.png │ │ ├── FreeboardSlice.png │ │ ├── Fuel.png │ │ ├── FuelObject.png │ │ ├── Function.png │ │ ├── FurnaceSlice.png │ │ ├── FurnaceSliceUncooledWalls.png │ │ ├── FurnaceSliceUncooledWallsAndarrierTubes.png │ │ ├── FurnaceSliceUncooledcarrierTubes.png │ │ ├── Generator.png │ │ ├── HEX01.png │ │ ├── HEX01FlatTubeFinnedDiscretized.png │ │ ├── HEX01Plate.png │ │ ├── HEX01PlateDiscretized.png │ │ ├── HEX02.png │ │ ├── HEX03.png │ │ ├── HEX04.png │ │ ├── HEX05.png │ │ ├── HollowBlockWithTubesAndHotwell.png │ │ ├── Hopper.png │ │ ├── HopperSlice.png │ │ ├── IdalMixing.png │ │ ├── IdealPhases.png │ │ ├── IdealSeparation.png │ │ ├── ImpactMill.png │ │ ├── InletHeader.png │ │ ├── Junction1.png │ │ ├── Junction2.png │ │ ├── LUVO.png │ │ ├── LUVOQuart.png │ │ ├── LibraryIcon.png │ │ ├── MassCompostion.png │ │ ├── MechanicalEquilibrium.png │ │ ├── MillGeneral.png │ │ ├── Motor.png │ │ ├── Nozzle.png │ │ ├── OutletHeader.png │ │ ├── PackageIcon.png │ │ ├── Pipe.png │ │ ├── PipeLarge.png │ │ ├── Pipe_L1.png │ │ ├── Pipe_L4.png │ │ ├── Pipe_L4_a.png │ │ ├── Pipe_L4_wall.png │ │ ├── PlateGeometry.png │ │ ├── PowerSensor.png │ │ ├── Preheater.png │ │ ├── PressureSensor.png │ │ ├── Pump.png │ │ ├── RealMixing.png │ │ ├── RealPhases.png │ │ ├── RealSeparation.png │ │ ├── Regression.png │ │ ├── RollwerBowlMill.png │ │ ├── Sensor1.png │ │ ├── Sensor2.png │ │ ├── Separator.png │ │ ├── SimCenter.png │ │ ├── SimpleTurbine.png │ │ ├── Sink.png │ │ ├── Slag.png │ │ ├── Source.png │ │ ├── SprayInjector.png │ │ ├── StaCy.png │ │ ├── StartUpBottle.png │ │ ├── Sum.png │ │ ├── TemperatureSensor.png │ │ ├── ThreeWayValve.png │ │ ├── ThreeWayValveCtrl.png │ │ ├── TubeWithWall_L4.png │ │ ├── Valve.png │ │ ├── ValveControllable.png │ │ ├── Volume.png │ │ ├── Volume0D_2Zones.png │ │ ├── VolumeComposition.png │ │ ├── VolumeDistr.png │ │ ├── Volume_L2.png │ │ ├── Volume_L4.png │ │ ├── WallNTU.png │ │ ├── WallThick.png │ │ ├── WallThinLarge.png │ │ ├── WallThinSmall.png │ │ └── WetCoolingTower.png │ ├── Logos │ │ ├── FVTR.png │ │ └── LEAG.png │ ├── Packages │ │ ├── Basics_100.png │ │ ├── Basics_50.png │ │ ├── Basics_60.png │ │ ├── Basics_80.png │ │ ├── Basics_b100.png │ │ ├── Basics_b50.png │ │ ├── Basics_b60.png │ │ ├── Basics_b80.png │ │ ├── ClaRa-Logo.png │ │ ├── ClaRa.png │ │ ├── Components_100.png │ │ ├── Components_50.png │ │ ├── Components_60.png │ │ ├── Components_80.png │ │ ├── Components_b100.png │ │ ├── Components_b50.png │ │ ├── Components_b60.png │ │ ├── Components_b80.png │ │ ├── Contact.png │ │ ├── CycleInit_100.png │ │ ├── CycleInit_50.png │ │ ├── CycleInit_60.png │ │ ├── CycleInit_80.png │ │ ├── CycleInit_b100.png │ │ ├── CycleInit_b50.png │ │ ├── CycleInit_b60.png │ │ ├── CycleInit_b80.png │ │ ├── Element100.png │ │ ├── Examples100.png │ │ ├── Examples_50.png │ │ ├── Examples_60.png │ │ ├── Examples_80.png │ │ ├── Examples_b50.png │ │ ├── Examples_b60.png │ │ ├── Examples_b80.png │ │ ├── Examplesb100.png │ │ ├── ExecutableRegressionr100.png │ │ ├── Info.png │ │ ├── InitCycle.png │ │ ├── ModelProperties.png │ │ ├── Subsystems_100.png │ │ ├── Subsystems_50.png │ │ ├── Subsystems_60.png │ │ ├── Subsystems_80.png │ │ ├── Subsystems_b100.png │ │ ├── Subsystems_b50.png │ │ ├── Subsystems_b60.png │ │ ├── Subsystems_b80.png │ │ ├── Visualisation100.png │ │ ├── Visualisation50.png │ │ ├── Visualisation60.png │ │ ├── Visualisation80.png │ │ ├── Visualisationb100.png │ │ ├── Visualisationb50.png │ │ ├── Visualisationb60.png │ │ └── Visualisationb80.png │ └── ParameterDialog │ │ ├── Bottle.png │ │ ├── BurnerSketch.png │ │ ├── BurnerSketchEmpty.png │ │ ├── CarrierTubesSketch.png │ │ ├── Drum.png │ │ ├── FeedWaterTank_L3.png │ │ ├── FeedWaterTank_L3_advanced.png │ │ ├── FinnedWallSketch.png │ │ ├── FinnedWallSketchEmpty.png │ │ ├── FinnedWallSketchHopper.png │ │ ├── FurnaceSketch.png │ │ ├── FurnaceSketchEmpty.png │ │ ├── FurnaceketchEmpty.png │ │ ├── HEX01FlatTubeFinnedGeometry_ParameterDialogDetail.png │ │ ├── HEX01FlatTubeFinnedGeometry_ParameterDialogHX.png │ │ ├── HEX01PlateGeometry_ParameterDialog.png │ │ ├── HEX_ParameterDialogTubes.png │ │ ├── HEX_ParameterDialog_BUshell1ph.png │ │ ├── HEX_ParameterDialog_BUshell1ph2.png │ │ ├── HEX_ParameterDialog_BUshell2ph.png │ │ ├── HEX_ParameterDialog_BUshell2ph2.png │ │ ├── HEX_ParameterDialog_BUshellgas.png │ │ ├── HEX_ParameterDialog_BUshellgas2.png │ │ ├── HEX_ParameterDialog_CHgeneral.png │ │ ├── HEX_ParameterDialog_CHshell.png │ │ ├── HEX_ParameterDialog_CHshell1ph.png │ │ ├── HEX_ParameterDialog_CUshell.png │ │ ├── HollowBlock.png │ │ ├── HollowBlockWithTubes.png │ │ ├── HollowBlockWithTubesAndCarrierTubes.png │ │ ├── HollowBlockWithTubesAndHotwell.png │ │ ├── HollowCylinderWithTubes.png │ │ ├── HopperSketch.png │ │ ├── PipeGeometry.png │ │ ├── PipeWithHotwell.png │ │ ├── PumpCharField1.png │ │ ├── PumpHydraulicsMetaStable124.png │ │ ├── RegAirPreheater.png │ │ ├── RegAirPreheater_PrimSec.png │ │ ├── TubeBundleSketch.png │ │ ├── Valve.png │ │ └── fins.png ├── Library │ ├── linux32 │ │ └── libDelay-V1.a │ ├── linux64 │ │ └── libDelay-V1.a │ ├── win32 │ │ ├── Delay-V1.lib │ │ ├── ITI_Delay-V1.dll │ │ ├── libDelay-V1.a │ │ └── libDelay-V1.dll │ └── win64 │ │ ├── Delay-V1.lib │ │ ├── ITI_Delay-V1.dll │ │ ├── libDelay-V1.a │ │ └── libDelay-V1.dll ├── Scripts │ ├── ClaRa_StartUpDymola.mos │ ├── ConvertFrom000.mos │ ├── ConvertFrom010.mos │ ├── ConvertFrom020.mos │ ├── ConvertFrom021.mos │ ├── ConvertFrom022.mos │ ├── ConvertFrom101.mos │ ├── ConvertFrom112_to_121.mos │ ├── ConvertFrom12x_to_130.mos │ ├── ConvertFrom130_to_131.mos │ ├── ConvertFrom131_to_140.mos │ ├── ConvertFrom140_to_141.mos │ ├── ConvertFrom141_to_150.mos │ ├── ConvertFrom150_to_160.mos │ ├── ConvertFrom160_to_161.mos │ ├── ConvertFrom161_to_170.mos │ └── ConvertFrom170_to_180.mos └── TableBase │ ├── DeltaP_mill_meas.mat │ ├── DeltaP_mill_model.mat │ ├── DeltaP_pa.mat │ ├── Desuperheater.mat │ ├── E_meas.mat │ ├── E_model.mat │ ├── T_air.mat │ ├── T_out_meas.mat │ ├── T_out_model.mat │ ├── W_air.mat │ ├── W_c.mat │ ├── W_pf_meas.mat │ ├── W_pf_model.mat │ ├── exampleTable.mat │ └── omega.mat ├── SimCenter.mo ├── StaticCycles ├── Adapters │ ├── Check │ │ ├── TestAdapters.mo │ │ ├── package.mo │ │ └── package.order │ ├── GainVLE1.mo │ ├── GainVLE2.mo │ ├── GainVLE3.mo │ ├── package.mo │ └── package.order ├── Boundaries │ ├── Check │ │ ├── TestNewBoundaries.mo │ │ ├── package.mo │ │ └── package.order │ ├── Dispatcher.mo │ ├── SinkGas_green.mo │ ├── Sink_blue.mo │ ├── Sink_brown.mo │ ├── Sink_green.mo │ ├── Sink_grey.mo │ ├── Sink_orange.mo │ ├── Sink_red.mo │ ├── Sink_yellow.mo │ ├── Source_black.mo │ ├── Source_blue.mo │ ├── Source_brown.mo │ ├── Source_green.mo │ ├── Source_grey.mo │ ├── Source_orange.mo │ ├── Source_purple.mo │ ├── Source_red.mo │ ├── Source_yellow.mo │ ├── package.mo │ └── package.order ├── Check │ ├── StaticCycleExamples │ │ ├── InitSteamCycle_01.mo │ │ ├── InitSteamCycle_SimplePowerPlant1.mo │ │ ├── InitSteamCycle_SimplePowerPlant2.mo │ │ ├── InitSteamCycle_SimplePowerPlant3.mo │ │ ├── InitSteamCycle_T_4_Pr_F1_C1.mo │ │ ├── InitSteamCycle_T_4_Pr_F1_C1_version2.mo │ │ ├── InitSteamPowerPlant_01.mo │ │ ├── StaCy_5Components.mo │ │ ├── StaCy_5Components_Spray.mo │ │ ├── SteamCycle_4NDV_3HDV_01.mo │ │ ├── package.mo │ │ └── package.order │ ├── TestBoundaries.mo │ ├── TestStacy1.mo │ ├── TestStacy2.mo │ ├── TestStacy3.mo │ ├── TestStacy4.mo │ ├── TestStacy5.mo │ ├── TestStacy6.mo │ ├── TestStacy7.mo │ ├── TestStacy8.mo │ ├── package.mo │ └── package.order ├── Fittings │ ├── Check │ │ ├── TestMixSplitGas.mo │ │ ├── TestMixer4.mo │ │ ├── TestSplit7.mo │ │ ├── package.mo │ │ └── package.order │ ├── HeaterCooler.mo │ ├── Mixer1.mo │ ├── Mixer2.mo │ ├── Mixer3.mo │ ├── Mixer4.mo │ ├── MixerGas1.mo │ ├── MixerGas2.mo │ ├── Split1.mo │ ├── Split2.mo │ ├── Split3.mo │ ├── Split4.mo │ ├── Split5.mo │ ├── Split6.mo │ ├── Split7.mo │ ├── SplitGas1.mo │ ├── SplitGas2.mo │ ├── SprayAttemperator.mo │ ├── SprayAttemperator2.mo │ ├── package.mo │ └── package.order ├── Fundamentals │ ├── FlueGasSignal_base.mo │ ├── FlueGasSignal_brown_a.mo │ ├── FlueGasSignal_brown_b.mo │ ├── FlueGasSignal_green_a.mo │ ├── FlueGasSignal_green_b.mo │ ├── FlueGasSignal_orange_a.mo │ ├── FlueGasSignal_orange_b.mo │ ├── FlueGasSignal_purple_a.mo │ ├── FlueGasSignal_purple_b.mo │ ├── FuelSignal_black_a.mo │ ├── FuelSignal_black_b.mo │ ├── PowerSignal_A.mo │ ├── PowerSignal_B.mo │ ├── SteamSignal_base.mo │ ├── SteamSignal_blue_a.mo │ ├── SteamSignal_blue_b.mo │ ├── SteamSignal_green_a.mo │ ├── SteamSignal_green_b.mo │ ├── SteamSignal_red_a.mo │ ├── SteamSignal_red_b.mo │ ├── SteamSignal_yellow_a.mo │ ├── SteamSignal_yellow_b.mo │ ├── package.mo │ └── package.order ├── Furnace │ ├── Boiler_simple.mo │ ├── Burner1.mo │ ├── Burner2.mo │ ├── FlameRoom1.mo │ ├── FlameRoom2.mo │ ├── FlameRoom3.mo │ ├── FlameRoomNaturalCirculation.mo │ ├── FlameRoom_woBundle.mo │ ├── TripleFlueGas.mo │ ├── package.mo │ └── package.order ├── HeatExchanger │ ├── Condenser.mo │ ├── Preheater1.mo │ ├── Preheater2.mo │ ├── Preheater_Delta_T.mo │ ├── Preheater_twoShell.mo │ ├── Reboiler.mo │ ├── package.mo │ └── package.order ├── Machines │ ├── Check │ │ ├── CheckPumpModels.mo │ │ ├── CheckTurbineModels.mo │ │ ├── TestTurbineDrivenPump.mo │ │ ├── package.mo │ │ └── package.order │ ├── Pump1.mo │ ├── Pump1_mech.mo │ ├── Pump1_real.mo │ ├── Pump2.mo │ ├── Pump2_mech.mo │ ├── Pump2_real.mo │ ├── Pump3.mo │ ├── Turbine.mo │ ├── Turbine_mech.mo │ ├── Turbine_mech2.mo │ ├── package.mo │ └── package.order ├── Quadruple.mo ├── Sensors │ ├── FuelMassFlowSensor.mo │ ├── package.mo │ └── package.order ├── Storage │ ├── Check │ │ ├── TestSeparator.mo │ │ ├── package.mo │ │ └── package.order │ ├── Feedwatertank3.mo │ ├── Feedwatertank4.mo │ ├── Separator.mo │ ├── package.mo │ └── package.order ├── Triple.mo ├── ValvesConnects │ ├── Buffer_cutFlow1.mo │ ├── Buffer_cutFlow2.mo │ ├── Buffer_setFlow1.mo │ ├── Check │ │ ├── TestValve_dp_nom4.mo │ │ ├── package.mo │ │ └── package.order │ ├── FlowAnchor_constPressure1.mo │ ├── FlowAnchor_cutPressure1.mo │ ├── PressureAnchor_constFlow1.mo │ ├── Tube1.mo │ ├── Tube2.mo │ ├── ValveGas_cutPressure1.mo │ ├── Valve_cutPressure1.mo │ ├── Valve_cutPressure2.mo │ ├── Valve_dp_nom1.mo │ ├── Valve_dp_nom2.mo │ ├── Valve_dp_nom3.mo │ ├── Valve_dp_nom4.mo │ ├── package.mo │ └── package.order ├── package.mo └── package.order ├── SubSystems ├── Boiler │ ├── Check │ │ ├── package.mo │ │ └── package.order │ ├── CoalSupplyBoiler_base.mo │ ├── Fundamentals │ │ ├── BoilerSummary.mo │ │ ├── package.mo │ │ └── package.order │ ├── SteamGenerator_L1.mo │ ├── SteamGenerator_L3.mo │ ├── package.mo │ └── package.order ├── Furnace │ ├── BurnerSlice_L4.mo │ ├── ConvectiveSlice_L4.mo │ ├── FreeboardSlice_L4.mo │ ├── HopperSlice_L4.mo │ ├── HopperSlice_L4_AdditionalAir.mo │ ├── package.mo │ └── package.order ├── package.mo └── package.order ├── UsersGuide ├── Contact │ ├── package.mo │ └── package.order ├── GettingStarted │ ├── package.mo │ └── package.order ├── Licence │ ├── package.mo │ └── package.order ├── Revisions │ ├── package.mo │ └── package.order ├── package.mo └── package.order ├── Visualisation ├── Check │ ├── IllustrateVisualisation.mo │ ├── TestDynamicBar.mo │ ├── TestDynamicDiagram.mo │ ├── TestHEXdisplay.mo │ ├── TestQuadruple.mo │ ├── TestRealDisplay.mo │ ├── TestSixtuple.mo │ ├── TestStatePoint.mo │ ├── TestXYplot.mo │ ├── package.mo │ └── package.order ├── DynDisplay.mo ├── DynamicBar.mo ├── Fundamentals │ ├── ScalarToVector.mo │ ├── package.mo │ └── package.order ├── Hexdisplay_3.mo ├── Quadruple.mo ├── QuadrupleGas.mo ├── RecycleRate.mo ├── Scope.mo ├── Sixtuple.mo ├── StatePoint.mo ├── StatePointGas_phTs.mo ├── StatePoint_ph.mo ├── StatePoint_phTs.mo ├── TinyBooleanDisplay.mo ├── TinyRealDisplay.mo ├── XYYplot.mo ├── XYplot.mo ├── package.mo └── package.order ├── libraryinfo.mos ├── package.mo └── package.order /Basics/Choices/GeometryOrientation.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Choices; 2 | type GeometryOrientation = enumeration( 3 | vertical "Vertical orientation", 4 | horizontal "Horizontal orientation") "orientation of the geometry"; 5 | -------------------------------------------------------------------------------- /Basics/Choices/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics; 2 | package Choices 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Basics80; 20 | 21 | 22 | end Choices; 23 | -------------------------------------------------------------------------------- /Basics/Choices/package.order: -------------------------------------------------------------------------------- 1 | FluidType 2 | Position 3 | Init 4 | HeatTransfer 5 | GeometryOrientation 6 | -------------------------------------------------------------------------------- /Basics/Constants/package.order: -------------------------------------------------------------------------------- 1 | M_C 2 | M_H 3 | M_O 4 | M_O2 5 | M_N 6 | M_S 7 | M_Ash 8 | M_H2O 9 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/FluidVolumes/Check/package.order: -------------------------------------------------------------------------------- 1 | Validation_VolumeVLE_L2_HeatTransfer_1ph_shell 2 | Validation_VolumeVLE_L2_HeatTransfer_2ph_shell 3 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/FluidVolumes/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | VolumeVLE_2 3 | VolumeVLE_L3_TwoZonesNPort 4 | VolumeVLEGas_L3 5 | VolumeVLE_3_TwoZones 6 | VolumeVLE_L4 7 | VolumeVLE_L4_Advanced 8 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/Check/package.order: -------------------------------------------------------------------------------- 1 | Test_SmoothedDeltaTmean_arith 2 | Test_SmoothedDeltaTmean_log 3 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/ChemicalReactions/package.order: -------------------------------------------------------------------------------- 1 | reactionsInput 2 | ChemicalReactionsBaseGas 3 | NoReaction_L2 4 | E_Filter_L2_Simple 5 | E_Filter_L2_Empirical 6 | E_Filter_L2_Detailed 7 | Desulfurization_L2 8 | Denitrification_L2 9 | DesulfurizationBase 10 | E_FilterBase 11 | DenitrificationBase 12 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/Geometry/BlockShape.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.ControlVolumes.Fundamentals.Geometry; 2 | partial model BlockShape "Partial model for block-shaped geometry definitions" 3 | equation 4 | 5 | end BlockShape; 6 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/Geometry/ShellWithTubes.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.ControlVolumes.Fundamentals.Geometry; 2 | partial model ShellWithTubes "geometry definition for a shell with tubes inside" 3 | 4 | end ShellWithTubes; 5 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/Geometry/TubeType.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.ControlVolumes.Fundamentals.Geometry; 2 | partial model TubeType "Partial model for definition of tube-type replaceable models" 3 | end TubeType; 4 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/Geometry/package.order: -------------------------------------------------------------------------------- 1 | BlockShape 2 | TubeType 3 | ShellWithTubes 4 | GenericGeometry 5 | GenericGeometry_N_cv 6 | HollowBlock 7 | HollowBlockWithTubes 8 | HollowBlockWithTubesAndCarrierTubes 9 | HollowBlockWithTubesAndHotwell 10 | HollowCylinder 11 | HollowCylinderWithTubes 12 | PipeGeometry 13 | PipeWithHotwell 14 | PipeGeometry_N_cv 15 | PlateGeometry 16 | PlateGeometry_N_cv 17 | FlatTubeFinnedGeometry_N_cv 18 | FlatTubeGeometry_N_cv 19 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/HeatTransport/Gas_HT/Convection/package.order: -------------------------------------------------------------------------------- 1 | ConvectiveHeatTransfer 2 | HeatTransfer_L2 3 | Convection_flatWall_L2 4 | Convection_tubeBank_L2 5 | ConvectionAndRadiation_tubeBank_L2 6 | Convection_finnedTubes_L2 7 | Convection_carrierTubes_laminar_L2 8 | Convection_carrierTubes_turbulent_L2 9 | HeatTransfer_L4 10 | Convection_regenerativeAirPreheater_L4 11 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/HeatTransport/Gas_HT/Radiation/package.order: -------------------------------------------------------------------------------- 1 | RadiantHeatTransfer 2 | HeatTransfer_L2 3 | Radiation_gas2Wall_L2 4 | Radiation_gas2Gas_L2 5 | Radiation_gas2Wall_advanced_L2 6 | Radiation_gas2Gas_advanced_L2 7 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/HeatTransport/Gas_HT/package.order: -------------------------------------------------------------------------------- 1 | HeatTransferGas 2 | HeatTransfer 3 | Convection 4 | Radiation 5 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/HeatTransport/Generic_HT/package.order: -------------------------------------------------------------------------------- 1 | HeatTransfer_L2 2 | IdealHeatTransfer_L2 3 | Adiabat_L2 4 | Constant_L2 5 | CharLine_L2 6 | HeatTransfer_L3 7 | Ideal_L3 8 | Adiabat_L3 9 | Constant_L3 10 | HeatTransfer_L4 11 | Adiabat_L4 12 | Constant_L4 13 | CharLine_L4 14 | NominalPoint_L4 15 | Ideal_L4 16 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/HeatTransport/VLE_HT/package.order: -------------------------------------------------------------------------------- 1 | HeatTransfer_L2 2 | NusseltPipe1ph_L2 3 | NusseltShell1ph_L2 4 | NusseltShell2ph_L2 5 | HeatTransfer_L3 6 | Constant_L3_ypsDependent 7 | HeatTransfer_L4 8 | NusseltPipe_L4 9 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/HeatTransport/package.order: -------------------------------------------------------------------------------- 1 | HeatTransferBaseGas 2 | HeatTransferBaseGas_only 3 | HeatTransferBaseVLE 4 | HeatTransferBaseGas_L3 5 | HeatTransferBaseVLE_L3 6 | HeatTransferBaseGas_L4 7 | HeatTransferBaseVLE_L4 8 | TubeType_L2 9 | ShellType_L2 10 | TubeType_L3 11 | ShellType_L3 12 | HeatTransferBasePlateVLE_L4 13 | HeatTransferBasePlateVLE_L2 14 | HeatTransferBaseFlatTubeFinnedGas_L4 15 | Generic_HT 16 | Gas_HT 17 | VLE_HT 18 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/PressureLoss/Gas_PL/package.order: -------------------------------------------------------------------------------- 1 | PressureLoss_L4 2 | QuadraticNominalPoint_L4 3 | QuadraticNominalPoint_L2 4 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/PressureLoss/Generic_PL/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.ControlVolumes.Fundamentals.PressureLoss; 2 | package Generic_PL "Pressure loss models for arbitrary geometries and media" 3 | extends Icons.PackageIcons.Basics50; 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | end Generic_PL; 30 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/PressureLoss/Generic_PL/package.order: -------------------------------------------------------------------------------- 1 | PressureLoss_L2 2 | NoFriction_L2 3 | LinearPressureLoss_L2 4 | QuadraticNominalPoint_L2 5 | PressureLoss_L3 6 | NoFriction_L3 7 | LinearParallelZones_L3 8 | LinearSerialZones_L3 9 | QuadraticParallelZones_L3 10 | PressureLoss_L4 11 | NoFriction_L4 12 | LinearPressureLoss_L4 13 | QuadraticNominalPoint_L4 14 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/PressureLoss/PressureLossBaseGas_L2.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.ControlVolumes.Fundamentals.PressureLoss; 2 | partial model PressureLossBaseGas_L2 3 | //__________________________________________________________________________// 4 | // Component of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | equation 18 | 19 | end PressureLossBaseGas_L2; 20 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/PressureLoss/PressureLossBaseVLE_L2.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.ControlVolumes.Fundamentals.PressureLoss; 2 | partial model PressureLossBaseVLE_L2 3 | //__________________________________________________________________________// 4 | // Component of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | equation 18 | 19 | end PressureLossBaseVLE_L2; 20 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/PressureLoss/VLE_PL/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.ControlVolumes.Fundamentals.PressureLoss; 2 | package VLE_PL "Pressure loss models with media in vapour-liquid equilibrium" 3 | extends Icons.PackageIcons.Basics50; 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | end VLE_PL; 14 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/PressureLoss/VLE_PL/package.order: -------------------------------------------------------------------------------- 1 | PressureLoss_L2 2 | PressureLossCoeffcient_L2 3 | QuadraticNominalPoint_L2 4 | PressureLoss_L4 5 | QuadraticNominalPoint_L4 6 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/PressureLoss/package.order: -------------------------------------------------------------------------------- 1 | PressureLossBaseGas_L2 2 | PressureLossBaseVLE_L2 3 | PressureLossBaseGas_L4 4 | PressureLossBaseVLE_L4 5 | TubeType_L2 6 | ShellType_L2 7 | TubeType_L3 8 | ShellType_L3 9 | PressureLossBasePlateVLE_L4 10 | PressureLossBasePlateVLE_L2 11 | PressureLossBaseFlatTubeFinnedGas_L4 12 | Generic_PL 13 | VLE_PL 14 | Gas_PL 15 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/SpacialDistribution/package.order: -------------------------------------------------------------------------------- 1 | IdealPhases 2 | IdeallyStirred 3 | IdeallySeparated 4 | RealPhases 5 | RealSeparated 6 | RealMixed 7 | MechanicalEquilibrium_L4 8 | Homogeneous_L4 9 | SimpleAnalyticalSlip_L4 10 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Geometry 3 | HeatTransport 4 | SpacialDistribution 5 | PressureLoss 6 | ChemicalReactions 7 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/GasVolumes/Check/package.order: -------------------------------------------------------------------------------- 1 | TestFlueGasCell 2 | TestFlueGasCell_N_cv 3 | TestFlueGasCell_chem 4 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/GasVolumes/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | VolumeGas_L2 3 | VolumeGas_L4 4 | VolumeGas_L2_chem 5 | VolumeGas_L4_advanced 6 | VolumeGas_L2_advanced 7 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/Check/Test_NTU_CounterParallelCross_Comparison.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.ControlVolumes.SolidVolumes.Check; 2 | model Test_NTU_CounterParallelCross_Comparison "Comparison of NTU counter cross and parallel flow models" 3 | extends ClaRa.Visualisation.Check.TestHEXdisplay; 4 | annotation (experiment( 5 | StopTime=100, 6 | __Dymola_NumberOfIntervals=1000, 7 | Tolerance=1e-007, 8 | __Dymola_Algorithm="Dassl")); 9 | end Test_NTU_CounterParallelCross_Comparison; 10 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/Check/package.order: -------------------------------------------------------------------------------- 1 | Validation_NTUcounter_DiscrPipes_Case1 2 | Validation_NTUparallel_DiscrPipes 3 | Test_NTU_CounterParallelCross_Comparison 4 | TestNTU_Case1_Validation_Dynamic 5 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/Fundamentals/Averaging_Cp/package.order: -------------------------------------------------------------------------------- 1 | GeneralMean 2 | ArithmeticMean 3 | InputOnly 4 | KepplerMean 5 | ConstantheatCapacity 6 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/Fundamentals/Blocks/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.ControlVolumes.SolidVolumes.Fundamentals.Blocks; 2 | package Check 3 | extends ClaRa.Basics.Icons.PackageIcons.Basicsb50; 4 | end Check; 5 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/Fundamentals/Blocks/Check/package.order: -------------------------------------------------------------------------------- 1 | Check_TinyPIP 2 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/Fundamentals/Blocks/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.ControlVolumes.SolidVolumes.Fundamentals; 2 | package Blocks 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Basics50; 20 | 21 | end Blocks; 22 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/Fundamentals/Blocks/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | TinyPIP 3 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/Fundamentals/HeatExchangerTypes/package.order: -------------------------------------------------------------------------------- 1 | GeneralHeatExchanger 2 | CounterFlow 3 | ParallelFlow 4 | CrossFlow 5 | CrossCounterFlow 6 | TubeBundle 7 | GeneralHeatExchanger_L3 8 | CounterFlow_L3 9 | ParallelFlow_L3 10 | CrossFlow_L3 11 | CrossFlow_OneTubeRow 12 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/Fundamentals/Icons/package.order: -------------------------------------------------------------------------------- 1 | HEX_CounterFlow_Icon 2 | HEX_ParallelFlow_Icon 3 | HEX_CrossFlow_Icon 4 | HEX_CrossCounterFlow_Icon 5 | HEX_TubeBundle_Icon 6 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | Averaging_Cp 2 | HeatExchangerTypes 3 | ICom_NTU_L3 4 | Icons 5 | Blocks 6 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Fundamentals 3 | ThinPlateWall_L4 4 | CylindricalThinWall_L4 5 | CylindricalThickWall_L4 6 | NTU_L2 7 | NTU_L2_effectiveResistance 8 | NTU_L3 9 | NTU_L3_standalone 10 | NTU_plate_L3 11 | NTU_plate_L3_standalone 12 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/package.order: -------------------------------------------------------------------------------- 1 | FluidVolumes 2 | SolidVolumes 3 | GasVolumes 4 | Fundamentals 5 | -------------------------------------------------------------------------------- /Basics/Functions/ClaRaDelay/ExternalTable.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Functions.ClaRaDelay; 2 | class ExternalTable 3 | extends ExternalObject; 4 | function constructor 5 | extends ClaRa.Basics.Icons.Function; 6 | output ExternalTable table; 7 | external "C" table = initXRGDelay() annotation (__iti_dll="ITI_Delay-V1.dll",Library={"Delay-V1","ModelicaExternalC"}); 8 | end constructor; 9 | 10 | function destructor "Release storage of table" 11 | extends ClaRa.Basics.Icons.Function; 12 | input ExternalTable table; 13 | external "C" deleteXRGDelay(table) annotation (__iti_dll="ITI_Delay-V1.dll",Library={"Delay-V1","ModelicaExternalC"}); 14 | end destructor; 15 | end ExternalTable; 16 | -------------------------------------------------------------------------------- /Basics/Functions/ClaRaDelay/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Functions; 2 | package ClaRaDelay 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Basics60; 20 | 21 | 22 | 23 | end ClaRaDelay; 24 | -------------------------------------------------------------------------------- /Basics/Functions/ClaRaDelay/package.order: -------------------------------------------------------------------------------- 1 | ExternalTable 2 | getDelayValuesAtTime 3 | -------------------------------------------------------------------------------- /Basics/Functions/TestCases/TestMaxAbs.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Functions.TestCases; 2 | model TestMaxAbs 3 | extends ClaRa.Basics.Icons.PackageIcons.ExecutableExampleb80; 4 | Real x1=time; 5 | Real x2=time-1; 6 | Real maxx=ClaRa.Basics.Functions.maxAbs(x1,x2,0.1); 7 | Real minn=ClaRa.Basics.Functions.minAbs(x1,x2,0.1); 8 | annotation (experiment(StopTime=1)); 9 | end TestMaxAbs; 10 | -------------------------------------------------------------------------------- /Basics/Functions/TestCases/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Functions; 2 | package TestCases 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Basicsb60; 20 | 21 | 22 | 23 | 24 | 25 | end TestCases; 26 | -------------------------------------------------------------------------------- /Basics/Functions/TestCases/package.order: -------------------------------------------------------------------------------- 1 | TestGenerateGrid 2 | TestMaxAbs 3 | TestLogMean 4 | -------------------------------------------------------------------------------- /Basics/Functions/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics; 2 | package Functions 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Basics80; 20 | end Functions; 21 | -------------------------------------------------------------------------------- /Basics/Functions/package.order: -------------------------------------------------------------------------------- 1 | ClaRaDelay 2 | TestCases 3 | Stepsmoother 4 | Stepsmoother_der 5 | ThermoRoot 6 | ThermoRoot_der 7 | GenerateGrid 8 | mod 9 | Factorial 10 | A_hor_intCyl 11 | shape_intCyl 12 | CalculateStateChangeFraction 13 | SmoothZeroTransition 14 | maxAbs 15 | minAbs 16 | pressureInterpolation 17 | vectorInterpolation 18 | InitialiseCombustionGas 19 | length 20 | RecalculateComposition 21 | -------------------------------------------------------------------------------- /Basics/Icons/HEX01FlatTubeFinnedDiscretized.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Icons; 2 | model HEX01FlatTubeFinnedDiscretized 3 | 4 | annotation (Icon(coordinateSystem(preserveAspectRatio=false, initialScale=0.1, 5 | extent={{-100,-100},{100,100}}), 6 | graphics={Bitmap( 7 | extent={{-100,-100},{100,100}}, fileName="modelica://ClaRa/Resources/Images/Components/HEX01FlatTubeFinnedDiscretized.png")}), 8 | Diagram(coordinateSystem(preserveAspectRatio=false, initialScale=0.1, 9 | extent={{-100,-100},{100,100}})), 10 | Icon(coordinateSystem(preserveAspectRatio=false)), Diagram(coordinateSystem(preserveAspectRatio=false))); 11 | end HEX01FlatTubeFinnedDiscretized; 12 | -------------------------------------------------------------------------------- /Basics/Icons/HEX01Plate.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Icons; 2 | model HEX01Plate 3 | 4 | annotation (Icon(coordinateSystem(preserveAspectRatio=false, initialScale=0.1, 5 | extent={{-100,-100},{100,100}}), 6 | graphics={Bitmap( 7 | extent={{-100,-100},{100,100}}, fileName="modelica://ClaRa/Resources/Images/Components/HEX01Plate.png")}), 8 | Diagram(coordinateSystem(preserveAspectRatio=false, initialScale=0.1, 9 | extent={{-100,-100},{100,100}})), 10 | Icon(coordinateSystem(preserveAspectRatio=false)), Diagram(coordinateSystem(preserveAspectRatio=false))); 11 | end HEX01Plate; 12 | -------------------------------------------------------------------------------- /Basics/Icons/HEX01PlateDiscretized.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Icons; 2 | model HEX01PlateDiscretized 3 | 4 | annotation (Icon(coordinateSystem(preserveAspectRatio=false, initialScale=0.1, 5 | extent={{-100,-100},{100,100}}), 6 | graphics={Bitmap( 7 | extent={{-100,-100},{100,100}}, fileName="modelica://ClaRa/Resources/Images/Components/HEX01PlateDiscretized.png")}), 8 | Diagram(coordinateSystem(preserveAspectRatio=false, initialScale=0.1, 9 | extent={{-100,-100},{100,100}})), 10 | Icon(coordinateSystem(preserveAspectRatio=false)), Diagram(coordinateSystem(preserveAspectRatio=false))); 11 | end HEX01PlateDiscretized; 12 | -------------------------------------------------------------------------------- /Basics/Icons/IComIcon.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Icons; 2 | record IComIcon 3 | 4 | annotation (Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100, 5 | -100},{100,100}}), 6 | graphics={ 7 | Polygon( 8 | points={{-100,60},{100,60},{100,-60},{-100,-60},{-100,60}}, 9 | smooth=Smooth.None, 10 | fillColor={143,170,56}, 11 | fillPattern=FillPattern.Solid, 12 | lineColor={115,150,0}), 13 | Line( 14 | points={{-40,60},{-40,-60}}, 15 | color={115,150,0}, 16 | smooth=Smooth.None), 17 | Line( 18 | points={{40,60},{40,-60}}, 19 | color={115,150,0}, 20 | smooth=Smooth.None), 21 | Line( 22 | points={{-100,0},{100,0}}, 23 | color={115,150,0}, 24 | smooth=Smooth.None), 25 | Text( 26 | extent={{-100,100},{100,60}}, 27 | lineColor={115,150,0}, 28 | textString="%name")})); 29 | end IComIcon; 30 | -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/ClaRab100/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Basics/Icons/PackageIcons/ClaRab100/package.order -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Critical.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Icons.PackageIcons; 2 | partial package Critical 3 | 4 | annotation (Icon(graphics={ 5 | Rectangle( 6 | extent={{-100,60},{60,-100}}, 7 | lineColor={0,0,0}, 8 | fillColor={255,54,28}, 9 | fillPattern=FillPattern.Solid), 10 | Polygon( 11 | points={{-100,60},{-100,60},{-32,100},{100,100},{100,-60},{60,-100},{ 12 | 60,60},{-100,60}}, 13 | lineColor={0,0,0}, 14 | smooth=Smooth.None, 15 | fillColor={255,75,21}, 16 | fillPattern=FillPattern.Solid), 17 | Line( 18 | points={{60,60},{100,100}}, 19 | color={0,0,0}, 20 | smooth=Smooth.None), 21 | Line( 22 | points={{-32,100},{-32,60}}, 23 | color={0,0,0}, 24 | smooth=Smooth.None)})); 25 | end Critical; 26 | -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/package.order: -------------------------------------------------------------------------------- 1 | Basics100 2 | Basics80 3 | Basics60 4 | Basics50 5 | Basicsb100 6 | Basicsb80 7 | Basicsb60 8 | Basicsb50 9 | Components100 10 | Components80 11 | Components60 12 | Components50 13 | Componentsb100 14 | Componentsb80 15 | Componentsb60 16 | Componentsb50 17 | Contact100 18 | CycleInit100 19 | CycleInit80 20 | CycleInit60 21 | CycleInit50 22 | CycleInitb100 23 | CycleInitb80 24 | CycleInitb60 25 | CycleInitb50 26 | Examples100 27 | Examples80 28 | Examples60 29 | Examples50 30 | Examplesb100 31 | Examplesb80 32 | Examplesb60 33 | Examplesb50 34 | Info100 35 | Subsystems100 36 | Subsystems80 37 | Subsystems60 38 | Subsystems50 39 | Subsystemsb100 40 | Subsystemsb80 41 | Subsystemsb60 42 | Subsystemsb50 43 | Visualisation100 44 | Visualisation80 45 | Visualisation60 46 | Visualisation50 47 | Visualisationb100 48 | Visualisationb80 49 | Visualisationb60 50 | Visualisationb50 51 | ExecutableExample100 52 | ExecutableExampleb80 53 | ExecutableExampleb60 54 | ExecutableExampleb50 55 | ExecutableRegressiong100 56 | Critical 57 | ClaRab100 58 | FuelPackage 59 | -------------------------------------------------------------------------------- /Basics/Icons/RecordIcon.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Icons; 2 | record RecordIcon 3 | 4 | annotation (Icon(graphics={ 5 | Polygon( 6 | points={{-100,60},{100,60},{100,-60},{-100,-60},{-100,60}}, 7 | smooth=Smooth.None, 8 | fillColor={153,205,221}, 9 | fillPattern=FillPattern.Solid, 10 | lineColor={51,156,186}), 11 | Line( 12 | points={{-40,60},{-40,-60}}, 13 | color={51,156,186}, 14 | smooth=Smooth.None), 15 | Line( 16 | points={{40,60},{40,-60}}, 17 | color={51,156,186}, 18 | smooth=Smooth.None), 19 | Line( 20 | points={{-100,0},{100,0}}, 21 | color={51,156,186}, 22 | smooth=Smooth.None), 23 | Text( 24 | extent={{-100,100},{100,60}}, 25 | lineColor={51,156,186}, 26 | textString="%name")})); 27 | end RecordIcon; 28 | -------------------------------------------------------------------------------- /Basics/Interfaces/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Interfaces; 2 | package Check 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Basicsb60; 20 | 21 | end Check; 22 | -------------------------------------------------------------------------------- /Basics/Interfaces/Check/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Basics/Interfaces/Check/package.order -------------------------------------------------------------------------------- /Basics/Interfaces/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | GasMassSpecific 3 | GasPortIn 4 | GasPortOut 5 | FluidPortIn 6 | FluidPortOut 7 | Fuel_inlet 8 | Fuel_outlet 9 | FuelFlueGas_inlet 10 | FuelFlueGas_outlet 11 | FuelSlagFlueGas_inlet 12 | FuelSlagFlueGas_outlet 13 | Slag_inlet 14 | Slag_outlet 15 | HeatPort_a 16 | HeatPort_b 17 | vleFluidMassPort 18 | CycleSummaryPort 19 | Connected2SimCenter 20 | CycleSumModel 21 | CycleSumPort 22 | EyeIn 23 | EyeInGas 24 | EyeOut 25 | EyeOutGas 26 | DataInterface 27 | DoubleDataInterface 28 | DataInterfaceVector 29 | DataInterfaceVectorGas 30 | Bus 31 | SteamSignal 32 | ElectricPortIn 33 | ElectricPortOut 34 | FuelInletDistr 35 | FuelOutletDistr 36 | -------------------------------------------------------------------------------- /Basics/Media/Check/TestFuelObjectAndFuelDefinitions.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Media.Check; 2 | model TestFuelObjectAndFuelDefinitions 3 | extends ClaRa.Basics.Icons.PackageIcons.ExecutableExampleb80; 4 | inner SimCenter simCenter(redeclare FuelTypes.Fuel_verbandsformel_v3 fuelModel1) 5 | annotation (Placement(transformation(extent={{-100,-100},{-60,-80}}))); 6 | FuelObject fuelObject( 7 | p=1e5, 8 | T=300, 9 | xi_c=fuelObject.fuelModel.defaultComposition, 10 | fuelModel=simCenter.fuelModel1) annotation (Placement(transformation(extent={{-26,-12},{-6,8}}))); 11 | annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram(coordinateSystem(preserveAspectRatio=false))); 12 | end TestFuelObjectAndFuelDefinitions; 13 | -------------------------------------------------------------------------------- /Basics/Media/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Media; 2 | package Check 3 | extends ClaRa.Basics.Icons.PackageIcons.Basicsb50; 4 | 5 | end Check; 6 | -------------------------------------------------------------------------------- /Basics/Media/Check/package.order: -------------------------------------------------------------------------------- 1 | TestFuelObjectAndFuelDefinitions 2 | -------------------------------------------------------------------------------- /Basics/Media/Fuel/package.order: -------------------------------------------------------------------------------- 1 | PartialFuel 2 | Coal_v1 3 | Coal_v2 4 | Coal_Reference 5 | CoalOilMixture 6 | -------------------------------------------------------------------------------- /Basics/Media/FuelFunctions/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Media; 2 | package FuelFunctions 3 | extends ClaRa.Basics.Icons.PackageIcons.Basics60; 4 | 5 | 6 | end FuelFunctions; 7 | -------------------------------------------------------------------------------- /Basics/Media/FuelFunctions/package.order: -------------------------------------------------------------------------------- 1 | heatCapacity_pTxi 2 | LHV_pTxi 3 | density_pTxi 4 | enthalpy_pTxi 5 | waterMassFraction_xi 6 | ashMassFraction_xi 7 | massFraction_i_xi 8 | elementaryComposition_xi 9 | -------------------------------------------------------------------------------- /Basics/Media/FuelTypes/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Media; 2 | package FuelTypes 3 | extends ClaRa.Basics.Icons.PackageIcons.Basics60; 4 | 5 | 6 | 7 | 8 | 9 | 10 | end FuelTypes; 11 | -------------------------------------------------------------------------------- /Basics/Media/FuelTypes/package.order: -------------------------------------------------------------------------------- 1 | BaseFuel 2 | Fuel_refvalues_v1 3 | Fuel_refvalues_v2 4 | Fuel_refvalues_v3 5 | Fuel_verbandsformel_v1 6 | Fuel_verbandsformel_v2 7 | Fuel_verbandsformel_v3 8 | Fuel_v3 9 | EmptyFuel 10 | -------------------------------------------------------------------------------- /Basics/Media/Slag/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Media; 2 | package Slag 3 | extends ClaRa.Basics.Icons.PackageIcons.Basics60; 4 | 5 | 6 | end Slag; 7 | -------------------------------------------------------------------------------- /Basics/Media/Slag/package.order: -------------------------------------------------------------------------------- 1 | Slag_v1 2 | Slag_v2 3 | PartialSlag 4 | -------------------------------------------------------------------------------- /Basics/Media/Solids/Fireclay.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Media.Solids; 2 | model Fireclay "Fireclay material" 3 | //VDI Waermeatlas for 400°C 4 | extends ClaRa.Basics.Media.Solids.BaseSolid( 5 | final d = 2150.0, 6 | final cp_nominal = 956.0, 7 | final lambda_nominal = 1.05, 8 | final nu_nominal=-1, 9 | final E_nominal=-1, 10 | final G_nominal=-1, 11 | final beta_nominal=-1); 12 | equation 13 | cp=cp_nominal; 14 | lambda=lambda_nominal; 15 | nu = nu_nominal; 16 | E = E_nominal; 17 | G = G_nominal; 18 | beta = beta_nominal; 19 | end Fireclay; 20 | -------------------------------------------------------------------------------- /Basics/Media/Solids/InsulationOrstechLSP_H_const.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Media.Solids; 2 | model InsulationOrstechLSP_H_const "Orstech Insulation" 3 | extends ClaRa.Basics.Media.Solids.BaseSolid( 4 | final d = 100.0, 5 | final cp_nominal = 800.0, 6 | final lambda_nominal = 0.1, 7 | final nu_nominal=-1, 8 | final E_nominal=-1, 9 | final G_nominal=-1, 10 | final beta_nominal=-1); 11 | equation 12 | cp=cp_nominal; 13 | lambda=lambda_nominal; 14 | nu = nu_nominal; 15 | E = E_nominal; 16 | G = G_nominal; 17 | beta = beta_nominal; 18 | end InsulationOrstechLSP_H_const; 19 | -------------------------------------------------------------------------------- /Basics/Media/Solids/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Media; 2 | package Solids 3 | extends ClaRa.Basics.Icons.PackageIcons.Basics60; 4 | 5 | end Solids; 6 | -------------------------------------------------------------------------------- /Basics/Media/Solids/package.order: -------------------------------------------------------------------------------- 1 | BaseSolid 2 | Steel10CrMo9_10 3 | Steel13CrMo4_5 4 | Steel16Mo3 5 | Steel42CrMo4 6 | SteelAISI_904L 7 | SteelX2CrNi19_11 8 | SteelX2CrNiMo17_12_2 9 | SteelX5CrNi18_10 10 | SteelX5CrNiMo17_12_2 11 | SteelX8CrNiTi18_10 12 | InsulationOrstechLSP_H_const 13 | Fireclay 14 | SteelX20CrMoV12_1 15 | SteelX10CrMoVNb9_1 16 | Steel15NiCuMoNb5 17 | SteelX3CrNiMo17_13 18 | -------------------------------------------------------------------------------- /Basics/Media/package.order: -------------------------------------------------------------------------------- 1 | FuelObject 2 | FuelTypes 3 | FuelFunctions 4 | Slag 5 | Fuel 6 | Check 7 | CreateInterpolatedMedium 8 | Solids 9 | -------------------------------------------------------------------------------- /Basics/Records/package.order: -------------------------------------------------------------------------------- 1 | FlangeVLE 2 | FluidVLE_L2 3 | FluidVLE_L34 4 | FlangeGas 5 | IComBase_L2 6 | IComGas_L2 7 | IComVLE_L2 8 | IComBase_L3 9 | IComGas_L3 10 | IComVLE_L3 11 | IComVLE_L3_NPort 12 | IComVLE_L3_OnePort 13 | StaCyFlangeVLE 14 | StaCyFlangeGas 15 | StaCyFlangeFuel 16 | IComFuel_L2 17 | StaCyFlangeVLE_a 18 | StaticMeasurementValue 19 | StaCyFlangeGas_a 20 | -------------------------------------------------------------------------------- /Basics/Types/Color.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Types; 2 | type Color = Integer[3] (each min=0, each max=255) "RGB representation of a color"; 3 | -------------------------------------------------------------------------------- /Basics/Types/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics; 2 | package Types 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Basics80; 20 | end Types; 21 | -------------------------------------------------------------------------------- /Basics/Types/package.order: -------------------------------------------------------------------------------- 1 | Color 2 | -------------------------------------------------------------------------------- /Basics/Units/AbsolutePressure.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type AbsolutePressure = Real(final quantity= "PressureDifference", final unit="Pa", displayUnit="Pa", nominal= 1e5, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/Acceleration.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Acceleration = Real(final quantity= "Acceleration", final unit="m/s2", displayUnit="m/s2", nominal= 10, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/Angle.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Angle = Real(final quantity= "Angle", final unit="rad", displayUnit="deg", nominal= Modelica.Constants.pi); 3 | -------------------------------------------------------------------------------- /Basics/Units/AngularVelocity.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type AngularVelocity = Real (final quantity="AngularVelocity", final unit="rad/s"); 3 | -------------------------------------------------------------------------------- /Basics/Units/Area.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Area = Real(final quantity= "Area", final unit="m2", displayUnit="m2", nominal= 1, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/AreaFraction.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type AreaFraction = Real(final quantity= "AreaFraction", final unit="m2/m2", displayUnit="m2/m2", nominal= 1, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/CoefficientOfHeatTransfer.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type CoefficientOfHeatTransfer = Real(final quantity= "CoefficientOfHeatTransfer", final unit="W/(m2.K)", displayUnit="W/(m2.K)", nominal= 1, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/DensityMassSpecific.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type DensityMassSpecific = Real(final quantity= "DensityVolumeSpecific", final unit="kg/m3", displayUnit="kg/m3", nominal= 1000,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/DensityMolSpecific.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type DensityMolSpecific = Real(final quantity= "DensityMolSpecific", final unit="mol/m3", displayUnit="mol/m3", nominal= 50,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/DensityVolumeSpecific.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type DensityVolumeSpecific=Real(final quantity= "DensityVolumeSpecific", final unit="kg/m3", displayUnit="kg/m3", nominal= 1000,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/DerivativeOfDensityMassSpecific.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type DerivativeOfDensityMassSpecific = Real(final quantity= "DerivativeOfDensityVolumeSpecific", final unit="kg/(m3.s)", displayUnit="kg/(m3.s)", nominal= 1); 3 | -------------------------------------------------------------------------------- /Basics/Units/DynamicViscosity.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type DynamicViscosity = Real (final quantity="DynamicViscosity", final unit="Pa.s", min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/Efficiency.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Efficiency = Real(final quantity= "Efficiency", final unit="1", displayUnit="1", nominal= 1,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/ElasticityModule.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type ElasticityModule = Real ( final quantity="ElasticityModule", final unit="Pa", displayUnit="Pa", nominal=1e11); 3 | -------------------------------------------------------------------------------- /Basics/Units/ElectricCurrent.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type ElectricCurrent = Real(final quantity= "Current", final unit="A", displayUnit="A", nominal= 1,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/ElectricResistance.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type ElectricResistance = Real(final quantity= "Resistance", final unit="Ohm", displayUnit="Ohm", nominal= 1); 3 | -------------------------------------------------------------------------------- /Basics/Units/ElectricVoltage.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type ElectricVoltage = Real(final quantity= "Voltage", final unit="V", displayUnit="V", nominal= 1); 3 | -------------------------------------------------------------------------------- /Basics/Units/Energy.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Energy = Real(final quantity= "Energy", final unit="J", displayUnit="J", nominal= 1e3,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/EnergyMassSpecific.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type EnergyMassSpecific = Real(final quantity= "MassSpecificEnergy", final unit="J/kg", displayUnit="J/kg", nominal= 1e3,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/Enthalpy.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Enthalpy = Real(final quantity= "Enthalpy", final unit="J", displayUnit="J", nominal= 1e5,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/EnthalpyFlowRate.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type EnthalpyFlowRate = Real(final quantity= "EnthalpyFlowRate", final unit="W", displayUnit="W", nominal= 1e5); 3 | -------------------------------------------------------------------------------- /Basics/Units/EnthalpyMassSpecific.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type EnthalpyMassSpecific = Real(final quantity= "MassSpecificEnthalpy", final unit="J/kg", displayUnit="J/kg", nominal= 1e3); 3 | -------------------------------------------------------------------------------- /Basics/Units/EnthalpyMolSpecific.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type EnthalpyMolSpecific = Real(final quantity= "MolSpecificEnthalpy", final unit="J/mol", displayUnit="J/mol", nominal= 1e3,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/EnthalpyVolumeSpecific.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type EnthalpyVolumeSpecific = Real(final quantity= "VolumeSpecificEnthalpy", final unit="J/m3", displayUnit="J/m3", nominal= 1e5,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/EntropyFlowRate.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type EntropyFlowRate = Real(final quantity= "EntropyFlowRate", final unit="J/(K.s)", displayUnit="J/(K.s)"); 3 | -------------------------------------------------------------------------------- /Basics/Units/EntropyMassSpecific.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type EntropyMassSpecific = Real(final quantity= "MassSpecificEntropy", final unit="J/(kg.K)", displayUnit="J/(kg.K)", nominal= 1e3,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/Force.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Force = Real(final quantity= "Force", final unit="N", displayUnit="N", nominal=1); 3 | -------------------------------------------------------------------------------- /Basics/Units/Frequency.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Frequency = Real(final quantity= "Frequency", final unit="1/s", displayUnit="1/min", nominal= 1000); 3 | -------------------------------------------------------------------------------- /Basics/Units/FroudeNumber.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type FroudeNumber = Real(final quantity= "FroudeNumber", final unit="1", displayUnit="1"); 3 | -------------------------------------------------------------------------------- /Basics/Units/HeatCapacityFlowRate.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type HeatCapacityFlowRate = Real(final quantity= "HeatCapacityFlow", final unit="W/(K)", displayUnit="W/(K)", nominal= 1e3); 3 | -------------------------------------------------------------------------------- /Basics/Units/HeatCapacityMassSpecific.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type HeatCapacityMassSpecific = Real(final quantity= "SpecificHeatCapacity", final unit="J/(kg.K)", displayUnit="J/(kg.K)", nominal= 1e3); 3 | -------------------------------------------------------------------------------- /Basics/Units/HeatExpansionRateLinear.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type HeatExpansionRateLinear = Real (final quantity="HeatExpansionRateLinear", final unit="1/K", displayUnit="1/K", nominal=1e-6); 3 | -------------------------------------------------------------------------------- /Basics/Units/HeatFlowRate.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type HeatFlowRate = Real(final quantity= "Power", final unit="W", displayUnit="W", nominal= 1e5); 3 | -------------------------------------------------------------------------------- /Basics/Units/HeatFlux.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type HeatFlux = Real(final quantity= "HeatFlux", final unit="W/m2", displayUnit="W/m2", nominal= 1e5); 3 | -------------------------------------------------------------------------------- /Basics/Units/Inductance.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Inductance = Real (final quantity="Inductance",final unit="H"); 3 | -------------------------------------------------------------------------------- /Basics/Units/InternalEnergy.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type InternalEnergy = Energy; 3 | -------------------------------------------------------------------------------- /Basics/Units/KinematicViscosity.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type KinematicViscosity = Real (final quantity="KinematicViscosity", final unit="m2/s", min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/Length.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Length = Real(final quantity= "Length", final unit="m", displayUnit="m", nominal= 1); 3 | -------------------------------------------------------------------------------- /Basics/Units/Mass.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Mass = Real(final quantity= "Mass", final unit="kg", displayUnit="kg", nominal=1, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/MassFlowDensity.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type MassFlowDensity = Real(final quantity= "MassFlowDensity", final unit="kg/(m2.s)", displayUnit="kg/(m2.s)", nominal=1); 3 | -------------------------------------------------------------------------------- /Basics/Units/MassFlowRate.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type MassFlowRate = Real(final quantity= "MassFlowRate", final unit="kg/s", displayUnit="kg/s", nominal=1); 3 | -------------------------------------------------------------------------------- /Basics/Units/MassFlux.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type MassFlux = Real(final quantity= "MassFlux", final unit="kg/(m2.s)", displayUnit="kg/(m^2.s)", nominal=1); 3 | -------------------------------------------------------------------------------- /Basics/Units/MassFraction.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type MassFraction = Real(final quantity= "MassFraction", final unit="kg/kg", displayUnit="kg/kg", nominal=1, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/MassFraction_ppm.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type MassFraction_ppm = Real(final quantity= "MassFraction", final unit="ug/kg", displayUnit="ug/kg", nominal=1, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/MolFraction.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type MolFraction = Real(final quantity= "MassFraction", final unit="kg/kg", displayUnit="kg/kg", nominal=1, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/MolarMass.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type MolarMass = Real(final quantity= "MolarMass", final unit="kg/mol", displayUnit="kg/mol", nominal=1, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/MomentOfInertia.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type MomentOfInertia = Real (final quantity="MomentOfInertia", final unit="kg.m2"); 3 | -------------------------------------------------------------------------------- /Basics/Units/Momentum.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Momentum = Real(final quantity= "Momentum", final unit="kg.m/s", displayUnit="kg.m/s", nominal=1); 3 | -------------------------------------------------------------------------------- /Basics/Units/MomentumFlowRate.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type MomentumFlowRate = Real(final quantity= "MomentumFlowRate", final unit="kg.m/s2", displayUnit="N", nominal=1); 3 | -------------------------------------------------------------------------------- /Basics/Units/NusseltNumber.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type NusseltNumber = Real(final quantity= "NusseltNumber", final unit="1", displayUnit="1"); 3 | -------------------------------------------------------------------------------- /Basics/Units/Power.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Power = Real(final quantity= "Power", final unit="W", displayUnit="W", nominal= 1e5); 3 | -------------------------------------------------------------------------------- /Basics/Units/PrandtlNumber.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type PrandtlNumber = Real(final quantity= "PrandtlNumber", final unit="1", displayUnit="1"); 3 | -------------------------------------------------------------------------------- /Basics/Units/Pressure.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Pressure = Real(final quantity= "Pressure", final unit="Pa", displayUnit="Pa", nominal= 1e5, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/PressureDifference.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type PressureDifference = Real(final quantity= "PressureDifference", final unit="Pa", displayUnit="Pa", nominal= 1e5); 3 | -------------------------------------------------------------------------------- /Basics/Units/RPM.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type RPM = Real(final quantity= "RotationsPerMinute", final unit="1/min", displayUnit="rpm", nominal= 0); 3 | -------------------------------------------------------------------------------- /Basics/Units/RelativeHumidity.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type RelativeHumidity = Real(final quantity= "RelativeHumidity", final unit="1", displayUnit="1", nominal= 0, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/ReynoldsNumber.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type ReynoldsNumber = Real(final quantity= "ReynoldsNumber", final unit="1", displayUnit="1"); 3 | -------------------------------------------------------------------------------- /Basics/Units/ShearModulus.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type ShearModulus = Real ( final quantity="ShearModulus", final unit="Pa", displayUnit="Pa", nominal=1e11); 3 | -------------------------------------------------------------------------------- /Basics/Units/Stress.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Stress = Real ( final quantity="Stress", final unit="Pa", displayUnit="Pa", nominal=1e11); 3 | -------------------------------------------------------------------------------- /Basics/Units/SurfaceTension.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type SurfaceTension = Real ( final quantity="SurfaceTension", final unit="kg/s2", displayUnit="kg/s2", nominal=1e-3); 3 | -------------------------------------------------------------------------------- /Basics/Units/Temperature.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Temperature = Real(final quantity= "Temperature", final unit="K", min=0, displayUnit="K") "Absolute thermodynamic temperature"; 3 | -------------------------------------------------------------------------------- /Basics/Units/TemperatureDifference.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type TemperatureDifference = Real(final quantity= "TemperatureDifference", final unit="K", start=0, displayUnit="K") "Temperature diference"; 3 | -------------------------------------------------------------------------------- /Basics/Units/Temperature_DegC.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Temperature_DegC = Real(final quantity= "Temperature", final unit="degC",displayUnit="degC", min=-273.15, start=20) "Temperature in degree Celsius"; 3 | -------------------------------------------------------------------------------- /Basics/Units/ThermalConductivity.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type ThermalConductivity = Real (final quantity="ThermalConductivity", final unit="W/(m.K)"); 3 | -------------------------------------------------------------------------------- /Basics/Units/ThermalResistance.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type ThermalResistance = Real (final quantity="ThermalResistance", final unit="K/W", displayUnit="K/W", nominal=1e-3); 3 | -------------------------------------------------------------------------------- /Basics/Units/Time.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Time = Real(final quantity= "Time", final unit="s", displayUnit="s", nominal= 1); 3 | -------------------------------------------------------------------------------- /Basics/Units/Torque.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Torque = Real(final quantity= "Torque", final unit="N.m", displayUnit="N.m", nominal=1); 3 | -------------------------------------------------------------------------------- /Basics/Units/Velocity.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Velocity = Real(final quantity= "Velocity", final unit="m/s", displayUnit="m/s", nominal= 1); 3 | -------------------------------------------------------------------------------- /Basics/Units/Voltage.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Voltage =Real(final quantity = "Voltage", final unit = "V", displayUnit="V"); 3 | -------------------------------------------------------------------------------- /Basics/Units/Volume.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type Volume = Real(final quantity= "Volume", final unit="m3", displayUnit="m3", nominal= 1, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/VolumeFlowRate.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type VolumeFlowRate = Real(final quantity= "VolumeFlowRate", final unit="m3/s", displayUnit="m3/s", nominal= 1); 3 | -------------------------------------------------------------------------------- /Basics/Units/VolumeFraction.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type VolumeFraction = Real(final quantity= "VolumeFraction", final unit="m3/m3", displayUnit="m3/m3", nominal=1, max=1, min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/VolumeMassSpecific.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type VolumeMassSpecific = Real(final quantity= "MassSpecificVolume", final unit="m3/kg", displayUnit="m3/kg", nominal= 1/1000,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/VolumeMolSpecific.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics.Units; 2 | type VolumeMolSpecific = Real(final quantity= "MolSpecificVolume", final unit="m3/mol", displayUnit="m3/mol", nominal= 1/50,min=0); 3 | -------------------------------------------------------------------------------- /Basics/Units/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Basics; 2 | package Units 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | extends ClaRa.Basics.Icons.PackageIcons.Basics80; 19 | end Units; 20 | -------------------------------------------------------------------------------- /Basics/package.order: -------------------------------------------------------------------------------- 1 | Records 2 | Functions 3 | Types 4 | Interfaces 5 | Icons 6 | Choices 7 | Units 8 | Media 9 | ControlVolumes 10 | Constants 11 | -------------------------------------------------------------------------------- /Components/Adapters/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Adapters; 2 | package Check 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Componentsb50; 20 | 21 | 22 | 23 | 24 | 25 | end Check; 26 | -------------------------------------------------------------------------------- /Components/Adapters/Check/package.order: -------------------------------------------------------------------------------- 1 | TestScalar2VectorHeatPort 2 | TestFluidConverters 3 | RowOfScalar2VectorHeatPorts 4 | TestGasSensorAdapter 5 | -------------------------------------------------------------------------------- /Components/Adapters/Fundamentals/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Adapters; 2 | package Fundamentals 3 | extends ClaRa.Basics.Icons.PackageIcons.Components50; 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | end Fundamentals; 14 | -------------------------------------------------------------------------------- /Components/Adapters/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | FlangeA 2 | FlangeB 3 | SourceP 4 | SinkP 5 | SensT 6 | -------------------------------------------------------------------------------- /Components/Adapters/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Fundamentals 3 | Fluid2ClaRa 4 | ThermoPower2ClaRa 5 | ClaRa2ThermoPower 6 | Scalar2VectorHeatPort 7 | FuelSlagFlueGas_join 8 | FuelSlagFlueGas_split 9 | FuelFlueGas_join 10 | FuelFlueGas_split 11 | FuelAerosolDistributor 12 | AerosolFuelConcentrator 13 | GasSensorAdapter 14 | -------------------------------------------------------------------------------- /Components/BoundaryConditions/Check/package.order: -------------------------------------------------------------------------------- 1 | TestIAPWSboundaries2 2 | TestFlueGasComposition 3 | TestFuelBoundaries 4 | -------------------------------------------------------------------------------- /Components/BoundaryConditions/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | BoundaryVLE_hxim_flow 3 | BoundaryVLE_Txim_flow 4 | BoundaryVLE_phxi 5 | BoundaryVLE_pTxi 6 | BoundaryGas_Txim_flow 7 | BoundaryGas_pTxi 8 | BoundaryFuel_Txim_flow 9 | BoundaryFuel_pTxi 10 | BoundarySlag_Tm_flow 11 | BoundarySlag_pT 12 | PrescribedMassFlowVLE 13 | PrescribedHeatFlow 14 | PrescribedHeatFlowScalar 15 | GasCompositionByMassFractions 16 | GasCompositionByVolFractions 17 | BoundaryElectricFrequency 18 | Ambience 19 | PrescribedMassFlowGas 20 | -------------------------------------------------------------------------------- /Components/Control/FeedForward/Check/package.order: -------------------------------------------------------------------------------- 1 | TestBlockFF 2 | -------------------------------------------------------------------------------- /Components/Control/FeedForward/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | FeedForwardBlock_3508 3 | -------------------------------------------------------------------------------- /Components/Control/PowerPlantControl/Check/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Components/Control/PowerPlantControl/Check/package.order -------------------------------------------------------------------------------- /Components/Control/PowerPlantControl/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | LiveSteamTemperature 3 | -------------------------------------------------------------------------------- /Components/Control/PredictorModels_3508/Check/package.order: -------------------------------------------------------------------------------- 1 | TestReheater 2 | TestPredictor 3 | -------------------------------------------------------------------------------- /Components/Control/PredictorModels_3508/Icons/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Control.PredictorModels_3508; 2 | package Icons 3 | 4 | //__________________________________________________________________________// 5 | // Component of the ClaRa library, version: 1.8.0 // 6 | // // 7 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 8 | // Copyright 2013-2022, ClaRa development team. // 9 | // // 10 | // The ClaRa development team consists of the following partners: // 11 | // TLK-Thermo GmbH (Braunschweig, Germany), // 12 | // XRG Simulation GmbH (Hamburg, Germany). // 13 | //__________________________________________________________________________// 14 | // Contents published in ClaRa have been contributed by different authors // 15 | // and institutions. Please see model documentation for detailed information// 16 | // on original authorship and copyrights. // 17 | //__________________________________________________________________________// 18 | 19 | extends Basics.Icons.PackageIcons.Basics50; 20 | 21 | end Icons; 22 | -------------------------------------------------------------------------------- /Components/Control/PredictorModels_3508/Icons/package.order: -------------------------------------------------------------------------------- 1 | BoilerPredictor 2 | TurbineAndReheat 3 | -------------------------------------------------------------------------------- /Components/Control/PredictorModels_3508/package.order: -------------------------------------------------------------------------------- 1 | Icons 2 | Check 3 | CoalSupplyBoiler_01_XRG 4 | TurbinesAndReheat_00_XRG 5 | TurbinesAndReheat_01_XRG 6 | TurbinesAndReheat_02_XRG 7 | EnthalpyPredictor 8 | -------------------------------------------------------------------------------- /Components/Control/package.order: -------------------------------------------------------------------------------- 1 | PredictorModels_3508 2 | PowerPlantControl 3 | FeedForward 4 | -------------------------------------------------------------------------------- /Components/Electrical/Check/package.order: -------------------------------------------------------------------------------- 1 | TestAsynchronousMotor 2 | TestAsynchronousMotorWithPump 3 | TestTurboGenerator 4 | -------------------------------------------------------------------------------- /Components/Electrical/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | AsynchronousMotor_L2_base 3 | AsynchronousMotor_L2 4 | SimpleGenerator 5 | -------------------------------------------------------------------------------- /Components/FlueGasCleaning/Denitrification/Check/package.order: -------------------------------------------------------------------------------- 1 | Test_Denitrification 2 | -------------------------------------------------------------------------------- /Components/FlueGasCleaning/Denitrification/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Denitrification_L2 3 | -------------------------------------------------------------------------------- /Components/FlueGasCleaning/Desulfurization/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.FlueGasCleaning.Desulfurization; 2 | package Check 3 | extends ClaRa.Basics.Icons.PackageIcons.Componentsb50; 4 | 5 | 6 | 7 | end Check; 8 | -------------------------------------------------------------------------------- /Components/FlueGasCleaning/Desulfurization/Check/package.order: -------------------------------------------------------------------------------- 1 | Test_Desulfurization_ideal 2 | Test_FlueGasCleaning 3 | -------------------------------------------------------------------------------- /Components/FlueGasCleaning/Desulfurization/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Desulfurization_L2_ideal 3 | -------------------------------------------------------------------------------- /Components/FlueGasCleaning/E_Filter/Check/package.order: -------------------------------------------------------------------------------- 1 | test_E_Filter 2 | -------------------------------------------------------------------------------- /Components/FlueGasCleaning/E_Filter/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | E_Filter_L2 3 | -------------------------------------------------------------------------------- /Components/FlueGasCleaning/package.order: -------------------------------------------------------------------------------- 1 | Desulfurization 2 | E_Filter 3 | Denitrification 4 | -------------------------------------------------------------------------------- /Components/Furnace/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | CombustionChamberBase 2 | HopperBase 3 | CombustionChamberBase_additional_HPs 4 | -------------------------------------------------------------------------------- /Components/Furnace/Burner/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Furnace; 2 | package Burner 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Components60; 20 | 21 | 22 | 23 | 24 | 25 | end Burner; 26 | -------------------------------------------------------------------------------- /Components/Furnace/Burner/package.order: -------------------------------------------------------------------------------- 1 | Burner_L2_Static 2 | Burner_L2_Dynamic 3 | Burner_L2_Dynamic_fuelDrying 4 | -------------------------------------------------------------------------------- /Components/Furnace/Check/package.order: -------------------------------------------------------------------------------- 1 | Test_CombustionChamber 2 | Test_CombustionChamber_control 3 | Test_CombustionChamber_vs_Burner_control 4 | Test_burner_adiabatic_fuelDrying 5 | -------------------------------------------------------------------------------- /Components/Furnace/ChemicalReactions/package.order: -------------------------------------------------------------------------------- 1 | PartialReactionZone 2 | CoalReactionZone 3 | -------------------------------------------------------------------------------- /Components/Furnace/FlameRoom/package.order: -------------------------------------------------------------------------------- 1 | FlameRoom_L2_Static 2 | FlameRoomAdditionalAir_L2_Static 3 | FlameRoomWithTubeBundle_L2_Static 4 | FlameRoom_L2_Dynamic 5 | FlameRoomAdditionalAir_L2_Dynamic 6 | FlameRoomWithTubeBundle_L2_Dynamic 7 | -------------------------------------------------------------------------------- /Components/Furnace/GeneralTransportPhenomena/BurningTime/package.order: -------------------------------------------------------------------------------- 1 | PartialBurningTime 2 | ConstantBurningTime 3 | -------------------------------------------------------------------------------- /Components/Furnace/GeneralTransportPhenomena/ParticleMigration/package.order: -------------------------------------------------------------------------------- 1 | PartialMigrationSpeed 2 | FixedMigrationSpeed_simple 3 | MeanMigrationSpeed 4 | -------------------------------------------------------------------------------- /Components/Furnace/GeneralTransportPhenomena/ThermalCapacities/package.order: -------------------------------------------------------------------------------- 1 | PartialThermalCapacity 2 | ThermalLowPass 3 | -------------------------------------------------------------------------------- /Components/Furnace/GeneralTransportPhenomena/package.order: -------------------------------------------------------------------------------- 1 | ParticleMigration 2 | BurningTime 3 | ThermalCapacities 4 | -------------------------------------------------------------------------------- /Components/Furnace/Hopper/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Furnace; 2 | package Hopper 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Components60; 20 | end Hopper; 21 | -------------------------------------------------------------------------------- /Components/Furnace/Hopper/package.order: -------------------------------------------------------------------------------- 1 | Hopper_L2 2 | -------------------------------------------------------------------------------- /Components/Furnace/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | SimpleCombustionChamber 3 | BaseClasses 4 | Burner 5 | FlameRoom 6 | Hopper 7 | GeneralTransportPhenomena 8 | ChemicalReactions 9 | -------------------------------------------------------------------------------- /Components/HeatExchangers/Check/package.order: -------------------------------------------------------------------------------- 1 | Test_HEXvle2gas_L3_1ph_BU 2 | Test_HEXvle2vle_L3_1ph_kA 3 | Test_HEXvle2vle_L3_1ph_BU_ntu 4 | Test_HEXvle2vle_L3_1ph_BU_simple 5 | Test_HEXvle2vle_L3_2ph_BU_ntu 6 | Test_HEXvle2vle_L3_2ph_BU_simple 7 | Test_HEXvle2vle_L3_2ph_CH_simple_shutoff 8 | Test_HEXvle2vle_L3_2ph_CH_simple 9 | Test_HEXvle2vle_L3_2ph_CH_ntu 10 | Test_HEXvle2vle_L3_2ph_CU_simple 11 | Test_HEXvle2vle_L3_2ph_CU_ntu 12 | Test_RegenerativeAirPreheater 13 | EvaluateDesuperheater 14 | Test_PlateHEXvle2vle_L4 15 | Test_PlateHEXvle2vle_L3_2ph_ntu 16 | Test_FlatTubeFinnedHEXvle2gas_L4 17 | -------------------------------------------------------------------------------- /Components/HeatExchangers/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | IdealShell_L2 3 | TubeBundle_L2 4 | HEXvle2vle_L3_1ph_kA 5 | HEXvle2vle_L3_1ph_BU_simple 6 | HEXvle2vle_L3_1ph_BU_ntu 7 | HEXvle2vle_L3_2ph_BU_simple 8 | HEXvle2vle_L3_2ph_BU_ntu 9 | HEXvle_L3_2ph_BU 10 | HEXvle2vle_L3_2ph_CH_simple 11 | HEXvle2vle_L3_2ph_CH_ntu 12 | HEXvle2vle_L3_2ph_CU_simple 13 | HEXvle2vle_L3_2ph_CU_ntu 14 | HEXvle2gas_L3_1ph_BU_simple 15 | HEXvle2gas_L3_1ph_BU_ntu 16 | HEXvle2gas_L3_2ph_BU_simple 17 | RegenerativeAirPreheater_L4 18 | RegenerativeAirPreheaterPrimaryAndSecondaryAir_L4 19 | PlateHEXvle2vle_L4 20 | PlateHEXvle2vle_L3_2ph_ntu 21 | FlatTubeFinnedHEXvle2gas_L4 22 | -------------------------------------------------------------------------------- /Components/MechanicalSeparation/Check/package.order: -------------------------------------------------------------------------------- 1 | TestFeedWaterTank_1Separator 2 | TestBalanceTank 3 | TestDrum 4 | TestSeparator_L1 5 | TestSeparator_L3 6 | TestBottle 7 | -------------------------------------------------------------------------------- /Components/MechanicalSeparation/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | FeedWaterTank_base 3 | FeedWaterTank_L2 4 | FeedWaterTank_L3 5 | BalanceTank_L3 6 | Drum_L3 7 | SteamSeparatorVLE_L1 8 | SteamSeparatorVLE_L3 9 | Bottle_L3 10 | -------------------------------------------------------------------------------- /Components/Mills/HardCoalMills/Check/package.order: -------------------------------------------------------------------------------- 1 | testRollerBowlMills 2 | combineMillandFurnace 3 | ValidateRollerBowlMill_3 4 | SimpleMillTester 5 | -------------------------------------------------------------------------------- /Components/Mills/HardCoalMills/Fundamentals/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Mills.HardCoalMills; 2 | package Fundamentals 3 | extends ClaRa.Basics.Icons.PackageIcons.Components60; 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | end Fundamentals; 16 | -------------------------------------------------------------------------------- /Components/Mills/HardCoalMills/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | RollerBowlMillDefinition 2 | STV1 3 | STV4 4 | ASV1 5 | ASV3 6 | SummaryMill 7 | -------------------------------------------------------------------------------- /Components/Mills/HardCoalMills/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Fundamentals 3 | RollerBowlMill_L1 4 | VerticalMill_L3 5 | -------------------------------------------------------------------------------- /Components/Mills/LigniteMills/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Mills; 2 | package LigniteMills 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Components60; 20 | 21 | end LigniteMills; 22 | -------------------------------------------------------------------------------- /Components/Mills/LigniteMills/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Components/Mills/LigniteMills/package.order -------------------------------------------------------------------------------- /Components/Mills/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components; 2 | package Mills "Coal Mills" 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Components80; 20 | 21 | 22 | 23 | end Mills; 24 | -------------------------------------------------------------------------------- /Components/Mills/package.order: -------------------------------------------------------------------------------- 1 | HardCoalMills 2 | LigniteMills 3 | PhysicalMills 4 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Mills.PhysicalMills; 2 | package Check 3 | 4 | //__________________________________________________________________________// 5 | // Package of the ClaRa library, version: 1.8.0 // 6 | // // 7 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 8 | // Copyright 2013-2022, ClaRa development team. // 9 | // // 10 | // The ClaRa development team consists of the following partners: // 11 | // TLK-Thermo GmbH (Braunschweig, Germany), // 12 | // XRG Simulation GmbH (Hamburg, Germany). // 13 | //__________________________________________________________________________// 14 | // Contents published in ClaRa have been contributed by different authors // 15 | // and institutions. Please see model documentation for detailed information// 16 | // on original authorship and copyrights. // 17 | //__________________________________________________________________________// 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Componentsb60; 20 | 21 | end Check; 22 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Check/package.order: -------------------------------------------------------------------------------- 1 | TestMillBox_1 2 | TestMillBox_1_measurementInput 3 | TestMillBox_2 4 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Mills.PhysicalMills.Volumes; 2 | package Check 3 | 4 | //__________________________________________________________________________// 5 | // Component of the ClaRa library, version: 1.8.0 // 6 | // // 7 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 8 | // Copyright 2013-2022, ClaRa development team. // 9 | // // 10 | // The ClaRa development team consists of the following partners: // 11 | // TLK-Thermo GmbH (Braunschweig, Germany), // 12 | // XRG Simulation GmbH (Hamburg, Germany). // 13 | //__________________________________________________________________________// 14 | // Contents published in ClaRa have been contributed by different authors // 15 | // and institutions. Please see model documentation for detailed information// 16 | // on original authorship and copyrights. // 17 | //__________________________________________________________________________// 18 | 19 | 20 | extends ClaRa.Basics.Icons.PackageIcons.Componentsb60; 21 | 22 | 23 | end Check; 24 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Check/package.order: -------------------------------------------------------------------------------- 1 | TestGrinder 2 | TestDryer 3 | TestAerosolVolume 4 | TestFuelJoin 5 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/Classifying/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Mills.PhysicalMills.Volumes.Fundamentals; 2 | package Classifying 3 | 4 | //__________________________________________________________________________// 5 | // Component of the ClaRa library, version: 1.8.0 // 6 | // // 7 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 8 | // Copyright 2013-2022, ClaRa development team. // 9 | // // 10 | // The ClaRa development team consists of the following partners: // 11 | // TLK-Thermo GmbH (Braunschweig, Germany), // 12 | // XRG Simulation GmbH (Hamburg, Germany). // 13 | //__________________________________________________________________________// 14 | // Contents published in ClaRa have been contributed by different authors // 15 | // and institutions. Please see model documentation for detailed information// 16 | // on original authorship and copyrights. // 17 | //__________________________________________________________________________// 18 | 19 | 20 | end Classifying; 21 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/Classifying/package.order: -------------------------------------------------------------------------------- 1 | Classifying_flow_base 2 | Classifying_centrifugal_base 3 | Classifying_centrifugal 4 | Classifying_flow 5 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/Drying/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Mills.PhysicalMills.Volumes.Fundamentals; 2 | package Drying 3 | 4 | //__________________________________________________________________________// 5 | // Component of the ClaRa library, version: 1.8.0 // 6 | // // 7 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 8 | // Copyright 2013-2022, ClaRa development team. // 9 | // // 10 | // The ClaRa development team consists of the following partners: // 11 | // TLK-Thermo GmbH (Braunschweig, Germany), // 12 | // XRG Simulation GmbH (Hamburg, Germany). // 13 | //__________________________________________________________________________// 14 | // Contents published in ClaRa have been contributed by different authors // 15 | // and institutions. Please see model documentation for detailed information// 16 | // on original authorship and copyrights. // 17 | //__________________________________________________________________________// 18 | 19 | 20 | end Drying; 21 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/Drying/package.order: -------------------------------------------------------------------------------- 1 | Drying_base 2 | Drying_ideal 3 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/Grinding/Breakage_Function/package.order: -------------------------------------------------------------------------------- 1 | Breakage_base 2 | Breakage_constant 3 | Breakage_Steinmetz 4 | Breakage_Austin 5 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/Grinding/Selection_Function/package.order: -------------------------------------------------------------------------------- 1 | Selection_base 2 | Selection_constant 3 | Selection_Steinmetz 4 | Selection_Kersting 5 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/Grinding/Transport_Velocity/package.order: -------------------------------------------------------------------------------- 1 | Transport_base 2 | Transport_constant 3 | Transport_complex 4 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/Grinding/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Mills.PhysicalMills.Volumes.Fundamentals; 2 | package Grinding 3 | 4 | //__________________________________________________________________________// 5 | // Component of the ClaRa library, version: 1.8.0 // 6 | // // 7 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 8 | // Copyright 2013-2022, ClaRa development team. // 9 | // // 10 | // The ClaRa development team consists of the following partners: // 11 | // TLK-Thermo GmbH (Braunschweig, Germany), // 12 | // XRG Simulation GmbH (Hamburg, Germany). // 13 | //__________________________________________________________________________// 14 | // Contents published in ClaRa have been contributed by different authors // 15 | // and institutions. Please see model documentation for detailed information// 16 | // on original authorship and copyrights. // 17 | //__________________________________________________________________________// 18 | 19 | 20 | end Grinding; 21 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/Grinding/package.order: -------------------------------------------------------------------------------- 1 | Breakage_Function 2 | Selection_Function 3 | Transport_Velocity 4 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/Records/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Mills.PhysicalMills.Volumes.Fundamentals; 2 | package Records 3 | 4 | //__________________________________________________________________________// 5 | // Component of the ClaRa library, version: 1.8.0 // 6 | // // 7 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 8 | // Copyright 2013-2022, ClaRa development team. // 9 | // // 10 | // The ClaRa development team consists of the following partners: // 11 | // TLK-Thermo GmbH (Braunschweig, Germany), // 12 | // XRG Simulation GmbH (Hamburg, Germany). // 13 | //__________________________________________________________________________// 14 | // Contents published in ClaRa have been contributed by different authors // 15 | // and institutions. Please see model documentation for detailed information// 16 | // on original authorship and copyrights. // 17 | //__________________________________________________________________________// 18 | 19 | 20 | end Records; 21 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/Records/package.order: -------------------------------------------------------------------------------- 1 | FuelClassification_base 2 | FuelClassification_example_11classes 3 | FuelClassification_example_05classes 4 | FuelClassification_generic 5 | GeometricProgression 6 | FuelClassification_example_21classes 7 | iCom_Grinder 8 | iCom_CentrifugalClassifier 9 | iCom_FlowClassifier 10 | iCom_Dryer 11 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Mills.PhysicalMills.Volumes; 2 | package Fundamentals 3 | 4 | //__________________________________________________________________________// 5 | // Component of the ClaRa library, version: 1.8.0 // 6 | // // 7 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 8 | // Copyright 2013-2022, ClaRa development team. // 9 | // // 10 | // The ClaRa development team consists of the following partners: // 11 | // TLK-Thermo GmbH (Braunschweig, Germany), // 12 | // XRG Simulation GmbH (Hamburg, Germany). // 13 | //__________________________________________________________________________// 14 | // Contents published in ClaRa have been contributed by different authors // 15 | // and institutions. Please see model documentation for detailed information// 16 | // on original authorship and copyrights. // 17 | //__________________________________________________________________________// 18 | 19 | 20 | end Fundamentals; 21 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | Records 2 | Classifying 3 | Drying 4 | Grinding 5 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/Volumes/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Fundamentals 3 | Dryer 4 | FuelJoin_distributed 5 | GrinderRingRoller 6 | CentrifugalClassifier 7 | FlowClassifier 8 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.Mills; 2 | package PhysicalMills 3 | 4 | //__________________________________________________________________________// 5 | // Package of the ClaRa library, version: 1.8.0 // 6 | // // 7 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 8 | // Copyright 2013-2022, ClaRa development team. // 9 | // // 10 | // The ClaRa development team consists of the following partners: // 11 | // TLK-Thermo GmbH (Braunschweig, Germany), // 12 | // XRG Simulation GmbH (Hamburg, Germany). // 13 | //__________________________________________________________________________// 14 | // Contents published in ClaRa have been contributed by different authors // 15 | // and institutions. Please see model documentation for detailed information// 16 | // on original authorship and copyrights. // 17 | //__________________________________________________________________________// 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Components50; 20 | 21 | 22 | end PhysicalMills; 23 | -------------------------------------------------------------------------------- /Components/Mills/physicalMills/package.order: -------------------------------------------------------------------------------- 1 | Volumes 2 | Check 3 | Mill_L4 4 | Mill_L4_advancedInit 5 | -------------------------------------------------------------------------------- /Components/Sensors/Check/package.order: -------------------------------------------------------------------------------- 1 | TestVLESensors 2 | TestGasSensors 3 | TestSensorVLE_L3_T 4 | TestFuelSensors 5 | TestSensors 6 | -------------------------------------------------------------------------------- /Components/Sensors/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | vleSensorBase 3 | SensorVLE_L1_T 4 | SensorVLE_L3_T 5 | SensorVLE_L1_p 6 | SensorVLE_L1_m_flow 7 | gasSensorBase 8 | SensorGas_L1_T 9 | SensorGas_L1_p 10 | SensorGas_L1_m_flow 11 | SensorGas_L1_xi 12 | SensorGas_L1_xi_i 13 | FuelSensorBase 14 | SensorFuel_L1_m_flow 15 | SensorFuel_L1_T 16 | SensorFuel_L1_xi 17 | SensorFuel_L1_LHV 18 | TinySensorVLE_L1_p 19 | TinySensorVLE_L1_T 20 | TinySensorVLE_L1_m_flow 21 | TinySensorVLE_L1_Ex_flow 22 | TinySensorGas_L1_p 23 | TinySensorGas_L1_T 24 | TinySensorGas_L1_m_flow 25 | TinySensorGas_L1_V_flow 26 | TinySensorGas_L1_Ex_flow 27 | TinySensorGas_L1_O2dry 28 | TinySensorElectric_L1_P 29 | -------------------------------------------------------------------------------- /Components/TurboMachines/Compressors/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | partialFan 2 | -------------------------------------------------------------------------------- /Components/TurboMachines/Compressors/Check/package.order: -------------------------------------------------------------------------------- 1 | Test_CompressorGas_L1_simple 2 | Test_CompressorGas_L1_affinity 3 | Test_MassFlow_VIGVControlled 4 | Test_CompressorGas_L1_stageStacked 5 | Test_CompressorGas_L1_stageStacked_singleStage 6 | Test_CompressorVLE_L1_stageStacked 7 | -------------------------------------------------------------------------------- /Components/TurboMachines/Compressors/Fundamentals/PresetVariableType.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.TurboMachines.Compressors.Fundamentals; 2 | type PresetVariableType 3 | extends String; 4 | annotation(choices( 5 | choice="dp" "dp", 6 | choice="m_flow" "m_flow", 7 | choice="V_flow" "V_flow", 8 | choice="P_shaft" "P_shaft")); 9 | end PresetVariableType; 10 | -------------------------------------------------------------------------------- /Components/TurboMachines/Compressors/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | PresetVariableType 2 | GetInputsHydraulic 3 | -------------------------------------------------------------------------------- /Components/TurboMachines/Compressors/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | BaseClasses 3 | Fundamentals 4 | CompressorGas_L1_simple 5 | CompressorGas_L1_affinity 6 | CompressorGas_L1_stageStacked 7 | CompressorVLE_L1_simple 8 | CompressorVLE_L1_stageStacked 9 | -------------------------------------------------------------------------------- /Components/TurboMachines/Fundamentals/PumpEnergetics/package.order: -------------------------------------------------------------------------------- 1 | BaseEnergetics 2 | EfficiencyCurves_Q1 3 | -------------------------------------------------------------------------------- /Components/TurboMachines/Fundamentals/PumpHydraulics/package.order: -------------------------------------------------------------------------------- 1 | BaseHydraulics 2 | MetaStable_Q124 3 | -------------------------------------------------------------------------------- /Components/TurboMachines/Fundamentals/TurbineEfficiency/package.order: -------------------------------------------------------------------------------- 1 | EfficiencyModelBase 2 | TableMassFlow 3 | TableVolumeFlow 4 | RayCorrelation 5 | -------------------------------------------------------------------------------- /Components/TurboMachines/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | TurbineEfficiency 2 | PumpEnergetics 3 | PumpHydraulics 4 | GetInputsRotary 5 | GetInputsRotary2 6 | IComTurbine 7 | IComPump_L1 8 | IComPump_L2 9 | -------------------------------------------------------------------------------- /Components/TurboMachines/Pumps/Check/package.order: -------------------------------------------------------------------------------- 1 | TestPumpModels 2 | TestPump_L1_OffDesign 3 | TestPump_L1_OffDesignInlet 4 | TestPump_L2_OffDesign 5 | TestPump_L1_WithEMotor 6 | -------------------------------------------------------------------------------- /Components/TurboMachines/Pumps/Fundamentals/Outline.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.TurboMachines.Pumps.Fundamentals; 2 | model Outline 3 | extends ClaRa.Basics.Icons.RecordIcon; 4 | input Basics.Units.VolumeFlowRate V_flow "Volume flow rate"; 5 | input Basics.Units.PressureDifference Delta_p "Pressure difference"; 6 | input Basics.Units.Length head "Head"; 7 | input Basics.Units.Length NPSHa "Net positive suction head available"; 8 | input Real eta_hyd "Hydraulic efficiency"; 9 | input Real eta_mech "Mechanic efficiency"; 10 | input Basics.Units.Power P_fluid "Hydraulic power"; 11 | end Outline; 12 | -------------------------------------------------------------------------------- /Components/TurboMachines/Pumps/Fundamentals/Summary.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.TurboMachines.Pumps.Fundamentals; 2 | model Summary 3 | extends ClaRa.Basics.Icons.RecordIcon; 4 | Fundamentals.Outline outline; 5 | ClaRa.Basics.Records.FlangeVLE inlet; 6 | ClaRa.Basics.Records.FlangeVLE outlet; 7 | end Summary; 8 | -------------------------------------------------------------------------------- /Components/TurboMachines/Pumps/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | Outline 2 | Summary 3 | Pump_Base 4 | PumpVLE_affinityBase 5 | -------------------------------------------------------------------------------- /Components/TurboMachines/Pumps/package.order: -------------------------------------------------------------------------------- 1 | Fundamentals 2 | Check 3 | PumpVLE_L1_simple 4 | PumpVLE_L1_affinity 5 | PumpVLE_L2_affinity 6 | -------------------------------------------------------------------------------- /Components/TurboMachines/Turbines/Check/package.order: -------------------------------------------------------------------------------- 1 | testTurbineVLE_L1 2 | testStackedTurbineStages 3 | testSingleTurbineStage 4 | -------------------------------------------------------------------------------- /Components/TurboMachines/Turbines/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | SteamTurbine_base 3 | SteamTurbineVLE_L1 4 | TurbineGas_L1_stageStacked 5 | -------------------------------------------------------------------------------- /Components/TurboMachines/package.order: -------------------------------------------------------------------------------- 1 | Pumps 2 | Compressors 3 | Turbines 4 | Fundamentals 5 | -------------------------------------------------------------------------------- /Components/Utilities/Blocks/Check/package.order: -------------------------------------------------------------------------------- 1 | test_1_LimPID 2 | test_2_LimPID 3 | TestMinMax 4 | testRandomGenerators2 5 | testGradientLimiter 6 | testMatrixReader 7 | testTableGain 8 | TestSlidingmean 9 | TestStepsmootherGain 10 | TestParameterizableTable1D 11 | -------------------------------------------------------------------------------- /Components/Utilities/Blocks/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | normalvariate 2 | random 3 | -------------------------------------------------------------------------------- /Components/Utilities/Blocks/package.order: -------------------------------------------------------------------------------- 1 | Fundamentals 2 | Check 3 | LimPID 4 | Convert2StateDiscrete 5 | TrackThreshold 6 | Integrator 7 | TimeExtrema 8 | SlidingMean 9 | Noise 10 | DummyValue 11 | VarGain 12 | StepSmootherGain 13 | DerivativeClaRa 14 | FirstOrderClaRa 15 | VariableGradientLimiter 16 | RealInputMultiplyer 17 | TableGain 18 | ReadMatrixFromFile 19 | ParameterizableTable1D 20 | RecalculateComposition 21 | -------------------------------------------------------------------------------- /Components/Utilities/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components; 2 | package Utilities "Some nice help for modelling" 3 | extends ClaRa.Basics.Icons.PackageIcons.Components80; 4 | end Utilities; 5 | -------------------------------------------------------------------------------- /Components/Utilities/package.order: -------------------------------------------------------------------------------- 1 | Blocks 2 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Fittings/Check/package.order: -------------------------------------------------------------------------------- 1 | Test_MixAndSplit 2 | Test_SprayInjector 3 | Test_Junction 4 | Test_JoinSplitGas_L2_flex 5 | TestFuelSplit 6 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Fittings/Fundamentals/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.VolumesValvesFittings.Fittings; 2 | package Fundamentals 3 | extends ClaRa.Basics.Icons.PackageIcons.Components50; 4 | 5 | 6 | 7 | 8 | 9 | end Fundamentals; 10 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Fittings/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | BaseDp 2 | Linear 3 | NoFriction 4 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Fittings/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Fundamentals 3 | JoinVLE_L2_flex 4 | SplitVLE_L2_flex 5 | JoinGas_L2_flex 6 | SplitGas_L2_flex 7 | JoinVLE_L2_Y 8 | SplitVLE_L2_Y 9 | JoinVLE_L3_Y 10 | FlueGasJunction_L2 11 | SprayInjectorVLE_L3 12 | SprayInjectorVLE_L3_advanced 13 | SplitFuel_L1_flex 14 | SplitFuelGas_L1_flex 15 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Pipes/Check/FlowReversal/package.order: -------------------------------------------------------------------------------- 1 | Test_Pipe_L4_Simple 2 | Test_Pipe_L4_Advanced 3 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Pipes/Check/MassDefect/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.VolumesValvesFittings.Pipes.Check; 2 | package MassDefect 3 | extends ClaRa.Basics.Icons.PackageIcons.Componentsb50; 4 | 5 | annotation (Diagram(coordinateSystem(extent={{-100,-100},{100,100}}), 6 | graphics), Icon(graphics, 7 | coordinateSystem(extent={{-100,-100},{100,100}}))); 8 | end MassDefect; 9 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Pipes/Check/MassDefect/package.order: -------------------------------------------------------------------------------- 1 | Test_Pipe_L2_Simple 2 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Pipes/Check/OnePhaseFlow/package.order: -------------------------------------------------------------------------------- 1 | Test_Pipe_L1_TML 2 | Test_Pipe_L1_TML_LongDistanceAndGravitationalPressureDrop 3 | Test_Pipe_L4_Simple 4 | Test_Pipe_L4_Advanced 5 | Test_Tube_FlueGas_L2_Simple 6 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Pipes/Check/ThickWallScenarios/package.order: -------------------------------------------------------------------------------- 1 | Test_Pipe_L1_TML_insulatedWall 2 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Pipes/Check/TwoPhaseFlow/package.order: -------------------------------------------------------------------------------- 1 | Test_Pipe_L4_Simple 2 | Test_Pipe_L4_Advanced 3 | Test_HEXvle2vle_L3_2ph_CH_simple_headers 4 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Pipes/Check/package.order: -------------------------------------------------------------------------------- 1 | OnePhaseFlow 2 | TwoPhaseFlow 3 | FlowReversal 4 | MassDefect 5 | ThickWallScenarios 6 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Pipes/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | PipeFlowVLE_L1_TML 3 | PipeFlowVLE_L2_Simple 4 | PipeFlowVLE_L4_Simple 5 | PipeFlowVLE_L4_Advanced 6 | PipeFlowGas_L4_Simple 7 | PipeFlowGas_L4_Advanced 8 | TubeBundle_L4H1 9 | Header 10 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Valves/Check/package.order: -------------------------------------------------------------------------------- 1 | TestValves 2 | Test_GasValves 3 | TestThreeWayValves 4 | TestThreeWayValve 5 | TestThreeWayGasValve 6 | TestCheckValveOpenLeakage 7 | Test_EN60534_compressible 8 | Test_EN60534_incompressible 9 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Valves/Fundamentals/TWV_L1.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.VolumesValvesFittings.Valves.Fundamentals; 2 | partial model TWV_L1 3 | 4 | 5 | end TWV_L1; 6 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Valves/Fundamentals/TWV_L2.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.Components.VolumesValvesFittings.Valves.Fundamentals; 2 | partial model TWV_L2 3 | 4 | end TWV_L2; 5 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Valves/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | GenericPressureLoss 2 | LinearNominalPoint 3 | Quadratic_EN60534_compressible 4 | Quadratic_EN60534_incompressible 5 | Quadratic_FlowFunction 6 | QuadraticZeta 7 | QuadraticKV 8 | QuadraticNominalPoint 9 | ICom 10 | ICom_TWV 11 | Basic_TWV 12 | IdealSymetric_TWV 13 | QuadraticFrictionFlowAreaSymetric_TWV 14 | QuadraticFrictionNominalPointSymetric_TWV 15 | TWV_L1 16 | TWV_L2 17 | Quadratic_EN60534_base 18 | Quadratic_EN60534_incompressible_base 19 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Valves/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Fundamentals 3 | GenericValveVLE_L1 4 | GenericValveGas_L1 5 | GenericValveVLEWithDisplay_L1 6 | GenericValveGasWithDisplay_L1 7 | ValveFuelFlueGas_L1 8 | ThreeWayValve_base 9 | ThreeWayValve_baseGas 10 | ThreeWayValveVLE_L1_simple 11 | ThreeWayValveGas_L1_simple 12 | ThreeWayValveVLE_L2 13 | ThreeWayValveVLE_L1 14 | ThreeWayValveGas_L1 15 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/package.order: -------------------------------------------------------------------------------- 1 | Pipes 2 | Valves 3 | Fittings 4 | -------------------------------------------------------------------------------- /Components/package.order: -------------------------------------------------------------------------------- 1 | BoundaryConditions 2 | TurboMachines 3 | HeatExchangers 4 | Mills 5 | VolumesValvesFittings 6 | MechanicalSeparation 7 | Furnace 8 | Electrical 9 | Sensors 10 | Control 11 | Adapters 12 | FlueGasCleaning 13 | Utilities 14 | -------------------------------------------------------------------------------- /Examples/package.order: -------------------------------------------------------------------------------- 1 | SteamCycle_01 2 | SteamCycle_02 3 | SteamPowerPlant_01 4 | SteamPowerPlant_CombinedComponents_01 5 | VapourCycle_01 6 | -------------------------------------------------------------------------------- /Resources/Images/ClaRa-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ClaRa-Logo.png -------------------------------------------------------------------------------- /Resources/Images/ClaRaLibraryInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ClaRaLibraryInfo.png -------------------------------------------------------------------------------- /Resources/Images/Components/Adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Adapter.png -------------------------------------------------------------------------------- /Resources/Images/Components/Adapter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Adapter2.png -------------------------------------------------------------------------------- /Resources/Images/Components/Adapter2_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Adapter2_backward.png -------------------------------------------------------------------------------- /Resources/Images/Components/Adapter2_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Adapter2_forward.png -------------------------------------------------------------------------------- /Resources/Images/Components/Adapter3_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Adapter3_backward.png -------------------------------------------------------------------------------- /Resources/Images/Components/Adapter3_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Adapter3_forward.png -------------------------------------------------------------------------------- /Resources/Images/Components/Alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Alpha.png -------------------------------------------------------------------------------- /Resources/Images/Components/Alpha_epsilon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Alpha_epsilon.png -------------------------------------------------------------------------------- /Resources/Images/Components/Ambience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Ambience.png -------------------------------------------------------------------------------- /Resources/Images/Components/BalanceTank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/BalanceTank.png -------------------------------------------------------------------------------- /Resources/Images/Components/Boiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Boiler.png -------------------------------------------------------------------------------- /Resources/Images/Components/Burner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Burner.png -------------------------------------------------------------------------------- /Resources/Images/Components/BurnerSlice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/BurnerSlice.png -------------------------------------------------------------------------------- /Resources/Images/Components/CharBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/CharBase.png -------------------------------------------------------------------------------- /Resources/Images/Components/ChemicalReactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/ChemicalReactions.png -------------------------------------------------------------------------------- /Resources/Images/Components/Compressor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Compressor.png -------------------------------------------------------------------------------- /Resources/Images/Components/ContConveyor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/ContConveyor.png -------------------------------------------------------------------------------- /Resources/Images/Components/CycleSummary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/CycleSummary.png -------------------------------------------------------------------------------- /Resources/Images/Components/Cyclone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Cyclone.png -------------------------------------------------------------------------------- /Resources/Images/Components/Deltap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Deltap.png -------------------------------------------------------------------------------- /Resources/Images/Components/Drum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Drum.png -------------------------------------------------------------------------------- /Resources/Images/Components/EFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/EFilter.png -------------------------------------------------------------------------------- /Resources/Images/Components/Efficiency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Efficiency.png -------------------------------------------------------------------------------- /Resources/Images/Components/Epsilon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Epsilon.png -------------------------------------------------------------------------------- /Resources/Images/Components/FeedwaterTank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FeedwaterTank.png -------------------------------------------------------------------------------- /Resources/Images/Components/FlameRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FlameRoom.png -------------------------------------------------------------------------------- /Resources/Images/Components/FlameRoomTB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FlameRoomTB.png -------------------------------------------------------------------------------- /Resources/Images/Components/FlatTubeFinnedGeometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FlatTubeFinnedGeometry.png -------------------------------------------------------------------------------- /Resources/Images/Components/FlatTubeGeometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FlatTubeGeometry.png -------------------------------------------------------------------------------- /Resources/Images/Components/FlowAnchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FlowAnchor.png -------------------------------------------------------------------------------- /Resources/Images/Components/FlowSensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FlowSensor.png -------------------------------------------------------------------------------- /Resources/Images/Components/FreeboardSlice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FreeboardSlice.png -------------------------------------------------------------------------------- /Resources/Images/Components/Fuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Fuel.png -------------------------------------------------------------------------------- /Resources/Images/Components/FuelObject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FuelObject.png -------------------------------------------------------------------------------- /Resources/Images/Components/Function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Function.png -------------------------------------------------------------------------------- /Resources/Images/Components/FurnaceSlice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FurnaceSlice.png -------------------------------------------------------------------------------- /Resources/Images/Components/FurnaceSliceUncooledWalls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FurnaceSliceUncooledWalls.png -------------------------------------------------------------------------------- /Resources/Images/Components/FurnaceSliceUncooledWallsAndarrierTubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FurnaceSliceUncooledWallsAndarrierTubes.png -------------------------------------------------------------------------------- /Resources/Images/Components/FurnaceSliceUncooledcarrierTubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/FurnaceSliceUncooledcarrierTubes.png -------------------------------------------------------------------------------- /Resources/Images/Components/Generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Generator.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/HEX01.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX01FlatTubeFinnedDiscretized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/HEX01FlatTubeFinnedDiscretized.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX01Plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/HEX01Plate.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX01PlateDiscretized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/HEX01PlateDiscretized.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/HEX02.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/HEX03.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/HEX04.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/HEX05.png -------------------------------------------------------------------------------- /Resources/Images/Components/HollowBlockWithTubesAndHotwell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/HollowBlockWithTubesAndHotwell.png -------------------------------------------------------------------------------- /Resources/Images/Components/Hopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Hopper.png -------------------------------------------------------------------------------- /Resources/Images/Components/HopperSlice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/HopperSlice.png -------------------------------------------------------------------------------- /Resources/Images/Components/IdalMixing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/IdalMixing.png -------------------------------------------------------------------------------- /Resources/Images/Components/IdealPhases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/IdealPhases.png -------------------------------------------------------------------------------- /Resources/Images/Components/IdealSeparation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/IdealSeparation.png -------------------------------------------------------------------------------- /Resources/Images/Components/ImpactMill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/ImpactMill.png -------------------------------------------------------------------------------- /Resources/Images/Components/InletHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/InletHeader.png -------------------------------------------------------------------------------- /Resources/Images/Components/Junction1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Junction1.png -------------------------------------------------------------------------------- /Resources/Images/Components/Junction2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Junction2.png -------------------------------------------------------------------------------- /Resources/Images/Components/LUVO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/LUVO.png -------------------------------------------------------------------------------- /Resources/Images/Components/LUVOQuart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/LUVOQuart.png -------------------------------------------------------------------------------- /Resources/Images/Components/LibraryIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/LibraryIcon.png -------------------------------------------------------------------------------- /Resources/Images/Components/MassCompostion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/MassCompostion.png -------------------------------------------------------------------------------- /Resources/Images/Components/MechanicalEquilibrium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/MechanicalEquilibrium.png -------------------------------------------------------------------------------- /Resources/Images/Components/MillGeneral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/MillGeneral.png -------------------------------------------------------------------------------- /Resources/Images/Components/Motor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Motor.png -------------------------------------------------------------------------------- /Resources/Images/Components/Nozzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Nozzle.png -------------------------------------------------------------------------------- /Resources/Images/Components/OutletHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/OutletHeader.png -------------------------------------------------------------------------------- /Resources/Images/Components/PackageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/PackageIcon.png -------------------------------------------------------------------------------- /Resources/Images/Components/Pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Pipe.png -------------------------------------------------------------------------------- /Resources/Images/Components/PipeLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/PipeLarge.png -------------------------------------------------------------------------------- /Resources/Images/Components/Pipe_L1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Pipe_L1.png -------------------------------------------------------------------------------- /Resources/Images/Components/Pipe_L4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Pipe_L4.png -------------------------------------------------------------------------------- /Resources/Images/Components/Pipe_L4_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Pipe_L4_a.png -------------------------------------------------------------------------------- /Resources/Images/Components/Pipe_L4_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Pipe_L4_wall.png -------------------------------------------------------------------------------- /Resources/Images/Components/PlateGeometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/PlateGeometry.png -------------------------------------------------------------------------------- /Resources/Images/Components/PowerSensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/PowerSensor.png -------------------------------------------------------------------------------- /Resources/Images/Components/Preheater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Preheater.png -------------------------------------------------------------------------------- /Resources/Images/Components/PressureSensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/PressureSensor.png -------------------------------------------------------------------------------- /Resources/Images/Components/Pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Pump.png -------------------------------------------------------------------------------- /Resources/Images/Components/RealMixing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/RealMixing.png -------------------------------------------------------------------------------- /Resources/Images/Components/RealPhases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/RealPhases.png -------------------------------------------------------------------------------- /Resources/Images/Components/RealSeparation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/RealSeparation.png -------------------------------------------------------------------------------- /Resources/Images/Components/Regression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Regression.png -------------------------------------------------------------------------------- /Resources/Images/Components/RollwerBowlMill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/RollwerBowlMill.png -------------------------------------------------------------------------------- /Resources/Images/Components/Sensor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Sensor1.png -------------------------------------------------------------------------------- /Resources/Images/Components/Sensor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Sensor2.png -------------------------------------------------------------------------------- /Resources/Images/Components/Separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Separator.png -------------------------------------------------------------------------------- /Resources/Images/Components/SimCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/SimCenter.png -------------------------------------------------------------------------------- /Resources/Images/Components/SimpleTurbine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/SimpleTurbine.png -------------------------------------------------------------------------------- /Resources/Images/Components/Sink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Sink.png -------------------------------------------------------------------------------- /Resources/Images/Components/Slag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Slag.png -------------------------------------------------------------------------------- /Resources/Images/Components/Source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Source.png -------------------------------------------------------------------------------- /Resources/Images/Components/SprayInjector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/SprayInjector.png -------------------------------------------------------------------------------- /Resources/Images/Components/StaCy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/StaCy.png -------------------------------------------------------------------------------- /Resources/Images/Components/StartUpBottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/StartUpBottle.png -------------------------------------------------------------------------------- /Resources/Images/Components/Sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Sum.png -------------------------------------------------------------------------------- /Resources/Images/Components/TemperatureSensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/TemperatureSensor.png -------------------------------------------------------------------------------- /Resources/Images/Components/ThreeWayValve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/ThreeWayValve.png -------------------------------------------------------------------------------- /Resources/Images/Components/ThreeWayValveCtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/ThreeWayValveCtrl.png -------------------------------------------------------------------------------- /Resources/Images/Components/TubeWithWall_L4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/TubeWithWall_L4.png -------------------------------------------------------------------------------- /Resources/Images/Components/Valve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Valve.png -------------------------------------------------------------------------------- /Resources/Images/Components/ValveControllable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/ValveControllable.png -------------------------------------------------------------------------------- /Resources/Images/Components/Volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Volume.png -------------------------------------------------------------------------------- /Resources/Images/Components/Volume0D_2Zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Volume0D_2Zones.png -------------------------------------------------------------------------------- /Resources/Images/Components/VolumeComposition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/VolumeComposition.png -------------------------------------------------------------------------------- /Resources/Images/Components/VolumeDistr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/VolumeDistr.png -------------------------------------------------------------------------------- /Resources/Images/Components/Volume_L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Volume_L2.png -------------------------------------------------------------------------------- /Resources/Images/Components/Volume_L4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/Volume_L4.png -------------------------------------------------------------------------------- /Resources/Images/Components/WallNTU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/WallNTU.png -------------------------------------------------------------------------------- /Resources/Images/Components/WallThick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/WallThick.png -------------------------------------------------------------------------------- /Resources/Images/Components/WallThinLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/WallThinLarge.png -------------------------------------------------------------------------------- /Resources/Images/Components/WallThinSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/WallThinSmall.png -------------------------------------------------------------------------------- /Resources/Images/Components/WetCoolingTower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Components/WetCoolingTower.png -------------------------------------------------------------------------------- /Resources/Images/Logos/FVTR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Logos/FVTR.png -------------------------------------------------------------------------------- /Resources/Images/Logos/LEAG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Logos/LEAG.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Basics_100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Basics_50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Basics_60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Basics_80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_b100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Basics_b100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_b50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Basics_b50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_b60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Basics_b60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_b80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Basics_b80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/ClaRa-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/ClaRa-Logo.png -------------------------------------------------------------------------------- /Resources/Images/Packages/ClaRa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/ClaRa.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Components_100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Components_50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Components_60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Components_80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_b100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Components_b100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_b50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Components_b50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_b60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Components_b60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_b80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Components_b80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Contact.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/CycleInit_100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/CycleInit_50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/CycleInit_60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/CycleInit_80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_b100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/CycleInit_b100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_b50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/CycleInit_b50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_b60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/CycleInit_b60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_b80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/CycleInit_b80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Element100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Element100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Examples100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Examples_50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Examples_60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Examples_80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples_b50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Examples_b50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples_b60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Examples_b60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples_b80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Examples_b80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examplesb100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Examplesb100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/ExecutableRegressionr100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/ExecutableRegressionr100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Info.png -------------------------------------------------------------------------------- /Resources/Images/Packages/InitCycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/InitCycle.png -------------------------------------------------------------------------------- /Resources/Images/Packages/ModelProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/ModelProperties.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Subsystems_100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Subsystems_50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Subsystems_60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Subsystems_80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_b100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Subsystems_b100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_b50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Subsystems_b50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_b60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Subsystems_b60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_b80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Subsystems_b80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Visualisation100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Visualisation100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Visualisation50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Visualisation50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Visualisation60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Visualisation60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Visualisation80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Visualisation80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Visualisationb100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Visualisationb100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Visualisationb50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Visualisationb50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Visualisationb60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Visualisationb60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Visualisationb80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/Packages/Visualisationb80.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/Bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/Bottle.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/BurnerSketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/BurnerSketch.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/BurnerSketchEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/BurnerSketchEmpty.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/CarrierTubesSketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/CarrierTubesSketch.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/Drum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/Drum.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/FeedWaterTank_L3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/FeedWaterTank_L3.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/FeedWaterTank_L3_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/FeedWaterTank_L3_advanced.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/FinnedWallSketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/FinnedWallSketch.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/FinnedWallSketchEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/FinnedWallSketchEmpty.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/FinnedWallSketchHopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/FinnedWallSketchHopper.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/FurnaceSketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/FurnaceSketch.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/FurnaceSketchEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/FurnaceSketchEmpty.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/FurnaceketchEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/FurnaceketchEmpty.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX01FlatTubeFinnedGeometry_ParameterDialogDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX01FlatTubeFinnedGeometry_ParameterDialogDetail.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX01FlatTubeFinnedGeometry_ParameterDialogHX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX01FlatTubeFinnedGeometry_ParameterDialogHX.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX01PlateGeometry_ParameterDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX01PlateGeometry_ParameterDialog.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX_ParameterDialogTubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX_ParameterDialogTubes.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX_ParameterDialog_BUshell1ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX_ParameterDialog_BUshell1ph.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX_ParameterDialog_BUshell1ph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX_ParameterDialog_BUshell1ph2.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX_ParameterDialog_BUshell2ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX_ParameterDialog_BUshell2ph.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX_ParameterDialog_BUshell2ph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX_ParameterDialog_BUshell2ph2.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX_ParameterDialog_BUshellgas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX_ParameterDialog_BUshellgas.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX_ParameterDialog_BUshellgas2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX_ParameterDialog_BUshellgas2.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX_ParameterDialog_CHgeneral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX_ParameterDialog_CHgeneral.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX_ParameterDialog_CHshell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX_ParameterDialog_CHshell.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX_ParameterDialog_CHshell1ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX_ParameterDialog_CHshell1ph.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HEX_ParameterDialog_CUshell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HEX_ParameterDialog_CUshell.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HollowBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HollowBlock.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HollowBlockWithTubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HollowBlockWithTubes.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HollowBlockWithTubesAndCarrierTubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HollowBlockWithTubesAndCarrierTubes.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HollowBlockWithTubesAndHotwell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HollowBlockWithTubesAndHotwell.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HollowCylinderWithTubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HollowCylinderWithTubes.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/HopperSketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/HopperSketch.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/PipeGeometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/PipeGeometry.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/PipeWithHotwell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/PipeWithHotwell.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/PumpCharField1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/PumpCharField1.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/PumpHydraulicsMetaStable124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/PumpHydraulicsMetaStable124.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/RegAirPreheater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/RegAirPreheater.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/RegAirPreheater_PrimSec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/RegAirPreheater_PrimSec.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/TubeBundleSketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/TubeBundleSketch.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/Valve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/Valve.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/fins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Images/ParameterDialog/fins.png -------------------------------------------------------------------------------- /Resources/Library/linux32/libDelay-V1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Library/linux32/libDelay-V1.a -------------------------------------------------------------------------------- /Resources/Library/linux64/libDelay-V1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Library/linux64/libDelay-V1.a -------------------------------------------------------------------------------- /Resources/Library/win32/Delay-V1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Library/win32/Delay-V1.lib -------------------------------------------------------------------------------- /Resources/Library/win32/ITI_Delay-V1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Library/win32/ITI_Delay-V1.dll -------------------------------------------------------------------------------- /Resources/Library/win32/libDelay-V1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Library/win32/libDelay-V1.a -------------------------------------------------------------------------------- /Resources/Library/win32/libDelay-V1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Library/win32/libDelay-V1.dll -------------------------------------------------------------------------------- /Resources/Library/win64/Delay-V1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Library/win64/Delay-V1.lib -------------------------------------------------------------------------------- /Resources/Library/win64/ITI_Delay-V1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Library/win64/ITI_Delay-V1.dll -------------------------------------------------------------------------------- /Resources/Library/win64/libDelay-V1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Library/win64/libDelay-V1.a -------------------------------------------------------------------------------- /Resources/Library/win64/libDelay-V1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/Library/win64/libDelay-V1.dll -------------------------------------------------------------------------------- /Resources/Scripts/ClaRa_StartUpDymola.mos: -------------------------------------------------------------------------------- 1 | // An DYMOLA script for opening the ClaRa library 2 | // 26.02.2016, F.Gottelt, XRG Simulation GmbH 3 | // tested with DYMOLA 2016 FD 01 4 | 5 | openModel("../../TILMedia 1.1.1 ClaRa/package.mo"); 6 | openModel("../FluidDissipation 1.1.8 beta/package.mo"); 7 | openModel("../ClaRa/package.mo"); 8 | openModel("../ClaRa_Obsolete/package.mo"); 9 | 10 | -------------------------------------------------------------------------------- /Resources/Scripts/ConvertFrom130_to_131.mos: -------------------------------------------------------------------------------- 1 | //Convert Package from ClaRa 1.3.0 to 1.3.1 (dummy script to have a continuous conversion from < 1.3.1) 2 | convertClear(); 3 | -------------------------------------------------------------------------------- /Resources/Scripts/ConvertFrom150_to_160.mos: -------------------------------------------------------------------------------- 1 | //Convert Package from ClaRa 1.5.0 to 1.6.0 (dummy script to have a continuous conversion) 2 | convertClear(); 3 | -------------------------------------------------------------------------------- /Resources/Scripts/ConvertFrom160_to_161.mos: -------------------------------------------------------------------------------- 1 | //Convert Package from ClaRa 1.4.0 2 | convertClear(); 3 | 4 | //Solids moved 5 | convertClass("TILMedia.SolidTypes.Steel10CrMo9_10", "ClaRa.Basics.Media.Solids.Steel10CrMo9_10"); 6 | convertClass("TILMedia.SolidTypes.Steel13CrMo4_5", "ClaRa.Basics.Media.Solids.Steel13CrMo4_5"); 7 | convertClass("TILMedia.SolidTypes.Steel16Mo3", "ClaRa.Basics.Media.Solids.Steel16Mo3"); 8 | convertClass("TILMedia.SolidTypes.Steel42CrMo4", "ClaRa.Basics.Media.Solids.Steel42CrMo4"); 9 | convertClass("TILMedia.SolidTypes.SteelAISI_904L", "ClaRa.Basics.Media.Solids.SteelAISI_904L"); 10 | convertClass("TILMedia.SolidTypes.SteelX2CrNi19_11", "ClaRa.Basics.Media.Solids.SteelX2CrNi19_11"); 11 | convertClass("TILMedia.SolidTypes.SteelX2CrNiMo17_12_2", "ClaRa.Basics.Media.Solids.SteelX2CrNiMo17_12_2"); 12 | convertClass("TILMedia.SolidTypes.SteelX5CrNi18_10", "ClaRa.Basics.Media.Solids.SteelX5CrNi18_10"); 13 | convertClass("TILMedia.SolidTypes.SteelX5CrNiMo17_12_2", "ClaRa.Basics.Media.Solids.SteelX5CrNiMo17_12_2"); 14 | convertClass("TILMedia.SolidTypes.SteelX8CrNiTi18_10", "ClaRa.Basics.Media.Solids.SteelX8CrNiTi18_10"); 15 | convertClass("TILMedia.SolidTypes.InsulationOrstechLSP_H_const", "ClaRa.Basics.Media.Solids.InsulationOrstechLSP_H_const"); -------------------------------------------------------------------------------- /Resources/Scripts/ConvertFrom161_to_170.mos: -------------------------------------------------------------------------------- 1 | //Convert Package from ClaRa 1.6.1 to 1.7.0 (dummy script to have a continuous conversion) 2 | convertClear(); 3 | -------------------------------------------------------------------------------- /Resources/TableBase/DeltaP_mill_meas.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/DeltaP_mill_meas.mat -------------------------------------------------------------------------------- /Resources/TableBase/DeltaP_mill_model.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/DeltaP_mill_model.mat -------------------------------------------------------------------------------- /Resources/TableBase/DeltaP_pa.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/DeltaP_pa.mat -------------------------------------------------------------------------------- /Resources/TableBase/Desuperheater.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/Desuperheater.mat -------------------------------------------------------------------------------- /Resources/TableBase/E_meas.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/E_meas.mat -------------------------------------------------------------------------------- /Resources/TableBase/E_model.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/E_model.mat -------------------------------------------------------------------------------- /Resources/TableBase/T_air.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/T_air.mat -------------------------------------------------------------------------------- /Resources/TableBase/T_out_meas.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/T_out_meas.mat -------------------------------------------------------------------------------- /Resources/TableBase/T_out_model.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/T_out_model.mat -------------------------------------------------------------------------------- /Resources/TableBase/W_air.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/W_air.mat -------------------------------------------------------------------------------- /Resources/TableBase/W_c.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/W_c.mat -------------------------------------------------------------------------------- /Resources/TableBase/W_pf_meas.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/W_pf_meas.mat -------------------------------------------------------------------------------- /Resources/TableBase/W_pf_model.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/W_pf_model.mat -------------------------------------------------------------------------------- /Resources/TableBase/exampleTable.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/exampleTable.mat -------------------------------------------------------------------------------- /Resources/TableBase/omega.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/Resources/TableBase/omega.mat -------------------------------------------------------------------------------- /StaticCycles/Adapters/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles.Adapters; 2 | package Check 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInitb80; 4 | end Check; 5 | -------------------------------------------------------------------------------- /StaticCycles/Adapters/Check/package.order: -------------------------------------------------------------------------------- 1 | TestAdapters 2 | -------------------------------------------------------------------------------- /StaticCycles/Adapters/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles; 2 | package Adapters 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInit80; 4 | end Adapters; 5 | -------------------------------------------------------------------------------- /StaticCycles/Adapters/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | GainVLE1 3 | GainVLE2 4 | GainVLE3 5 | -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles.Boundaries; 2 | package Check 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInitb80; 4 | end Check; 5 | -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Check/package.order: -------------------------------------------------------------------------------- 1 | TestNewBoundaries 2 | -------------------------------------------------------------------------------- /StaticCycles/Boundaries/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles; 2 | package Boundaries "Boundaries for the StaticCycles package" 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInit80; 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | end Boundaries; 36 | -------------------------------------------------------------------------------- /StaticCycles/Boundaries/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Source_grey 3 | Sink_grey 4 | Source_blue 5 | Sink_blue 6 | Source_green 7 | Sink_green 8 | Source_red 9 | Sink_red 10 | Source_yellow 11 | Sink_yellow 12 | Source_brown 13 | Sink_brown 14 | Source_purple 15 | Source_orange 16 | Source_black 17 | Dispatcher 18 | Sink_orange 19 | SinkGas_green 20 | -------------------------------------------------------------------------------- /StaticCycles/Check/StaticCycleExamples/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles.Check; 2 | package StaticCycleExamples "Examples of static cycles" 3 | extends Basics.Icons.PackageIcons.CycleInitb80; 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | end StaticCycleExamples; 20 | -------------------------------------------------------------------------------- /StaticCycles/Check/StaticCycleExamples/package.order: -------------------------------------------------------------------------------- 1 | StaCy_5Components 2 | StaCy_5Components_Spray 3 | InitSteamCycle_SimplePowerPlant1 4 | InitSteamCycle_SimplePowerPlant2 5 | InitSteamCycle_SimplePowerPlant3 6 | InitSteamCycle_T_4_Pr_F1_C1 7 | SteamCycle_4NDV_3HDV_01 8 | InitSteamCycle_T_4_Pr_F1_C1_version2 9 | InitSteamCycle_01 10 | InitSteamPowerPlant_01 11 | -------------------------------------------------------------------------------- /StaticCycles/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles; 2 | package Check 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInitb80; 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | end Check; 24 | -------------------------------------------------------------------------------- /StaticCycles/Check/package.order: -------------------------------------------------------------------------------- 1 | TestStacy1 2 | TestStacy2 3 | TestStacy3 4 | TestStacy4 5 | TestStacy5 6 | TestStacy6 7 | TestStacy7 8 | TestStacy8 9 | TestBoundaries 10 | StaticCycleExamples 11 | -------------------------------------------------------------------------------- /StaticCycles/Fittings/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles.Fittings; 2 | package Check 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInitb80; 4 | end Check; 5 | -------------------------------------------------------------------------------- /StaticCycles/Fittings/Check/package.order: -------------------------------------------------------------------------------- 1 | TestMixSplitGas 2 | TestMixer4 3 | TestSplit7 4 | -------------------------------------------------------------------------------- /StaticCycles/Fittings/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles; 2 | package Fittings "Joins and splits for the Static Cycle package" 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInit80; 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | end Fittings; 23 | -------------------------------------------------------------------------------- /StaticCycles/Fittings/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Split1 3 | Split2 4 | Split3 5 | Split4 6 | Split5 7 | Split6 8 | Mixer1 9 | Mixer2 10 | Mixer3 11 | SprayAttemperator 12 | SprayAttemperator2 13 | SplitGas1 14 | MixerGas1 15 | Mixer4 16 | Split7 17 | MixerGas2 18 | SplitGas2 19 | HeaterCooler 20 | -------------------------------------------------------------------------------- /StaticCycles/Fundamentals/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles; 2 | package Fundamentals 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInit80; 4 | end Fundamentals; 5 | -------------------------------------------------------------------------------- /StaticCycles/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | SteamSignal_base 2 | SteamSignal_blue_a 3 | SteamSignal_blue_b 4 | SteamSignal_green_a 5 | SteamSignal_green_b 6 | SteamSignal_red_a 7 | SteamSignal_red_b 8 | SteamSignal_yellow_a 9 | SteamSignal_yellow_b 10 | FlueGasSignal_base 11 | FlueGasSignal_brown_a 12 | FlueGasSignal_brown_b 13 | FlueGasSignal_purple_a 14 | FlueGasSignal_purple_b 15 | FlueGasSignal_orange_a 16 | FlueGasSignal_orange_b 17 | FuelSignal_black_a 18 | FuelSignal_black_b 19 | PowerSignal_A 20 | PowerSignal_B 21 | FlueGasSignal_green_b 22 | FlueGasSignal_green_a 23 | -------------------------------------------------------------------------------- /StaticCycles/Furnace/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles; 2 | package Furnace 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInit80; 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | end Furnace; 21 | -------------------------------------------------------------------------------- /StaticCycles/Furnace/package.order: -------------------------------------------------------------------------------- 1 | FlameRoom1 2 | FlameRoom2 3 | FlameRoom3 4 | FlameRoomNaturalCirculation 5 | TripleFlueGas 6 | Burner1 7 | Burner2 8 | Boiler_simple 9 | FlameRoom_woBundle 10 | -------------------------------------------------------------------------------- /StaticCycles/HeatExchanger/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles; 2 | package HeatExchanger "Heat exchangers for the StaticCycles package" 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInit80; 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | end HeatExchanger; 15 | -------------------------------------------------------------------------------- /StaticCycles/HeatExchanger/package.order: -------------------------------------------------------------------------------- 1 | Preheater1 2 | Preheater2 3 | Preheater_twoShell 4 | Preheater_Delta_T 5 | Condenser 6 | Reboiler 7 | -------------------------------------------------------------------------------- /StaticCycles/Machines/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles.Machines; 2 | package Check 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInitb80; 4 | end Check; 5 | -------------------------------------------------------------------------------- /StaticCycles/Machines/Check/package.order: -------------------------------------------------------------------------------- 1 | CheckPumpModels 2 | CheckTurbineModels 3 | TestTurbineDrivenPump 4 | -------------------------------------------------------------------------------- /StaticCycles/Machines/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles; 2 | package Machines "Pumps, turbines and other machines for the StaticCycle package" 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInit80; 4 | 5 | 6 | 7 | 8 | 9 | end Machines; 10 | -------------------------------------------------------------------------------- /StaticCycles/Machines/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Turbine 3 | Turbine_mech 4 | Pump1 5 | Pump1_real 6 | Pump2 7 | Pump3 8 | Turbine_mech2 9 | Pump1_mech 10 | Pump2_mech 11 | Pump2_real 12 | -------------------------------------------------------------------------------- /StaticCycles/Sensors/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles; 2 | package Sensors 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInit80; 4 | 5 | end Sensors; 6 | -------------------------------------------------------------------------------- /StaticCycles/Sensors/package.order: -------------------------------------------------------------------------------- 1 | FuelMassFlowSensor 2 | -------------------------------------------------------------------------------- /StaticCycles/Storage/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles.Storage; 2 | package Check 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInitb80; 4 | end Check; 5 | -------------------------------------------------------------------------------- /StaticCycles/Storage/Check/package.order: -------------------------------------------------------------------------------- 1 | TestSeparator 2 | -------------------------------------------------------------------------------- /StaticCycles/Storage/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles; 2 | package Storage "Storage vessels for the Staticcycles package" 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInit80; 4 | 5 | 6 | end Storage; 7 | -------------------------------------------------------------------------------- /StaticCycles/Storage/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Feedwatertank3 3 | Feedwatertank4 4 | Separator 5 | -------------------------------------------------------------------------------- /StaticCycles/ValvesConnects/Check/TestValve_dp_nom4.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles.ValvesConnects.Check; 2 | model TestValve_dp_nom4 3 | extends ClaRa.Basics.Icons.PackageIcons.ExecutableExampleb80; 4 | 5 | inner parameter Real P_target_= 1; 6 | ClaRa.StaticCycles.ValvesConnects.Valve_dp_nom4 valve_dp_nom4_1(Delta_p_nom=1e5) annotation (Placement(transformation(extent={{-26,0},{-16,6}}))); 7 | ClaRa.StaticCycles.Boundaries.Source_yellow source_yellow(h=2300e3,p=2e5) annotation (Placement(transformation(extent={{-60,-6},{-40,14}}))); 8 | ClaRa.StaticCycles.Boundaries.Sink_yellow sink_yellow(m_flow=10) annotation (Placement(transformation(extent={{4,-8},{24,12}}))); 9 | inner ClaRa.SimCenter simCenter annotation (Placement(transformation(extent={{-96,-38},{-56,-18}}))); 10 | equation 11 | connect(valve_dp_nom4_1.outlet, sink_yellow.inlet) annotation (Line(points={{-15.5,3},{-5.75,3},{-5.75,2},{3.5,2}}, color={0,131,169})); 12 | connect(source_yellow.outlet, valve_dp_nom4_1.inlet) annotation (Line(points={{-39.5,4},{-32,4},{-32,3},{-26.5,3}}, color={0,131,169})); 13 | annotation (Icon(graphics, 14 | coordinateSystem(preserveAspectRatio=false)), Diagram(graphics, 15 | coordinateSystem(preserveAspectRatio=false))); 16 | end TestValve_dp_nom4; 17 | -------------------------------------------------------------------------------- /StaticCycles/ValvesConnects/Check/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles.ValvesConnects; 2 | package Check 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInitb80; 4 | end Check; 5 | -------------------------------------------------------------------------------- /StaticCycles/ValvesConnects/Check/package.order: -------------------------------------------------------------------------------- 1 | TestValve_dp_nom4 2 | -------------------------------------------------------------------------------- /StaticCycles/ValvesConnects/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.StaticCycles; 2 | package ValvesConnects "Valves and other (dis)continuous Connects like tubes" 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInit80; 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | end ValvesConnects; 30 | -------------------------------------------------------------------------------- /StaticCycles/ValvesConnects/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Tube1 3 | Tube2 4 | Valve_dp_nom1 5 | Valve_dp_nom2 6 | Valve_dp_nom3 7 | FlowAnchor_cutPressure1 8 | Valve_cutPressure1 9 | Valve_cutPressure2 10 | FlowAnchor_constPressure1 11 | PressureAnchor_constFlow1 12 | Buffer_setFlow1 13 | Buffer_cutFlow1 14 | ValveGas_cutPressure1 15 | Valve_dp_nom4 16 | Buffer_cutFlow2 17 | -------------------------------------------------------------------------------- /StaticCycles/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa; 2 | package StaticCycles "Prepare initialisation even more easy!" 3 | extends ClaRa.Basics.Icons.PackageIcons.CycleInit100; 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | annotation (); 25 | end StaticCycles; 26 | -------------------------------------------------------------------------------- /StaticCycles/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Fundamentals 3 | Triple 4 | Quadruple 5 | Boundaries 6 | HeatExchanger 7 | ValvesConnects 8 | Machines 9 | Fittings 10 | Storage 11 | Furnace 12 | Sensors 13 | Adapters 14 | -------------------------------------------------------------------------------- /SubSystems/Boiler/Check/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/SubSystems/Boiler/Check/package.order -------------------------------------------------------------------------------- /SubSystems/Boiler/Fundamentals/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.SubSystems.Boiler; 2 | package Fundamentals 3 | extends Basics.Icons.PackageIcons.Basics60; 4 | end Fundamentals; 5 | -------------------------------------------------------------------------------- /SubSystems/Boiler/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | BoilerSummary 2 | -------------------------------------------------------------------------------- /SubSystems/Boiler/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Fundamentals 3 | CoalSupplyBoiler_base 4 | SteamGenerator_L1 5 | SteamGenerator_L3 6 | -------------------------------------------------------------------------------- /SubSystems/Furnace/package.mo: -------------------------------------------------------------------------------- 1 | within ClaRa.SubSystems; 2 | package Furnace "Steam generators of distinct geometry" 3 | //__________________________________________________________________________// 4 | // Package of the ClaRa library, version: 1.8.0 // 5 | // // 6 | // Licensed by the ClaRa development team under the 3-clause BSD License. // 7 | // Copyright 2013-2022, ClaRa development team. // 8 | // // 9 | // The ClaRa development team consists of the following partners: // 10 | // TLK-Thermo GmbH (Braunschweig, Germany), // 11 | // XRG Simulation GmbH (Hamburg, Germany). // 12 | //__________________________________________________________________________// 13 | // Contents published in ClaRa have been contributed by different authors // 14 | // and institutions. Please see model documentation for detailed information// 15 | // on original authorship and copyrights. // 16 | //__________________________________________________________________________// 17 | 18 | 19 | extends ClaRa.Basics.Icons.PackageIcons.Subsystems80; 20 | 21 | 22 | end Furnace; 23 | -------------------------------------------------------------------------------- /SubSystems/Furnace/package.order: -------------------------------------------------------------------------------- 1 | ConvectiveSlice_L4 2 | FreeboardSlice_L4 3 | BurnerSlice_L4 4 | HopperSlice_L4 5 | HopperSlice_L4_AdditionalAir 6 | -------------------------------------------------------------------------------- /SubSystems/package.order: -------------------------------------------------------------------------------- 1 | Boiler 2 | Furnace 3 | -------------------------------------------------------------------------------- /UsersGuide/Contact/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/UsersGuide/Contact/package.order -------------------------------------------------------------------------------- /UsersGuide/GettingStarted/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/UsersGuide/GettingStarted/package.order -------------------------------------------------------------------------------- /UsersGuide/Licence/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/UsersGuide/Licence/package.order -------------------------------------------------------------------------------- /UsersGuide/Revisions/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/950f1712b02297932e388e65d18e958b4179f643/UsersGuide/Revisions/package.order -------------------------------------------------------------------------------- /UsersGuide/package.order: -------------------------------------------------------------------------------- 1 | GettingStarted 2 | Revisions 3 | Contact 4 | Licence 5 | -------------------------------------------------------------------------------- /Visualisation/Check/package.order: -------------------------------------------------------------------------------- 1 | TestQuadruple 2 | TestSixtuple 3 | TestDynamicDiagram 4 | TestStatePoint 5 | TestHEXdisplay 6 | IllustrateVisualisation 7 | TestDynamicBar 8 | TestXYplot 9 | TestRealDisplay 10 | -------------------------------------------------------------------------------- /Visualisation/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | ScalarToVector 2 | -------------------------------------------------------------------------------- /Visualisation/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | Fundamentals 3 | DynDisplay 4 | Quadruple 5 | QuadrupleGas 6 | Sixtuple 7 | Scope 8 | StatePoint_ph 9 | StatePoint_phTs 10 | Hexdisplay_3 11 | RecycleRate 12 | StatePointGas_phTs 13 | DynamicBar 14 | StatePoint 15 | XYplot 16 | XYYplot 17 | TinyRealDisplay 18 | TinyBooleanDisplay 19 | -------------------------------------------------------------------------------- /libraryinfo.mos: -------------------------------------------------------------------------------- 1 | LibraryInfoMenuSeparator( 2 | category="libraries", 3 | pos=001) 4 | 5 | LibraryInfoMenuCommand( 6 | category="libraries", 7 | text = "ClaRa", 8 | reference= "ClaRa", 9 | version="1.8.0", 10 | isModel=true, 11 | description="Simulation of Clausius-Rankine Cycles", 12 | iconName="Resources/Images/ClaRa-Logo.png", 13 | ModelicaVersion="4.0.0", 14 | pos=001) 15 | 16 | LibraryInfoMenuSeparator( 17 | category="libraries", 18 | pos=002) 19 | -------------------------------------------------------------------------------- /package.order: -------------------------------------------------------------------------------- 1 | UsersGuide 2 | Examples 3 | Basics 4 | Components 5 | SubSystems 6 | Visualisation 7 | StaticCycles 8 | SimCenter 9 | --------------------------------------------------------------------------------