├── 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/FluidType.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Choices/FluidType.mo -------------------------------------------------------------------------------- /Basics/Choices/GeometryOrientation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Choices/GeometryOrientation.mo -------------------------------------------------------------------------------- /Basics/Choices/HeatTransfer.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Choices/HeatTransfer.mo -------------------------------------------------------------------------------- /Basics/Choices/Init.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Choices/Init.mo -------------------------------------------------------------------------------- /Basics/Choices/Position.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Choices/Position.mo -------------------------------------------------------------------------------- /Basics/Choices/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Choices/package.mo -------------------------------------------------------------------------------- /Basics/Choices/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Choices/package.order -------------------------------------------------------------------------------- /Basics/Constants/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Constants/package.mo -------------------------------------------------------------------------------- /Basics/Constants/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Constants/package.order -------------------------------------------------------------------------------- /Basics/ControlVolumes/GasVolumes/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/ControlVolumes/GasVolumes/package.mo -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/Fundamentals/Blocks/Check/package.order: -------------------------------------------------------------------------------- 1 | Check_TinyPIP 2 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/Fundamentals/Blocks/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | TinyPIP 3 | -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/NTU_L2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/ControlVolumes/SolidVolumes/NTU_L2.mo -------------------------------------------------------------------------------- /Basics/ControlVolumes/SolidVolumes/NTU_L3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/ControlVolumes/SolidVolumes/NTU_L3.mo -------------------------------------------------------------------------------- /Basics/ControlVolumes/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/ControlVolumes/package.mo -------------------------------------------------------------------------------- /Basics/ControlVolumes/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/ControlVolumes/package.order -------------------------------------------------------------------------------- /Basics/Functions/A_hor_intCyl.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/A_hor_intCyl.mo -------------------------------------------------------------------------------- /Basics/Functions/ClaRaDelay/ExternalTable.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/ClaRaDelay/ExternalTable.mo -------------------------------------------------------------------------------- /Basics/Functions/ClaRaDelay/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/ClaRaDelay/package.mo -------------------------------------------------------------------------------- /Basics/Functions/ClaRaDelay/package.order: -------------------------------------------------------------------------------- 1 | ExternalTable 2 | getDelayValuesAtTime 3 | -------------------------------------------------------------------------------- /Basics/Functions/Factorial.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/Factorial.mo -------------------------------------------------------------------------------- /Basics/Functions/GenerateGrid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/GenerateGrid.mo -------------------------------------------------------------------------------- /Basics/Functions/InitialiseCombustionGas.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/InitialiseCombustionGas.mo -------------------------------------------------------------------------------- /Basics/Functions/RecalculateComposition.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/RecalculateComposition.mo -------------------------------------------------------------------------------- /Basics/Functions/SmoothZeroTransition.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/SmoothZeroTransition.mo -------------------------------------------------------------------------------- /Basics/Functions/Stepsmoother.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/Stepsmoother.mo -------------------------------------------------------------------------------- /Basics/Functions/Stepsmoother_der.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/Stepsmoother_der.mo -------------------------------------------------------------------------------- /Basics/Functions/TestCases/TestLogMean.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/TestCases/TestLogMean.mo -------------------------------------------------------------------------------- /Basics/Functions/TestCases/TestMaxAbs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/TestCases/TestMaxAbs.mo -------------------------------------------------------------------------------- /Basics/Functions/TestCases/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/TestCases/package.mo -------------------------------------------------------------------------------- /Basics/Functions/TestCases/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/TestCases/package.order -------------------------------------------------------------------------------- /Basics/Functions/ThermoRoot.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/ThermoRoot.mo -------------------------------------------------------------------------------- /Basics/Functions/ThermoRoot_der.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/ThermoRoot_der.mo -------------------------------------------------------------------------------- /Basics/Functions/length.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/length.mo -------------------------------------------------------------------------------- /Basics/Functions/maxAbs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/maxAbs.mo -------------------------------------------------------------------------------- /Basics/Functions/minAbs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/minAbs.mo -------------------------------------------------------------------------------- /Basics/Functions/mod.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/mod.mo -------------------------------------------------------------------------------- /Basics/Functions/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/package.mo -------------------------------------------------------------------------------- /Basics/Functions/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/package.order -------------------------------------------------------------------------------- /Basics/Functions/pressureInterpolation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/pressureInterpolation.mo -------------------------------------------------------------------------------- /Basics/Functions/shape_intCyl.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/shape_intCyl.mo -------------------------------------------------------------------------------- /Basics/Functions/vectorInterpolation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Functions/vectorInterpolation.mo -------------------------------------------------------------------------------- /Basics/Icons/Adapter2_bw.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Adapter2_bw.mo -------------------------------------------------------------------------------- /Basics/Icons/Adapter2_fw.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Adapter2_fw.mo -------------------------------------------------------------------------------- /Basics/Icons/Adapter3_bw.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Adapter3_bw.mo -------------------------------------------------------------------------------- /Basics/Icons/Adapter3_fw.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Adapter3_fw.mo -------------------------------------------------------------------------------- /Basics/Icons/Adapter5_bw.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Adapter5_bw.mo -------------------------------------------------------------------------------- /Basics/Icons/Adapter5_fw.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Adapter5_fw.mo -------------------------------------------------------------------------------- /Basics/Icons/AirPreheater.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/AirPreheater.mo -------------------------------------------------------------------------------- /Basics/Icons/AirPreheaterQuart.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/AirPreheaterQuart.mo -------------------------------------------------------------------------------- /Basics/Icons/Alpha.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Alpha.mo -------------------------------------------------------------------------------- /Basics/Icons/AlphaEpsilon.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/AlphaEpsilon.mo -------------------------------------------------------------------------------- /Basics/Icons/Ambience.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Ambience.mo -------------------------------------------------------------------------------- /Basics/Icons/BalanceTank.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/BalanceTank.mo -------------------------------------------------------------------------------- /Basics/Icons/Boiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Boiler.mo -------------------------------------------------------------------------------- /Basics/Icons/Bottle.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Bottle.mo -------------------------------------------------------------------------------- /Basics/Icons/Box.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Box.mo -------------------------------------------------------------------------------- /Basics/Icons/Burner.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Burner.mo -------------------------------------------------------------------------------- /Basics/Icons/BurnerSlice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/BurnerSlice.mo -------------------------------------------------------------------------------- /Basics/Icons/ChemicalReactions.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/ChemicalReactions.mo -------------------------------------------------------------------------------- /Basics/Icons/ComplexityLevel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/ComplexityLevel.mo -------------------------------------------------------------------------------- /Basics/Icons/Compressor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Compressor.mo -------------------------------------------------------------------------------- /Basics/Icons/CoolingTower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/CoolingTower.mo -------------------------------------------------------------------------------- /Basics/Icons/Cyclone.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Cyclone.mo -------------------------------------------------------------------------------- /Basics/Icons/Delta_p.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Delta_p.mo -------------------------------------------------------------------------------- /Basics/Icons/Drum.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Drum.mo -------------------------------------------------------------------------------- /Basics/Icons/E_Filter.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/E_Filter.mo -------------------------------------------------------------------------------- /Basics/Icons/Efficiency.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Efficiency.mo -------------------------------------------------------------------------------- /Basics/Icons/Epsilon.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Epsilon.mo -------------------------------------------------------------------------------- /Basics/Icons/FeedwaterTank.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/FeedwaterTank.mo -------------------------------------------------------------------------------- /Basics/Icons/FlameRoom.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/FlameRoom.mo -------------------------------------------------------------------------------- /Basics/Icons/FlameRoomTubeBundle.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/FlameRoomTubeBundle.mo -------------------------------------------------------------------------------- /Basics/Icons/FlowAnchor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/FlowAnchor.mo -------------------------------------------------------------------------------- /Basics/Icons/FlowSensor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/FlowSensor.mo -------------------------------------------------------------------------------- /Basics/Icons/FlowSink.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/FlowSink.mo -------------------------------------------------------------------------------- /Basics/Icons/FlowSource.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/FlowSource.mo -------------------------------------------------------------------------------- /Basics/Icons/FreeboardSlice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/FreeboardSlice.mo -------------------------------------------------------------------------------- /Basics/Icons/Function.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Function.mo -------------------------------------------------------------------------------- /Basics/Icons/FurnaceSlice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/FurnaceSlice.mo -------------------------------------------------------------------------------- /Basics/Icons/HEX01.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/HEX01.mo -------------------------------------------------------------------------------- /Basics/Icons/HEX01Plate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/HEX01Plate.mo -------------------------------------------------------------------------------- /Basics/Icons/HEX01PlateDiscretized.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/HEX01PlateDiscretized.mo -------------------------------------------------------------------------------- /Basics/Icons/HEX02.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/HEX02.mo -------------------------------------------------------------------------------- /Basics/Icons/HEX03.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/HEX03.mo -------------------------------------------------------------------------------- /Basics/Icons/HEX04.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/HEX04.mo -------------------------------------------------------------------------------- /Basics/Icons/HEX05.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/HEX05.mo -------------------------------------------------------------------------------- /Basics/Icons/Header.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Header.mo -------------------------------------------------------------------------------- /Basics/Icons/Hopper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Hopper.mo -------------------------------------------------------------------------------- /Basics/Icons/HopperSlice.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/HopperSlice.mo -------------------------------------------------------------------------------- /Basics/Icons/IComIcon.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/IComIcon.mo -------------------------------------------------------------------------------- /Basics/Icons/IdealMixing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/IdealMixing.mo -------------------------------------------------------------------------------- /Basics/Icons/IdealPhases.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/IdealPhases.mo -------------------------------------------------------------------------------- /Basics/Icons/IdealSeparation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/IdealSeparation.mo -------------------------------------------------------------------------------- /Basics/Icons/Init.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Init.mo -------------------------------------------------------------------------------- /Basics/Icons/MassComposition.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/MassComposition.mo -------------------------------------------------------------------------------- /Basics/Icons/MechanicalEquilibriumIcon.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/MechanicalEquilibriumIcon.mo -------------------------------------------------------------------------------- /Basics/Icons/Mill.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Mill.mo -------------------------------------------------------------------------------- /Basics/Icons/Motor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Motor.mo -------------------------------------------------------------------------------- /Basics/Icons/NTU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/NTU.mo -------------------------------------------------------------------------------- /Basics/Icons/Nozzle.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Nozzle.mo -------------------------------------------------------------------------------- /Basics/Icons/Obsolete.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Obsolete.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Basics100.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Basics100.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Basics50.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Basics50.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Basics60.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Basics60.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Basics80.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Basics80.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Basicsb100.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Basicsb100.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Basicsb50.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Basicsb50.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Basicsb60.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Basicsb60.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Basicsb80.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Basicsb80.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/ClaRab100/package.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Components100.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Components100.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Components50.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Components50.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Components60.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Components60.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Components80.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Components80.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Componentsb100.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Componentsb100.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Componentsb50.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Componentsb50.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Componentsb60.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Componentsb60.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Componentsb80.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Componentsb80.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Contact100.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Contact100.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Critical.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Critical.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/CycleInit100.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/CycleInit100.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/CycleInit50.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/CycleInit50.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/CycleInit60.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/CycleInit60.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/CycleInit80.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/CycleInit80.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/CycleInitb100.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/CycleInitb100.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/CycleInitb50.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/CycleInitb50.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/CycleInitb60.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/CycleInitb60.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/CycleInitb80.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/CycleInitb80.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Examples100.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Examples100.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Examples50.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Examples50.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Examples60.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Examples60.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Examples80.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Examples80.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Examplesb100.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Examplesb100.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Examplesb50.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Examplesb50.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Examplesb60.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Examplesb60.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Examplesb80.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Examplesb80.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/FuelPackage.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/FuelPackage.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Info100.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Info100.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Subsystems100.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Subsystems100.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Subsystems50.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Subsystems50.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Subsystems60.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Subsystems60.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Subsystems80.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Subsystems80.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Subsystemsb100.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Subsystemsb100.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Subsystemsb50.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Subsystemsb50.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Subsystemsb60.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Subsystemsb60.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Subsystemsb80.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Subsystemsb80.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Visualisation50.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Visualisation50.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Visualisation60.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Visualisation60.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/Visualisation80.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/Visualisation80.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/package.mo -------------------------------------------------------------------------------- /Basics/Icons/PackageIcons/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PackageIcons/package.order -------------------------------------------------------------------------------- /Basics/Icons/Pipe.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Pipe.mo -------------------------------------------------------------------------------- /Basics/Icons/Pipe_L1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Pipe_L1.mo -------------------------------------------------------------------------------- /Basics/Icons/Pipe_L2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Pipe_L2.mo -------------------------------------------------------------------------------- /Basics/Icons/Pipe_L4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Pipe_L4.mo -------------------------------------------------------------------------------- /Basics/Icons/Pipe_L4_a.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Pipe_L4_a.mo -------------------------------------------------------------------------------- /Basics/Icons/PowerSensor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PowerSensor.mo -------------------------------------------------------------------------------- /Basics/Icons/PressureSensor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/PressureSensor.mo -------------------------------------------------------------------------------- /Basics/Icons/Pump.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Pump.mo -------------------------------------------------------------------------------- /Basics/Icons/RealMixing.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/RealMixing.mo -------------------------------------------------------------------------------- /Basics/Icons/RealPhases.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/RealPhases.mo -------------------------------------------------------------------------------- /Basics/Icons/RealSeparation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/RealSeparation.mo -------------------------------------------------------------------------------- /Basics/Icons/RecordIcon.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/RecordIcon.mo -------------------------------------------------------------------------------- /Basics/Icons/RecordIconGraph.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/RecordIconGraph.mo -------------------------------------------------------------------------------- /Basics/Icons/RegressionSummary.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/RegressionSummary.mo -------------------------------------------------------------------------------- /Basics/Icons/RollerBowlMill.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/RollerBowlMill.mo -------------------------------------------------------------------------------- /Basics/Icons/Sensor1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Sensor1.mo -------------------------------------------------------------------------------- /Basics/Icons/Sensor2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Sensor2.mo -------------------------------------------------------------------------------- /Basics/Icons/Separator.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Separator.mo -------------------------------------------------------------------------------- /Basics/Icons/SimpleCombustionChamber.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/SimpleCombustionChamber.mo -------------------------------------------------------------------------------- /Basics/Icons/SimpleTurbine.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/SimpleTurbine.mo -------------------------------------------------------------------------------- /Basics/Icons/SprayInjector.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/SprayInjector.mo -------------------------------------------------------------------------------- /Basics/Icons/TemperatureSensor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/TemperatureSensor.mo -------------------------------------------------------------------------------- /Basics/Icons/Tpipe.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Tpipe.mo -------------------------------------------------------------------------------- /Basics/Icons/Tpipe2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Tpipe2.mo -------------------------------------------------------------------------------- /Basics/Icons/TubeWithWall_L4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/TubeWithWall_L4.mo -------------------------------------------------------------------------------- /Basics/Icons/Valve.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Valve.mo -------------------------------------------------------------------------------- /Basics/Icons/ValveControllable.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/ValveControllable.mo -------------------------------------------------------------------------------- /Basics/Icons/Volume.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Volume.mo -------------------------------------------------------------------------------- /Basics/Icons/Volume2Zones.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Volume2Zones.mo -------------------------------------------------------------------------------- /Basics/Icons/VolumeComposition.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/VolumeComposition.mo -------------------------------------------------------------------------------- /Basics/Icons/Volume_L4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/Volume_L4.mo -------------------------------------------------------------------------------- /Basics/Icons/WallThick.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/WallThick.mo -------------------------------------------------------------------------------- /Basics/Icons/WallThin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/WallThin.mo -------------------------------------------------------------------------------- /Basics/Icons/WallThinLarge.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/WallThinLarge.mo -------------------------------------------------------------------------------- /Basics/Icons/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/package.mo -------------------------------------------------------------------------------- /Basics/Icons/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Icons/package.order -------------------------------------------------------------------------------- /Basics/Interfaces/Bus.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/Bus.mo -------------------------------------------------------------------------------- /Basics/Interfaces/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/Check/package.mo -------------------------------------------------------------------------------- /Basics/Interfaces/Check/package.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Basics/Interfaces/Connected2SimCenter.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/Connected2SimCenter.mo -------------------------------------------------------------------------------- /Basics/Interfaces/CycleSumModel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/CycleSumModel.mo -------------------------------------------------------------------------------- /Basics/Interfaces/CycleSumPort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/CycleSumPort.mo -------------------------------------------------------------------------------- /Basics/Interfaces/CycleSummaryPort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/CycleSummaryPort.mo -------------------------------------------------------------------------------- /Basics/Interfaces/DataInterface.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/DataInterface.mo -------------------------------------------------------------------------------- /Basics/Interfaces/DataInterfaceVector.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/DataInterfaceVector.mo -------------------------------------------------------------------------------- /Basics/Interfaces/DataInterfaceVectorGas.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/DataInterfaceVectorGas.mo -------------------------------------------------------------------------------- /Basics/Interfaces/DoubleDataInterface.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/DoubleDataInterface.mo -------------------------------------------------------------------------------- /Basics/Interfaces/ElectricPortIn.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/ElectricPortIn.mo -------------------------------------------------------------------------------- /Basics/Interfaces/ElectricPortOut.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/ElectricPortOut.mo -------------------------------------------------------------------------------- /Basics/Interfaces/EyeIn.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/EyeIn.mo -------------------------------------------------------------------------------- /Basics/Interfaces/EyeInGas.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/EyeInGas.mo -------------------------------------------------------------------------------- /Basics/Interfaces/EyeOut.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/EyeOut.mo -------------------------------------------------------------------------------- /Basics/Interfaces/EyeOutGas.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/EyeOutGas.mo -------------------------------------------------------------------------------- /Basics/Interfaces/FluidPortIn.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/FluidPortIn.mo -------------------------------------------------------------------------------- /Basics/Interfaces/FluidPortOut.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/FluidPortOut.mo -------------------------------------------------------------------------------- /Basics/Interfaces/FuelFlueGas_inlet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/FuelFlueGas_inlet.mo -------------------------------------------------------------------------------- /Basics/Interfaces/FuelFlueGas_outlet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/FuelFlueGas_outlet.mo -------------------------------------------------------------------------------- /Basics/Interfaces/FuelInletDistr.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/FuelInletDistr.mo -------------------------------------------------------------------------------- /Basics/Interfaces/FuelOutletDistr.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/FuelOutletDistr.mo -------------------------------------------------------------------------------- /Basics/Interfaces/FuelSlagFlueGas_inlet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/FuelSlagFlueGas_inlet.mo -------------------------------------------------------------------------------- /Basics/Interfaces/FuelSlagFlueGas_outlet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/FuelSlagFlueGas_outlet.mo -------------------------------------------------------------------------------- /Basics/Interfaces/Fuel_inlet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/Fuel_inlet.mo -------------------------------------------------------------------------------- /Basics/Interfaces/Fuel_outlet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/Fuel_outlet.mo -------------------------------------------------------------------------------- /Basics/Interfaces/GasMassSpecific.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/GasMassSpecific.mo -------------------------------------------------------------------------------- /Basics/Interfaces/GasPortIn.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/GasPortIn.mo -------------------------------------------------------------------------------- /Basics/Interfaces/GasPortOut.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/GasPortOut.mo -------------------------------------------------------------------------------- /Basics/Interfaces/HeatPort_a.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/HeatPort_a.mo -------------------------------------------------------------------------------- /Basics/Interfaces/HeatPort_b.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/HeatPort_b.mo -------------------------------------------------------------------------------- /Basics/Interfaces/Slag_inlet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/Slag_inlet.mo -------------------------------------------------------------------------------- /Basics/Interfaces/Slag_outlet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/Slag_outlet.mo -------------------------------------------------------------------------------- /Basics/Interfaces/SteamSignal.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/SteamSignal.mo -------------------------------------------------------------------------------- /Basics/Interfaces/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/package.mo -------------------------------------------------------------------------------- /Basics/Interfaces/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/package.order -------------------------------------------------------------------------------- /Basics/Interfaces/vleFluidMassPort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Interfaces/vleFluidMassPort.mo -------------------------------------------------------------------------------- /Basics/Media/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Check/package.mo -------------------------------------------------------------------------------- /Basics/Media/Check/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Check/package.order -------------------------------------------------------------------------------- /Basics/Media/CreateInterpolatedMedium.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/CreateInterpolatedMedium.mo -------------------------------------------------------------------------------- /Basics/Media/Fuel/CoalOilMixture.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Fuel/CoalOilMixture.mo -------------------------------------------------------------------------------- /Basics/Media/Fuel/Coal_Reference.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Fuel/Coal_Reference.mo -------------------------------------------------------------------------------- /Basics/Media/Fuel/Coal_v1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Fuel/Coal_v1.mo -------------------------------------------------------------------------------- /Basics/Media/Fuel/Coal_v2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Fuel/Coal_v2.mo -------------------------------------------------------------------------------- /Basics/Media/Fuel/PartialFuel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Fuel/PartialFuel.mo -------------------------------------------------------------------------------- /Basics/Media/Fuel/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Fuel/package.mo -------------------------------------------------------------------------------- /Basics/Media/Fuel/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Fuel/package.order -------------------------------------------------------------------------------- /Basics/Media/FuelFunctions/LHV_pTxi.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelFunctions/LHV_pTxi.mo -------------------------------------------------------------------------------- /Basics/Media/FuelFunctions/density_pTxi.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelFunctions/density_pTxi.mo -------------------------------------------------------------------------------- /Basics/Media/FuelFunctions/enthalpy_pTxi.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelFunctions/enthalpy_pTxi.mo -------------------------------------------------------------------------------- /Basics/Media/FuelFunctions/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelFunctions/package.mo -------------------------------------------------------------------------------- /Basics/Media/FuelFunctions/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelFunctions/package.order -------------------------------------------------------------------------------- /Basics/Media/FuelObject.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelObject.mo -------------------------------------------------------------------------------- /Basics/Media/FuelTypes/BaseFuel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelTypes/BaseFuel.mo -------------------------------------------------------------------------------- /Basics/Media/FuelTypes/EmptyFuel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelTypes/EmptyFuel.mo -------------------------------------------------------------------------------- /Basics/Media/FuelTypes/Fuel_refvalues_v1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelTypes/Fuel_refvalues_v1.mo -------------------------------------------------------------------------------- /Basics/Media/FuelTypes/Fuel_refvalues_v2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelTypes/Fuel_refvalues_v2.mo -------------------------------------------------------------------------------- /Basics/Media/FuelTypes/Fuel_refvalues_v3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelTypes/Fuel_refvalues_v3.mo -------------------------------------------------------------------------------- /Basics/Media/FuelTypes/Fuel_v3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelTypes/Fuel_v3.mo -------------------------------------------------------------------------------- /Basics/Media/FuelTypes/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelTypes/package.mo -------------------------------------------------------------------------------- /Basics/Media/FuelTypes/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/FuelTypes/package.order -------------------------------------------------------------------------------- /Basics/Media/Slag/PartialSlag.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Slag/PartialSlag.mo -------------------------------------------------------------------------------- /Basics/Media/Slag/Slag_v1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Slag/Slag_v1.mo -------------------------------------------------------------------------------- /Basics/Media/Slag/Slag_v2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Slag/Slag_v2.mo -------------------------------------------------------------------------------- /Basics/Media/Slag/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Slag/package.mo -------------------------------------------------------------------------------- /Basics/Media/Slag/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Slag/package.order -------------------------------------------------------------------------------- /Basics/Media/Solids/BaseSolid.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/BaseSolid.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/Fireclay.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/Fireclay.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/Steel10CrMo9_10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/Steel10CrMo9_10.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/Steel13CrMo4_5.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/Steel13CrMo4_5.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/Steel15NiCuMoNb5.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/Steel15NiCuMoNb5.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/Steel16Mo3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/Steel16Mo3.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/Steel42CrMo4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/Steel42CrMo4.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/SteelAISI_904L.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/SteelAISI_904L.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/SteelX10CrMoVNb9_1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/SteelX10CrMoVNb9_1.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/SteelX20CrMoV12_1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/SteelX20CrMoV12_1.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/SteelX2CrNi19_11.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/SteelX2CrNi19_11.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/SteelX2CrNiMo17_12_2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/SteelX2CrNiMo17_12_2.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/SteelX3CrNiMo17_13.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/SteelX3CrNiMo17_13.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/SteelX5CrNi18_10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/SteelX5CrNi18_10.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/SteelX5CrNiMo17_12_2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/SteelX5CrNiMo17_12_2.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/SteelX8CrNiTi18_10.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/SteelX8CrNiTi18_10.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/package.mo -------------------------------------------------------------------------------- /Basics/Media/Solids/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/Solids/package.order -------------------------------------------------------------------------------- /Basics/Media/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/package.mo -------------------------------------------------------------------------------- /Basics/Media/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Media/package.order -------------------------------------------------------------------------------- /Basics/Records/FlangeGas.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/FlangeGas.mo -------------------------------------------------------------------------------- /Basics/Records/FlangeVLE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/FlangeVLE.mo -------------------------------------------------------------------------------- /Basics/Records/FluidVLE_L2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/FluidVLE_L2.mo -------------------------------------------------------------------------------- /Basics/Records/FluidVLE_L34.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/FluidVLE_L34.mo -------------------------------------------------------------------------------- /Basics/Records/IComBase_L2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/IComBase_L2.mo -------------------------------------------------------------------------------- /Basics/Records/IComBase_L3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/IComBase_L3.mo -------------------------------------------------------------------------------- /Basics/Records/IComFuel_L2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/IComFuel_L2.mo -------------------------------------------------------------------------------- /Basics/Records/IComGas_L2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/IComGas_L2.mo -------------------------------------------------------------------------------- /Basics/Records/IComGas_L3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/IComGas_L3.mo -------------------------------------------------------------------------------- /Basics/Records/IComVLE_L2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/IComVLE_L2.mo -------------------------------------------------------------------------------- /Basics/Records/IComVLE_L3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/IComVLE_L3.mo -------------------------------------------------------------------------------- /Basics/Records/IComVLE_L3_NPort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/IComVLE_L3_NPort.mo -------------------------------------------------------------------------------- /Basics/Records/IComVLE_L3_OnePort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/IComVLE_L3_OnePort.mo -------------------------------------------------------------------------------- /Basics/Records/StaCyFlangeFuel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/StaCyFlangeFuel.mo -------------------------------------------------------------------------------- /Basics/Records/StaCyFlangeGas.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/StaCyFlangeGas.mo -------------------------------------------------------------------------------- /Basics/Records/StaCyFlangeGas_a.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/StaCyFlangeGas_a.mo -------------------------------------------------------------------------------- /Basics/Records/StaCyFlangeVLE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/StaCyFlangeVLE.mo -------------------------------------------------------------------------------- /Basics/Records/StaCyFlangeVLE_a.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/StaCyFlangeVLE_a.mo -------------------------------------------------------------------------------- /Basics/Records/StaticMeasurementValue.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/StaticMeasurementValue.mo -------------------------------------------------------------------------------- /Basics/Records/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/package.mo -------------------------------------------------------------------------------- /Basics/Records/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Records/package.order -------------------------------------------------------------------------------- /Basics/Types/Color.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Types/Color.mo -------------------------------------------------------------------------------- /Basics/Types/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Types/package.mo -------------------------------------------------------------------------------- /Basics/Types/package.order: -------------------------------------------------------------------------------- 1 | Color 2 | -------------------------------------------------------------------------------- /Basics/Units/AbsolutePressure.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/AbsolutePressure.mo -------------------------------------------------------------------------------- /Basics/Units/Acceleration.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Acceleration.mo -------------------------------------------------------------------------------- /Basics/Units/Angle.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Angle.mo -------------------------------------------------------------------------------- /Basics/Units/AngularVelocity.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/AngularVelocity.mo -------------------------------------------------------------------------------- /Basics/Units/Area.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Area.mo -------------------------------------------------------------------------------- /Basics/Units/AreaFraction.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/AreaFraction.mo -------------------------------------------------------------------------------- /Basics/Units/CoefficientOfHeatTransfer.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/CoefficientOfHeatTransfer.mo -------------------------------------------------------------------------------- /Basics/Units/DensityMassSpecific.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/DensityMassSpecific.mo -------------------------------------------------------------------------------- /Basics/Units/DensityMolSpecific.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/DensityMolSpecific.mo -------------------------------------------------------------------------------- /Basics/Units/DensityVolumeSpecific.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/DensityVolumeSpecific.mo -------------------------------------------------------------------------------- /Basics/Units/DynamicViscosity.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/DynamicViscosity.mo -------------------------------------------------------------------------------- /Basics/Units/Efficiency.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Efficiency.mo -------------------------------------------------------------------------------- /Basics/Units/ElasticityModule.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/ElasticityModule.mo -------------------------------------------------------------------------------- /Basics/Units/ElectricCurrent.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/ElectricCurrent.mo -------------------------------------------------------------------------------- /Basics/Units/ElectricResistance.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/ElectricResistance.mo -------------------------------------------------------------------------------- /Basics/Units/ElectricVoltage.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/ElectricVoltage.mo -------------------------------------------------------------------------------- /Basics/Units/Energy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Energy.mo -------------------------------------------------------------------------------- /Basics/Units/EnergyMassSpecific.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/EnergyMassSpecific.mo -------------------------------------------------------------------------------- /Basics/Units/Enthalpy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Enthalpy.mo -------------------------------------------------------------------------------- /Basics/Units/EnthalpyFlowRate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/EnthalpyFlowRate.mo -------------------------------------------------------------------------------- /Basics/Units/EnthalpyMassSpecific.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/EnthalpyMassSpecific.mo -------------------------------------------------------------------------------- /Basics/Units/EnthalpyMolSpecific.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/EnthalpyMolSpecific.mo -------------------------------------------------------------------------------- /Basics/Units/EnthalpyVolumeSpecific.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/EnthalpyVolumeSpecific.mo -------------------------------------------------------------------------------- /Basics/Units/EntropyFlowRate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/EntropyFlowRate.mo -------------------------------------------------------------------------------- /Basics/Units/EntropyMassSpecific.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/EntropyMassSpecific.mo -------------------------------------------------------------------------------- /Basics/Units/Force.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Force.mo -------------------------------------------------------------------------------- /Basics/Units/Frequency.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Frequency.mo -------------------------------------------------------------------------------- /Basics/Units/FroudeNumber.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/FroudeNumber.mo -------------------------------------------------------------------------------- /Basics/Units/HeatCapacityFlowRate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/HeatCapacityFlowRate.mo -------------------------------------------------------------------------------- /Basics/Units/HeatCapacityMassSpecific.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/HeatCapacityMassSpecific.mo -------------------------------------------------------------------------------- /Basics/Units/HeatExpansionRateLinear.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/HeatExpansionRateLinear.mo -------------------------------------------------------------------------------- /Basics/Units/HeatFlowRate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/HeatFlowRate.mo -------------------------------------------------------------------------------- /Basics/Units/HeatFlux.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/HeatFlux.mo -------------------------------------------------------------------------------- /Basics/Units/Inductance.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Inductance.mo -------------------------------------------------------------------------------- /Basics/Units/InternalEnergy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/InternalEnergy.mo -------------------------------------------------------------------------------- /Basics/Units/KinematicViscosity.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/KinematicViscosity.mo -------------------------------------------------------------------------------- /Basics/Units/Length.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Length.mo -------------------------------------------------------------------------------- /Basics/Units/Mass.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Mass.mo -------------------------------------------------------------------------------- /Basics/Units/MassFlowDensity.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/MassFlowDensity.mo -------------------------------------------------------------------------------- /Basics/Units/MassFlowRate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/MassFlowRate.mo -------------------------------------------------------------------------------- /Basics/Units/MassFlux.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/MassFlux.mo -------------------------------------------------------------------------------- /Basics/Units/MassFraction.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/MassFraction.mo -------------------------------------------------------------------------------- /Basics/Units/MassFraction_ppm.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/MassFraction_ppm.mo -------------------------------------------------------------------------------- /Basics/Units/MolFraction.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/MolFraction.mo -------------------------------------------------------------------------------- /Basics/Units/MolarMass.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/MolarMass.mo -------------------------------------------------------------------------------- /Basics/Units/MomentOfInertia.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/MomentOfInertia.mo -------------------------------------------------------------------------------- /Basics/Units/Momentum.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Momentum.mo -------------------------------------------------------------------------------- /Basics/Units/MomentumFlowRate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/MomentumFlowRate.mo -------------------------------------------------------------------------------- /Basics/Units/NusseltNumber.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/NusseltNumber.mo -------------------------------------------------------------------------------- /Basics/Units/Power.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Power.mo -------------------------------------------------------------------------------- /Basics/Units/PrandtlNumber.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/PrandtlNumber.mo -------------------------------------------------------------------------------- /Basics/Units/Pressure.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Pressure.mo -------------------------------------------------------------------------------- /Basics/Units/PressureDifference.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/PressureDifference.mo -------------------------------------------------------------------------------- /Basics/Units/RPM.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/RPM.mo -------------------------------------------------------------------------------- /Basics/Units/RelativeHumidity.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/RelativeHumidity.mo -------------------------------------------------------------------------------- /Basics/Units/ReynoldsNumber.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/ReynoldsNumber.mo -------------------------------------------------------------------------------- /Basics/Units/ShearModulus.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/ShearModulus.mo -------------------------------------------------------------------------------- /Basics/Units/Stress.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Stress.mo -------------------------------------------------------------------------------- /Basics/Units/SurfaceTension.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/SurfaceTension.mo -------------------------------------------------------------------------------- /Basics/Units/Temperature.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Temperature.mo -------------------------------------------------------------------------------- /Basics/Units/TemperatureDifference.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/TemperatureDifference.mo -------------------------------------------------------------------------------- /Basics/Units/Temperature_DegC.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Temperature_DegC.mo -------------------------------------------------------------------------------- /Basics/Units/ThermalConductivity.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/ThermalConductivity.mo -------------------------------------------------------------------------------- /Basics/Units/ThermalResistance.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/ThermalResistance.mo -------------------------------------------------------------------------------- /Basics/Units/Time.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Time.mo -------------------------------------------------------------------------------- /Basics/Units/Torque.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Torque.mo -------------------------------------------------------------------------------- /Basics/Units/Velocity.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Velocity.mo -------------------------------------------------------------------------------- /Basics/Units/Voltage.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Voltage.mo -------------------------------------------------------------------------------- /Basics/Units/Volume.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/Volume.mo -------------------------------------------------------------------------------- /Basics/Units/VolumeFlowRate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/VolumeFlowRate.mo -------------------------------------------------------------------------------- /Basics/Units/VolumeFraction.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/VolumeFraction.mo -------------------------------------------------------------------------------- /Basics/Units/VolumeMassSpecific.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/VolumeMassSpecific.mo -------------------------------------------------------------------------------- /Basics/Units/VolumeMolSpecific.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/VolumeMolSpecific.mo -------------------------------------------------------------------------------- /Basics/Units/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/package.mo -------------------------------------------------------------------------------- /Basics/Units/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/Units/package.order -------------------------------------------------------------------------------- /Basics/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/package.mo -------------------------------------------------------------------------------- /Basics/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Basics/package.order -------------------------------------------------------------------------------- /Components/Adapters/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/Check/package.mo -------------------------------------------------------------------------------- /Components/Adapters/Check/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/Check/package.order -------------------------------------------------------------------------------- /Components/Adapters/ClaRa2ThermoPower.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/ClaRa2ThermoPower.mo -------------------------------------------------------------------------------- /Components/Adapters/Fluid2ClaRa.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/Fluid2ClaRa.mo -------------------------------------------------------------------------------- /Components/Adapters/FuelFlueGas_join.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/FuelFlueGas_join.mo -------------------------------------------------------------------------------- /Components/Adapters/FuelFlueGas_split.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/FuelFlueGas_split.mo -------------------------------------------------------------------------------- /Components/Adapters/FuelSlagFlueGas_join.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/FuelSlagFlueGas_join.mo -------------------------------------------------------------------------------- /Components/Adapters/FuelSlagFlueGas_split.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/FuelSlagFlueGas_split.mo -------------------------------------------------------------------------------- /Components/Adapters/Fundamentals/FlangeA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/Fundamentals/FlangeA.mo -------------------------------------------------------------------------------- /Components/Adapters/Fundamentals/FlangeB.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/Fundamentals/FlangeB.mo -------------------------------------------------------------------------------- /Components/Adapters/Fundamentals/SensT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/Fundamentals/SensT.mo -------------------------------------------------------------------------------- /Components/Adapters/Fundamentals/SinkP.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/Fundamentals/SinkP.mo -------------------------------------------------------------------------------- /Components/Adapters/Fundamentals/SourceP.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/Fundamentals/SourceP.mo -------------------------------------------------------------------------------- /Components/Adapters/Fundamentals/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/Fundamentals/package.mo -------------------------------------------------------------------------------- /Components/Adapters/GasSensorAdapter.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/GasSensorAdapter.mo -------------------------------------------------------------------------------- /Components/Adapters/Scalar2VectorHeatPort.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/Scalar2VectorHeatPort.mo -------------------------------------------------------------------------------- /Components/Adapters/ThermoPower2ClaRa.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/ThermoPower2ClaRa.mo -------------------------------------------------------------------------------- /Components/Adapters/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/package.mo -------------------------------------------------------------------------------- /Components/Adapters/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Adapters/package.order -------------------------------------------------------------------------------- /Components/BoundaryConditions/Ambience.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/BoundaryConditions/Ambience.mo -------------------------------------------------------------------------------- /Components/BoundaryConditions/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/BoundaryConditions/package.mo -------------------------------------------------------------------------------- /Components/BoundaryConditions/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/BoundaryConditions/package.order -------------------------------------------------------------------------------- /Components/Control/FeedForward/Check/package.order: -------------------------------------------------------------------------------- 1 | TestBlockFF 2 | -------------------------------------------------------------------------------- /Components/Control/FeedForward/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Control/FeedForward/package.mo -------------------------------------------------------------------------------- /Components/Control/FeedForward/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | FeedForwardBlock_3508 3 | -------------------------------------------------------------------------------- /Components/Control/PowerPlantControl/Check/package.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Components/Control/PowerPlantControl/package.order: -------------------------------------------------------------------------------- 1 | Check 2 | LiveSteamTemperature 3 | -------------------------------------------------------------------------------- /Components/Control/PredictorModels_3508/Icons/package.order: -------------------------------------------------------------------------------- 1 | BoilerPredictor 2 | TurbineAndReheat 3 | -------------------------------------------------------------------------------- /Components/Control/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Control/package.mo -------------------------------------------------------------------------------- /Components/Control/package.order: -------------------------------------------------------------------------------- 1 | PredictorModels_3508 2 | PowerPlantControl 3 | FeedForward 4 | -------------------------------------------------------------------------------- /Components/Electrical/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Electrical/Check/package.mo -------------------------------------------------------------------------------- /Components/Electrical/Check/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Electrical/Check/package.order -------------------------------------------------------------------------------- /Components/Electrical/SimpleGenerator.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Electrical/SimpleGenerator.mo -------------------------------------------------------------------------------- /Components/Electrical/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Electrical/package.mo -------------------------------------------------------------------------------- /Components/Electrical/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Electrical/package.order -------------------------------------------------------------------------------- /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.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.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/FlueGasCleaning/package.mo -------------------------------------------------------------------------------- /Components/FlueGasCleaning/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/FlueGasCleaning/package.order -------------------------------------------------------------------------------- /Components/Furnace/BaseClasses/HopperBase.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/BaseClasses/HopperBase.mo -------------------------------------------------------------------------------- /Components/Furnace/BaseClasses/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/BaseClasses/package.mo -------------------------------------------------------------------------------- /Components/Furnace/BaseClasses/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/BaseClasses/package.order -------------------------------------------------------------------------------- /Components/Furnace/Burner/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/Burner/package.mo -------------------------------------------------------------------------------- /Components/Furnace/Burner/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/Burner/package.order -------------------------------------------------------------------------------- /Components/Furnace/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/Check/package.mo -------------------------------------------------------------------------------- /Components/Furnace/Check/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/Check/package.order -------------------------------------------------------------------------------- /Components/Furnace/FlameRoom/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/FlameRoom/package.mo -------------------------------------------------------------------------------- /Components/Furnace/FlameRoom/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/FlameRoom/package.order -------------------------------------------------------------------------------- /Components/Furnace/GeneralTransportPhenomena/package.order: -------------------------------------------------------------------------------- 1 | ParticleMigration 2 | BurningTime 3 | ThermalCapacities 4 | -------------------------------------------------------------------------------- /Components/Furnace/Hopper/Hopper_L2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/Hopper/Hopper_L2.mo -------------------------------------------------------------------------------- /Components/Furnace/Hopper/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/Hopper/package.mo -------------------------------------------------------------------------------- /Components/Furnace/Hopper/package.order: -------------------------------------------------------------------------------- 1 | Hopper_L2 2 | -------------------------------------------------------------------------------- /Components/Furnace/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/package.mo -------------------------------------------------------------------------------- /Components/Furnace/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Furnace/package.order -------------------------------------------------------------------------------- /Components/HeatExchangers/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/HeatExchangers/Check/package.mo -------------------------------------------------------------------------------- /Components/HeatExchangers/IdealShell_L2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/HeatExchangers/IdealShell_L2.mo -------------------------------------------------------------------------------- /Components/HeatExchangers/TubeBundle_L2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/HeatExchangers/TubeBundle_L2.mo -------------------------------------------------------------------------------- /Components/HeatExchangers/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/HeatExchangers/package.mo -------------------------------------------------------------------------------- /Components/HeatExchangers/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/HeatExchangers/package.order -------------------------------------------------------------------------------- /Components/MechanicalSeparation/Bottle_L3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/MechanicalSeparation/Bottle_L3.mo -------------------------------------------------------------------------------- /Components/MechanicalSeparation/Drum_L3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/MechanicalSeparation/Drum_L3.mo -------------------------------------------------------------------------------- /Components/MechanicalSeparation/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/MechanicalSeparation/package.mo -------------------------------------------------------------------------------- /Components/Mills/HardCoalMills/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Mills/HardCoalMills/package.mo -------------------------------------------------------------------------------- /Components/Mills/HardCoalMills/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Mills/HardCoalMills/package.order -------------------------------------------------------------------------------- /Components/Mills/LigniteMills/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Mills/LigniteMills/package.mo -------------------------------------------------------------------------------- /Components/Mills/LigniteMills/package.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Components/Mills/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Mills/package.mo -------------------------------------------------------------------------------- /Components/Mills/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Mills/package.order -------------------------------------------------------------------------------- /Components/Mills/physicalMills/mill_L4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Mills/physicalMills/mill_L4.mo -------------------------------------------------------------------------------- /Components/Mills/physicalMills/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Mills/physicalMills/package.mo -------------------------------------------------------------------------------- /Components/Mills/physicalMills/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Mills/physicalMills/package.order -------------------------------------------------------------------------------- /Components/Sensors/Check/TestFuelSensors.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/Check/TestFuelSensors.mo -------------------------------------------------------------------------------- /Components/Sensors/Check/TestSensors.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/Check/TestSensors.mo -------------------------------------------------------------------------------- /Components/Sensors/Check/TestVLESensors.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/Check/TestVLESensors.mo -------------------------------------------------------------------------------- /Components/Sensors/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/Check/package.mo -------------------------------------------------------------------------------- /Components/Sensors/Check/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/Check/package.order -------------------------------------------------------------------------------- /Components/Sensors/Check/testGasSensors.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/Check/testGasSensors.mo -------------------------------------------------------------------------------- /Components/Sensors/FuelSensorBase.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/FuelSensorBase.mo -------------------------------------------------------------------------------- /Components/Sensors/GasSensorBase.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/GasSensorBase.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorFuel_L1_LHV.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorFuel_L1_LHV.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorFuel_L1_T.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorFuel_L1_T.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorFuel_L1_m_flow.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorFuel_L1_m_flow.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorFuel_L1_xi.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorFuel_L1_xi.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorGas_L1_T.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorGas_L1_T.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorGas_L1_m_flow.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorGas_L1_m_flow.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorGas_L1_p.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorGas_L1_p.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorGas_L1_xi.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorGas_L1_xi.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorGas_L1_xi_i.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorGas_L1_xi_i.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorVLE_L1_T.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorVLE_L1_T.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorVLE_L1_m_flow.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorVLE_L1_m_flow.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorVLE_L1_p.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorVLE_L1_p.mo -------------------------------------------------------------------------------- /Components/Sensors/SensorVLE_L3_T.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/SensorVLE_L3_T.mo -------------------------------------------------------------------------------- /Components/Sensors/TinySensorGas_L1_O2dry.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/TinySensorGas_L1_O2dry.mo -------------------------------------------------------------------------------- /Components/Sensors/TinySensorGas_L1_T.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/TinySensorGas_L1_T.mo -------------------------------------------------------------------------------- /Components/Sensors/TinySensorGas_L1_p.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/TinySensorGas_L1_p.mo -------------------------------------------------------------------------------- /Components/Sensors/TinySensorVLE_L1_T.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/TinySensorVLE_L1_T.mo -------------------------------------------------------------------------------- /Components/Sensors/TinySensorVLE_L1_p.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/TinySensorVLE_L1_p.mo -------------------------------------------------------------------------------- /Components/Sensors/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/package.mo -------------------------------------------------------------------------------- /Components/Sensors/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/package.order -------------------------------------------------------------------------------- /Components/Sensors/vleSensorBase.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Sensors/vleSensorBase.mo -------------------------------------------------------------------------------- /Components/TurboMachines/Compressors/BaseClasses/package.order: -------------------------------------------------------------------------------- 1 | partialFan 2 | -------------------------------------------------------------------------------- /Components/TurboMachines/Compressors/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | PresetVariableType 2 | GetInputsHydraulic 3 | -------------------------------------------------------------------------------- /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/Pumps/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/TurboMachines/Pumps/package.mo -------------------------------------------------------------------------------- /Components/TurboMachines/Pumps/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/TurboMachines/Pumps/package.order -------------------------------------------------------------------------------- /Components/TurboMachines/Turbines/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/TurboMachines/Turbines/package.mo -------------------------------------------------------------------------------- /Components/TurboMachines/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/TurboMachines/package.mo -------------------------------------------------------------------------------- /Components/TurboMachines/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/TurboMachines/package.order -------------------------------------------------------------------------------- /Components/Utilities/Blocks/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Utilities/Blocks/Check/package.mo -------------------------------------------------------------------------------- /Components/Utilities/Blocks/DummyValue.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Utilities/Blocks/DummyValue.mo -------------------------------------------------------------------------------- /Components/Utilities/Blocks/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | normalvariate 2 | random 3 | -------------------------------------------------------------------------------- /Components/Utilities/Blocks/Integrator.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Utilities/Blocks/Integrator.mo -------------------------------------------------------------------------------- /Components/Utilities/Blocks/LimPID.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Utilities/Blocks/LimPID.mo -------------------------------------------------------------------------------- /Components/Utilities/Blocks/Noise.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Utilities/Blocks/Noise.mo -------------------------------------------------------------------------------- /Components/Utilities/Blocks/SlidingMean.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Utilities/Blocks/SlidingMean.mo -------------------------------------------------------------------------------- /Components/Utilities/Blocks/TableGain.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Utilities/Blocks/TableGain.mo -------------------------------------------------------------------------------- /Components/Utilities/Blocks/TimeExtrema.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Utilities/Blocks/TimeExtrema.mo -------------------------------------------------------------------------------- /Components/Utilities/Blocks/VarGain.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Utilities/Blocks/VarGain.mo -------------------------------------------------------------------------------- /Components/Utilities/Blocks/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Utilities/Blocks/package.mo -------------------------------------------------------------------------------- /Components/Utilities/Blocks/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Utilities/Blocks/package.order -------------------------------------------------------------------------------- /Components/Utilities/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/Utilities/package.mo -------------------------------------------------------------------------------- /Components/Utilities/package.order: -------------------------------------------------------------------------------- 1 | Blocks 2 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Fittings/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | BaseDp 2 | Linear 3 | NoFriction 4 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Pipes/Check/MassDefect/package.order: -------------------------------------------------------------------------------- 1 | Test_Pipe_L2_Simple 2 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/Pipes/Check/ThickWallScenarios/package.order: -------------------------------------------------------------------------------- 1 | Test_Pipe_L1_TML_insulatedWall 2 | -------------------------------------------------------------------------------- /Components/VolumesValvesFittings/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/VolumesValvesFittings/package.mo -------------------------------------------------------------------------------- /Components/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/package.mo -------------------------------------------------------------------------------- /Components/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Components/package.order -------------------------------------------------------------------------------- /Examples/SteamCycle_01.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Examples/SteamCycle_01.mo -------------------------------------------------------------------------------- /Examples/SteamCycle_02.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Examples/SteamCycle_02.mo -------------------------------------------------------------------------------- /Examples/SteamPowerPlant_01.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Examples/SteamPowerPlant_01.mo -------------------------------------------------------------------------------- /Examples/VapourCycle_01.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Examples/VapourCycle_01.mo -------------------------------------------------------------------------------- /Examples/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Examples/package.mo -------------------------------------------------------------------------------- /Examples/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Examples/package.order -------------------------------------------------------------------------------- /Resources/Images/ClaRa-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/ClaRa-Logo.png -------------------------------------------------------------------------------- /Resources/Images/ClaRaLibraryInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/ClaRaLibraryInfo.png -------------------------------------------------------------------------------- /Resources/Images/Components/Adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Adapter.png -------------------------------------------------------------------------------- /Resources/Images/Components/Adapter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Adapter2.png -------------------------------------------------------------------------------- /Resources/Images/Components/Alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Alpha.png -------------------------------------------------------------------------------- /Resources/Images/Components/Ambience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Ambience.png -------------------------------------------------------------------------------- /Resources/Images/Components/BalanceTank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/BalanceTank.png -------------------------------------------------------------------------------- /Resources/Images/Components/Boiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Boiler.png -------------------------------------------------------------------------------- /Resources/Images/Components/Burner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Burner.png -------------------------------------------------------------------------------- /Resources/Images/Components/BurnerSlice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/BurnerSlice.png -------------------------------------------------------------------------------- /Resources/Images/Components/CharBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/CharBase.png -------------------------------------------------------------------------------- /Resources/Images/Components/Compressor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Compressor.png -------------------------------------------------------------------------------- /Resources/Images/Components/ContConveyor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/ContConveyor.png -------------------------------------------------------------------------------- /Resources/Images/Components/CycleSummary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/CycleSummary.png -------------------------------------------------------------------------------- /Resources/Images/Components/Cyclone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Cyclone.png -------------------------------------------------------------------------------- /Resources/Images/Components/Deltap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Deltap.png -------------------------------------------------------------------------------- /Resources/Images/Components/Drum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Drum.png -------------------------------------------------------------------------------- /Resources/Images/Components/EFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/EFilter.png -------------------------------------------------------------------------------- /Resources/Images/Components/Efficiency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Efficiency.png -------------------------------------------------------------------------------- /Resources/Images/Components/Epsilon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Epsilon.png -------------------------------------------------------------------------------- /Resources/Images/Components/FlameRoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/FlameRoom.png -------------------------------------------------------------------------------- /Resources/Images/Components/FlameRoomTB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/FlameRoomTB.png -------------------------------------------------------------------------------- /Resources/Images/Components/FlowAnchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/FlowAnchor.png -------------------------------------------------------------------------------- /Resources/Images/Components/FlowSensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/FlowSensor.png -------------------------------------------------------------------------------- /Resources/Images/Components/Fuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Fuel.png -------------------------------------------------------------------------------- /Resources/Images/Components/FuelObject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/FuelObject.png -------------------------------------------------------------------------------- /Resources/Images/Components/Function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Function.png -------------------------------------------------------------------------------- /Resources/Images/Components/FurnaceSlice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/FurnaceSlice.png -------------------------------------------------------------------------------- /Resources/Images/Components/Generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Generator.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/HEX01.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX01Plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/HEX01Plate.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/HEX02.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/HEX03.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/HEX04.png -------------------------------------------------------------------------------- /Resources/Images/Components/HEX05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/HEX05.png -------------------------------------------------------------------------------- /Resources/Images/Components/Hopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Hopper.png -------------------------------------------------------------------------------- /Resources/Images/Components/HopperSlice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/HopperSlice.png -------------------------------------------------------------------------------- /Resources/Images/Components/IdalMixing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/IdalMixing.png -------------------------------------------------------------------------------- /Resources/Images/Components/IdealPhases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/IdealPhases.png -------------------------------------------------------------------------------- /Resources/Images/Components/ImpactMill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/ImpactMill.png -------------------------------------------------------------------------------- /Resources/Images/Components/InletHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/InletHeader.png -------------------------------------------------------------------------------- /Resources/Images/Components/Junction1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Junction1.png -------------------------------------------------------------------------------- /Resources/Images/Components/Junction2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Junction2.png -------------------------------------------------------------------------------- /Resources/Images/Components/LUVO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/LUVO.png -------------------------------------------------------------------------------- /Resources/Images/Components/LUVOQuart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/LUVOQuart.png -------------------------------------------------------------------------------- /Resources/Images/Components/LibraryIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/LibraryIcon.png -------------------------------------------------------------------------------- /Resources/Images/Components/MillGeneral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/MillGeneral.png -------------------------------------------------------------------------------- /Resources/Images/Components/Motor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Motor.png -------------------------------------------------------------------------------- /Resources/Images/Components/Nozzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Nozzle.png -------------------------------------------------------------------------------- /Resources/Images/Components/OutletHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/OutletHeader.png -------------------------------------------------------------------------------- /Resources/Images/Components/PackageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/PackageIcon.png -------------------------------------------------------------------------------- /Resources/Images/Components/Pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Pipe.png -------------------------------------------------------------------------------- /Resources/Images/Components/PipeLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/PipeLarge.png -------------------------------------------------------------------------------- /Resources/Images/Components/Pipe_L1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Pipe_L1.png -------------------------------------------------------------------------------- /Resources/Images/Components/Pipe_L4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Pipe_L4.png -------------------------------------------------------------------------------- /Resources/Images/Components/Pipe_L4_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Pipe_L4_a.png -------------------------------------------------------------------------------- /Resources/Images/Components/Pipe_L4_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Pipe_L4_wall.png -------------------------------------------------------------------------------- /Resources/Images/Components/PowerSensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/PowerSensor.png -------------------------------------------------------------------------------- /Resources/Images/Components/Preheater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Preheater.png -------------------------------------------------------------------------------- /Resources/Images/Components/Pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Pump.png -------------------------------------------------------------------------------- /Resources/Images/Components/RealMixing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/RealMixing.png -------------------------------------------------------------------------------- /Resources/Images/Components/RealPhases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/RealPhases.png -------------------------------------------------------------------------------- /Resources/Images/Components/Regression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Regression.png -------------------------------------------------------------------------------- /Resources/Images/Components/Sensor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Sensor1.png -------------------------------------------------------------------------------- /Resources/Images/Components/Sensor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Sensor2.png -------------------------------------------------------------------------------- /Resources/Images/Components/Separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Separator.png -------------------------------------------------------------------------------- /Resources/Images/Components/SimCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/SimCenter.png -------------------------------------------------------------------------------- /Resources/Images/Components/Sink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Sink.png -------------------------------------------------------------------------------- /Resources/Images/Components/Slag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Slag.png -------------------------------------------------------------------------------- /Resources/Images/Components/Source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Source.png -------------------------------------------------------------------------------- /Resources/Images/Components/StaCy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/StaCy.png -------------------------------------------------------------------------------- /Resources/Images/Components/Sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Sum.png -------------------------------------------------------------------------------- /Resources/Images/Components/Valve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Valve.png -------------------------------------------------------------------------------- /Resources/Images/Components/Volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Volume.png -------------------------------------------------------------------------------- /Resources/Images/Components/VolumeDistr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/VolumeDistr.png -------------------------------------------------------------------------------- /Resources/Images/Components/Volume_L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Volume_L2.png -------------------------------------------------------------------------------- /Resources/Images/Components/Volume_L4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/Volume_L4.png -------------------------------------------------------------------------------- /Resources/Images/Components/WallNTU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/WallNTU.png -------------------------------------------------------------------------------- /Resources/Images/Components/WallThick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Components/WallThick.png -------------------------------------------------------------------------------- /Resources/Images/Logos/FVTR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Logos/FVTR.png -------------------------------------------------------------------------------- /Resources/Images/Logos/LEAG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Logos/LEAG.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Basics_100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Basics_50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Basics_60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Basics_80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_b100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Basics_b100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_b50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Basics_b50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_b60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Basics_b60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Basics_b80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Basics_b80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/ClaRa-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/ClaRa-Logo.png -------------------------------------------------------------------------------- /Resources/Images/Packages/ClaRa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/ClaRa.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Components_100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Components_50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Components_60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Components_80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_b50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Components_b50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_b60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Components_b60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Components_b80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Components_b80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Contact.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/CycleInit_100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/CycleInit_50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/CycleInit_60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/CycleInit_80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_b100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/CycleInit_b100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_b50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/CycleInit_b50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_b60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/CycleInit_b60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/CycleInit_b80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/CycleInit_b80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Element100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Element100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Examples100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Examples_50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Examples_60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Examples_80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples_b50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Examples_b50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples_b60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Examples_b60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examples_b80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Examples_b80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Examplesb100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Examplesb100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Info.png -------------------------------------------------------------------------------- /Resources/Images/Packages/InitCycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/InitCycle.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Subsystems_100.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Subsystems_50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Subsystems_60.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Subsystems_80.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_b50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Subsystems_b50.png -------------------------------------------------------------------------------- /Resources/Images/Packages/Subsystems_b60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/Packages/Subsystems_b60.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/Drum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/ParameterDialog/Drum.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/Valve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/ParameterDialog/Valve.png -------------------------------------------------------------------------------- /Resources/Images/ParameterDialog/fins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Images/ParameterDialog/fins.png -------------------------------------------------------------------------------- /Resources/Library/linux32/libDelay-V1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Library/linux32/libDelay-V1.a -------------------------------------------------------------------------------- /Resources/Library/linux64/libDelay-V1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Library/linux64/libDelay-V1.a -------------------------------------------------------------------------------- /Resources/Library/win32/Delay-V1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Library/win32/Delay-V1.lib -------------------------------------------------------------------------------- /Resources/Library/win32/ITI_Delay-V1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Library/win32/ITI_Delay-V1.dll -------------------------------------------------------------------------------- /Resources/Library/win32/libDelay-V1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Library/win32/libDelay-V1.a -------------------------------------------------------------------------------- /Resources/Library/win32/libDelay-V1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Library/win32/libDelay-V1.dll -------------------------------------------------------------------------------- /Resources/Library/win64/Delay-V1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Library/win64/Delay-V1.lib -------------------------------------------------------------------------------- /Resources/Library/win64/ITI_Delay-V1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Library/win64/ITI_Delay-V1.dll -------------------------------------------------------------------------------- /Resources/Library/win64/libDelay-V1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Library/win64/libDelay-V1.a -------------------------------------------------------------------------------- /Resources/Library/win64/libDelay-V1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Library/win64/libDelay-V1.dll -------------------------------------------------------------------------------- /Resources/Scripts/ClaRa_StartUpDymola.mos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Scripts/ClaRa_StartUpDymola.mos -------------------------------------------------------------------------------- /Resources/Scripts/ConvertFrom000.mos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Scripts/ConvertFrom000.mos -------------------------------------------------------------------------------- /Resources/Scripts/ConvertFrom010.mos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Scripts/ConvertFrom010.mos -------------------------------------------------------------------------------- /Resources/Scripts/ConvertFrom020.mos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Scripts/ConvertFrom020.mos -------------------------------------------------------------------------------- /Resources/Scripts/ConvertFrom021.mos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Scripts/ConvertFrom021.mos -------------------------------------------------------------------------------- /Resources/Scripts/ConvertFrom022.mos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Scripts/ConvertFrom022.mos -------------------------------------------------------------------------------- /Resources/Scripts/ConvertFrom101.mos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/Scripts/ConvertFrom101.mos -------------------------------------------------------------------------------- /Resources/TableBase/DeltaP_mill_meas.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/DeltaP_mill_meas.mat -------------------------------------------------------------------------------- /Resources/TableBase/DeltaP_mill_model.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/DeltaP_mill_model.mat -------------------------------------------------------------------------------- /Resources/TableBase/DeltaP_pa.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/DeltaP_pa.mat -------------------------------------------------------------------------------- /Resources/TableBase/Desuperheater.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/Desuperheater.mat -------------------------------------------------------------------------------- /Resources/TableBase/E_meas.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/E_meas.mat -------------------------------------------------------------------------------- /Resources/TableBase/E_model.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/E_model.mat -------------------------------------------------------------------------------- /Resources/TableBase/T_air.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/T_air.mat -------------------------------------------------------------------------------- /Resources/TableBase/T_out_meas.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/T_out_meas.mat -------------------------------------------------------------------------------- /Resources/TableBase/T_out_model.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/T_out_model.mat -------------------------------------------------------------------------------- /Resources/TableBase/W_air.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/W_air.mat -------------------------------------------------------------------------------- /Resources/TableBase/W_c.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/W_c.mat -------------------------------------------------------------------------------- /Resources/TableBase/W_pf_meas.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/W_pf_meas.mat -------------------------------------------------------------------------------- /Resources/TableBase/W_pf_model.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/W_pf_model.mat -------------------------------------------------------------------------------- /Resources/TableBase/exampleTable.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/exampleTable.mat -------------------------------------------------------------------------------- /Resources/TableBase/omega.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Resources/TableBase/omega.mat -------------------------------------------------------------------------------- /SimCenter.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SimCenter.mo -------------------------------------------------------------------------------- /StaticCycles/Adapters/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Adapters/Check/package.mo -------------------------------------------------------------------------------- /StaticCycles/Adapters/Check/package.order: -------------------------------------------------------------------------------- 1 | TestAdapters 2 | -------------------------------------------------------------------------------- /StaticCycles/Adapters/GainVLE1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Adapters/GainVLE1.mo -------------------------------------------------------------------------------- /StaticCycles/Adapters/GainVLE2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Adapters/GainVLE2.mo -------------------------------------------------------------------------------- /StaticCycles/Adapters/GainVLE3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Adapters/GainVLE3.mo -------------------------------------------------------------------------------- /StaticCycles/Adapters/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Adapters/package.mo -------------------------------------------------------------------------------- /StaticCycles/Adapters/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Adapters/package.order -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Check/package.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Check/package.order: -------------------------------------------------------------------------------- 1 | TestNewBoundaries 2 | -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Dispatcher.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Dispatcher.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/SinkGas_green.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/SinkGas_green.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Sink_blue.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Sink_blue.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Sink_brown.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Sink_brown.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Sink_green.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Sink_green.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Sink_grey.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Sink_grey.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Sink_orange.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Sink_orange.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Sink_red.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Sink_red.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Sink_yellow.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Sink_yellow.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Source_black.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Source_black.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Source_blue.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Source_blue.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Source_brown.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Source_brown.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Source_green.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Source_green.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Source_grey.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Source_grey.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Source_orange.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Source_orange.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Source_purple.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Source_purple.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Source_red.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Source_red.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/Source_yellow.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/Source_yellow.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/package.mo -------------------------------------------------------------------------------- /StaticCycles/Boundaries/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Boundaries/package.order -------------------------------------------------------------------------------- /StaticCycles/Check/TestBoundaries.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Check/TestBoundaries.mo -------------------------------------------------------------------------------- /StaticCycles/Check/TestStacy1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Check/TestStacy1.mo -------------------------------------------------------------------------------- /StaticCycles/Check/TestStacy2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Check/TestStacy2.mo -------------------------------------------------------------------------------- /StaticCycles/Check/TestStacy3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Check/TestStacy3.mo -------------------------------------------------------------------------------- /StaticCycles/Check/TestStacy4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Check/TestStacy4.mo -------------------------------------------------------------------------------- /StaticCycles/Check/TestStacy5.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Check/TestStacy5.mo -------------------------------------------------------------------------------- /StaticCycles/Check/TestStacy6.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Check/TestStacy6.mo -------------------------------------------------------------------------------- /StaticCycles/Check/TestStacy7.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Check/TestStacy7.mo -------------------------------------------------------------------------------- /StaticCycles/Check/TestStacy8.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Check/TestStacy8.mo -------------------------------------------------------------------------------- /StaticCycles/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Check/package.mo -------------------------------------------------------------------------------- /StaticCycles/Check/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Check/package.order -------------------------------------------------------------------------------- /StaticCycles/Fittings/Check/TestMixer4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Check/TestMixer4.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Check/TestSplit7.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Check/TestSplit7.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Check/package.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Check/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Check/package.order -------------------------------------------------------------------------------- /StaticCycles/Fittings/HeaterCooler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/HeaterCooler.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Mixer1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Mixer1.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Mixer2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Mixer2.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Mixer3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Mixer3.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Mixer4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Mixer4.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/MixerGas1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/MixerGas1.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/MixerGas2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/MixerGas2.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Split1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Split1.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Split2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Split2.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Split3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Split3.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Split4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Split4.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Split5.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Split5.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Split6.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Split6.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/Split7.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/Split7.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/SplitGas1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/SplitGas1.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/SplitGas2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/SplitGas2.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/SprayAttemperator.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/SprayAttemperator.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/package.mo -------------------------------------------------------------------------------- /StaticCycles/Fittings/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fittings/package.order -------------------------------------------------------------------------------- /StaticCycles/Fundamentals/PowerSignal_A.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fundamentals/PowerSignal_A.mo -------------------------------------------------------------------------------- /StaticCycles/Fundamentals/PowerSignal_B.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fundamentals/PowerSignal_B.mo -------------------------------------------------------------------------------- /StaticCycles/Fundamentals/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fundamentals/package.mo -------------------------------------------------------------------------------- /StaticCycles/Fundamentals/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Fundamentals/package.order -------------------------------------------------------------------------------- /StaticCycles/Furnace/Boiler_simple.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Furnace/Boiler_simple.mo -------------------------------------------------------------------------------- /StaticCycles/Furnace/Burner1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Furnace/Burner1.mo -------------------------------------------------------------------------------- /StaticCycles/Furnace/Burner2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Furnace/Burner2.mo -------------------------------------------------------------------------------- /StaticCycles/Furnace/FlameRoom1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Furnace/FlameRoom1.mo -------------------------------------------------------------------------------- /StaticCycles/Furnace/FlameRoom2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Furnace/FlameRoom2.mo -------------------------------------------------------------------------------- /StaticCycles/Furnace/FlameRoom3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Furnace/FlameRoom3.mo -------------------------------------------------------------------------------- /StaticCycles/Furnace/FlameRoom_woBundle.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Furnace/FlameRoom_woBundle.mo -------------------------------------------------------------------------------- /StaticCycles/Furnace/TripleFlueGas.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Furnace/TripleFlueGas.mo -------------------------------------------------------------------------------- /StaticCycles/Furnace/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Furnace/package.mo -------------------------------------------------------------------------------- /StaticCycles/Furnace/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Furnace/package.order -------------------------------------------------------------------------------- /StaticCycles/HeatExchanger/Condenser.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/HeatExchanger/Condenser.mo -------------------------------------------------------------------------------- /StaticCycles/HeatExchanger/Preheater1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/HeatExchanger/Preheater1.mo -------------------------------------------------------------------------------- /StaticCycles/HeatExchanger/Preheater2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/HeatExchanger/Preheater2.mo -------------------------------------------------------------------------------- /StaticCycles/HeatExchanger/Reboiler.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/HeatExchanger/Reboiler.mo -------------------------------------------------------------------------------- /StaticCycles/HeatExchanger/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/HeatExchanger/package.mo -------------------------------------------------------------------------------- /StaticCycles/HeatExchanger/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/HeatExchanger/package.order -------------------------------------------------------------------------------- /StaticCycles/Machines/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/Check/package.mo -------------------------------------------------------------------------------- /StaticCycles/Machines/Check/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/Check/package.order -------------------------------------------------------------------------------- /StaticCycles/Machines/Pump1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/Pump1.mo -------------------------------------------------------------------------------- /StaticCycles/Machines/Pump1_mech.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/Pump1_mech.mo -------------------------------------------------------------------------------- /StaticCycles/Machines/Pump1_real.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/Pump1_real.mo -------------------------------------------------------------------------------- /StaticCycles/Machines/Pump2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/Pump2.mo -------------------------------------------------------------------------------- /StaticCycles/Machines/Pump2_mech.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/Pump2_mech.mo -------------------------------------------------------------------------------- /StaticCycles/Machines/Pump2_real.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/Pump2_real.mo -------------------------------------------------------------------------------- /StaticCycles/Machines/Pump3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/Pump3.mo -------------------------------------------------------------------------------- /StaticCycles/Machines/Turbine.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/Turbine.mo -------------------------------------------------------------------------------- /StaticCycles/Machines/Turbine_mech.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/Turbine_mech.mo -------------------------------------------------------------------------------- /StaticCycles/Machines/Turbine_mech2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/Turbine_mech2.mo -------------------------------------------------------------------------------- /StaticCycles/Machines/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/package.mo -------------------------------------------------------------------------------- /StaticCycles/Machines/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Machines/package.order -------------------------------------------------------------------------------- /StaticCycles/Quadruple.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Quadruple.mo -------------------------------------------------------------------------------- /StaticCycles/Sensors/FuelMassFlowSensor.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Sensors/FuelMassFlowSensor.mo -------------------------------------------------------------------------------- /StaticCycles/Sensors/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Sensors/package.mo -------------------------------------------------------------------------------- /StaticCycles/Sensors/package.order: -------------------------------------------------------------------------------- 1 | FuelMassFlowSensor 2 | -------------------------------------------------------------------------------- /StaticCycles/Storage/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Storage/Check/package.mo -------------------------------------------------------------------------------- /StaticCycles/Storage/Check/package.order: -------------------------------------------------------------------------------- 1 | TestSeparator 2 | -------------------------------------------------------------------------------- /StaticCycles/Storage/Feedwatertank3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Storage/Feedwatertank3.mo -------------------------------------------------------------------------------- /StaticCycles/Storage/Feedwatertank4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Storage/Feedwatertank4.mo -------------------------------------------------------------------------------- /StaticCycles/Storage/Separator.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Storage/Separator.mo -------------------------------------------------------------------------------- /StaticCycles/Storage/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Storage/package.mo -------------------------------------------------------------------------------- /StaticCycles/Storage/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Storage/package.order -------------------------------------------------------------------------------- /StaticCycles/Triple.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/Triple.mo -------------------------------------------------------------------------------- /StaticCycles/ValvesConnects/Check/package.order: -------------------------------------------------------------------------------- 1 | TestValve_dp_nom4 2 | -------------------------------------------------------------------------------- /StaticCycles/ValvesConnects/Tube1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/ValvesConnects/Tube1.mo -------------------------------------------------------------------------------- /StaticCycles/ValvesConnects/Tube2.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/ValvesConnects/Tube2.mo -------------------------------------------------------------------------------- /StaticCycles/ValvesConnects/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/ValvesConnects/package.mo -------------------------------------------------------------------------------- /StaticCycles/ValvesConnects/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/ValvesConnects/package.order -------------------------------------------------------------------------------- /StaticCycles/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/package.mo -------------------------------------------------------------------------------- /StaticCycles/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/StaticCycles/package.order -------------------------------------------------------------------------------- /SubSystems/Boiler/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Boiler/Check/package.mo -------------------------------------------------------------------------------- /SubSystems/Boiler/Check/package.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SubSystems/Boiler/CoalSupplyBoiler_base.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Boiler/CoalSupplyBoiler_base.mo -------------------------------------------------------------------------------- /SubSystems/Boiler/Fundamentals/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Boiler/Fundamentals/package.mo -------------------------------------------------------------------------------- /SubSystems/Boiler/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | BoilerSummary 2 | -------------------------------------------------------------------------------- /SubSystems/Boiler/SteamGenerator_L1.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Boiler/SteamGenerator_L1.mo -------------------------------------------------------------------------------- /SubSystems/Boiler/SteamGenerator_L3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Boiler/SteamGenerator_L3.mo -------------------------------------------------------------------------------- /SubSystems/Boiler/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Boiler/package.mo -------------------------------------------------------------------------------- /SubSystems/Boiler/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Boiler/package.order -------------------------------------------------------------------------------- /SubSystems/Furnace/BurnerSlice_L4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Furnace/BurnerSlice_L4.mo -------------------------------------------------------------------------------- /SubSystems/Furnace/ConvectiveSlice_L4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Furnace/ConvectiveSlice_L4.mo -------------------------------------------------------------------------------- /SubSystems/Furnace/FreeboardSlice_L4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Furnace/FreeboardSlice_L4.mo -------------------------------------------------------------------------------- /SubSystems/Furnace/HopperSlice_L4.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Furnace/HopperSlice_L4.mo -------------------------------------------------------------------------------- /SubSystems/Furnace/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Furnace/package.mo -------------------------------------------------------------------------------- /SubSystems/Furnace/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/Furnace/package.order -------------------------------------------------------------------------------- /SubSystems/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/SubSystems/package.mo -------------------------------------------------------------------------------- /SubSystems/package.order: -------------------------------------------------------------------------------- 1 | Boiler 2 | Furnace 3 | -------------------------------------------------------------------------------- /UsersGuide/Contact/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/UsersGuide/Contact/package.mo -------------------------------------------------------------------------------- /UsersGuide/Contact/package.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UsersGuide/GettingStarted/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/UsersGuide/GettingStarted/package.mo -------------------------------------------------------------------------------- /UsersGuide/GettingStarted/package.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UsersGuide/Licence/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/UsersGuide/Licence/package.mo -------------------------------------------------------------------------------- /UsersGuide/Licence/package.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UsersGuide/Revisions/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/UsersGuide/Revisions/package.mo -------------------------------------------------------------------------------- /UsersGuide/Revisions/package.order: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UsersGuide/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/UsersGuide/package.mo -------------------------------------------------------------------------------- /UsersGuide/package.order: -------------------------------------------------------------------------------- 1 | GettingStarted 2 | Revisions 3 | Contact 4 | Licence 5 | -------------------------------------------------------------------------------- /Visualisation/Check/TestDynamicBar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Check/TestDynamicBar.mo -------------------------------------------------------------------------------- /Visualisation/Check/TestDynamicDiagram.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Check/TestDynamicDiagram.mo -------------------------------------------------------------------------------- /Visualisation/Check/TestHEXdisplay.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Check/TestHEXdisplay.mo -------------------------------------------------------------------------------- /Visualisation/Check/TestQuadruple.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Check/TestQuadruple.mo -------------------------------------------------------------------------------- /Visualisation/Check/TestRealDisplay.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Check/TestRealDisplay.mo -------------------------------------------------------------------------------- /Visualisation/Check/TestSixtuple.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Check/TestSixtuple.mo -------------------------------------------------------------------------------- /Visualisation/Check/TestStatePoint.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Check/TestStatePoint.mo -------------------------------------------------------------------------------- /Visualisation/Check/TestXYplot.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Check/TestXYplot.mo -------------------------------------------------------------------------------- /Visualisation/Check/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Check/package.mo -------------------------------------------------------------------------------- /Visualisation/Check/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Check/package.order -------------------------------------------------------------------------------- /Visualisation/DynDisplay.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/DynDisplay.mo -------------------------------------------------------------------------------- /Visualisation/DynamicBar.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/DynamicBar.mo -------------------------------------------------------------------------------- /Visualisation/Fundamentals/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Fundamentals/package.mo -------------------------------------------------------------------------------- /Visualisation/Fundamentals/package.order: -------------------------------------------------------------------------------- 1 | ScalarToVector 2 | -------------------------------------------------------------------------------- /Visualisation/Hexdisplay_3.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Hexdisplay_3.mo -------------------------------------------------------------------------------- /Visualisation/Quadruple.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Quadruple.mo -------------------------------------------------------------------------------- /Visualisation/QuadrupleGas.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/QuadrupleGas.mo -------------------------------------------------------------------------------- /Visualisation/RecycleRate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/RecycleRate.mo -------------------------------------------------------------------------------- /Visualisation/Scope.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Scope.mo -------------------------------------------------------------------------------- /Visualisation/Sixtuple.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/Sixtuple.mo -------------------------------------------------------------------------------- /Visualisation/StatePoint.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/StatePoint.mo -------------------------------------------------------------------------------- /Visualisation/StatePointGas_phTs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/StatePointGas_phTs.mo -------------------------------------------------------------------------------- /Visualisation/StatePoint_ph.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/StatePoint_ph.mo -------------------------------------------------------------------------------- /Visualisation/StatePoint_phTs.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/StatePoint_phTs.mo -------------------------------------------------------------------------------- /Visualisation/TinyBooleanDisplay.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/TinyBooleanDisplay.mo -------------------------------------------------------------------------------- /Visualisation/TinyRealDisplay.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/TinyRealDisplay.mo -------------------------------------------------------------------------------- /Visualisation/XYYplot.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/XYYplot.mo -------------------------------------------------------------------------------- /Visualisation/XYplot.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/XYplot.mo -------------------------------------------------------------------------------- /Visualisation/package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/package.mo -------------------------------------------------------------------------------- /Visualisation/package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/Visualisation/package.order -------------------------------------------------------------------------------- /libraryinfo.mos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/libraryinfo.mos -------------------------------------------------------------------------------- /package.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/package.mo -------------------------------------------------------------------------------- /package.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClaRaLibrary/ClaRa/HEAD/package.order --------------------------------------------------------------------------------