Skip to content

Changes

Summary

  1. Add Modelica Libraries logo for dark mode (details)
  2. Adds animated level on the icon layer of the OpenTank (details)
  3. Fixed Wb_flows discretization terms for DynamicPipe (details)
  4. The dT is a temperature difference, so converting it to celsius shouldn't use an offset. (details)
  5. spliceFunction_der check limits (details)
  6. add description string (details)
  7. Add DynamicPipe energy conservation tests to ModelicaTest (details)
  8. Updated tolerance for energy conservation checks (details)
  9. Improve indentation of html code (details)
  10. Html code: No indentation within 'address' tag (details)
  11. Delete multiple and/or leading whitespaces (details)
  12. Fix unit error in SimpleAir (details)
  13. Use prefix style 'quantity' for MixtureGases.m1 and MixtureGases.m2 (details)
  14. Use SI.Mass instead of specifying 'unit' (details)
  15. Add description string for m1 (details)
  16. Add description string for m2 (details)
  17. Completely remove modifications of 'quantity' (details)
  18. ReferenceMoistAir, corrected error in function pd_pTX_der (issue #3666) (details)
  19. Revert "Introduce Staturation for AirGapDC" (details)
  20. Remove saturation from DCCE model and examle (details)
Commit 6f3f6caf9f0ecfd1c0f90f95559d9ebc8ba34be2 by modelica
Add Modelica Libraries logo for dark mode
The file was modified README.md (diff)
The file was addedModelica/Resources/Images/Logos/Modelica_Libraries_dark.svg
Commit 08e308006b2c76e193b87a1fb4bd29cf6a7d5ea3 by dietmar.winkler
Adds animated level on the icon layer of the OpenTank

Basically implementing the same feature as already present in `Modelica.Fluid.Vessels.OpenTank`
The file was modified Modelica/Thermal/FluidHeatFlow/Components/OpenTank.mo (diff)
Commit 59c418e03abe489c1fa82fa39fece72a213dd0d8 by 11094799+mestinso
Fixed Wb_flows discretization terms for DynamicPipe

- Fixes made for all structure cases: av_b, a_vb, a_v_b, and av_vb
- The new discretizations terms give more accurate derivatives associated with the volumes
- Energy is now properly conserved (previously av_b, a_vb, and a_v_b had conservation errors)
The file was modified Modelica/Fluid/Pipes.mo (diff)
Commit 5a9db5198745fd9dc1be713bda97975c38b0b477 by Hans.Olsson
The dT is a temperature difference, so converting it to celsius shouldn't use an offset.
The file was modified Modelica/Fluid/Examples/HeatExchanger.mo (diff)
Commit 1b0d4501da2b34d882cb91f44a6a17f835cbfda7 by matthis.thorade
spliceFunction_der check limits

there are two if-conditions that used a different value:
1 versus 0.9999999999
this PR makes sure the identical limit is used
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit a53b03fee3da6eac669606536a34dd2066b771ba by matthis.thorade
add description string

and replace tab with spaces
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit 25062d267e4bf5e3f0f5b91001870e83c31ea339 by 11094799+mestinso
Add DynamicPipe energy conservation tests to ModelicaTest
The file was modified ModelicaTest/Fluid/TestComponents/Pipes/package.order (diff)
The file was addedModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck2.mo
The file was addedModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck.mo
Commit bd0777740495ef61a0e74d36763ca117dbdae906 by 11094799+mestinso
Updated tolerance for energy conservation checks
The file was modified ModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck.mo (diff)
Commit 0f8b9f23b9d992567b1a22d7a269097db73f17ea by jakub.tobolar
Improve indentation of html code
The file was modified Modelica/Media/Water/IF97_Utilities.mo (diff)
Commit 9779e2021ba5324635912f7a3898879dfec10761 by jakub.tobolar
Html code: No indentation within 'address' tag

Fix non-matching 'tr' tag and delete '>' added by mistake
The file was modified Modelica/Media/Water/IF97_Utilities.mo (diff)
Commit f8c9eaf4b744e39fc03747e87dafb96e6e7d073c by jakub.tobolar
Delete multiple and/or leading whitespaces
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
The file was modified Modelica/Media/Air/SimpleAir.mo (diff)
Commit e66d5de7cbb6c37ac062bab5a2c4882a0d2a477a by noreply
Fix unit error in SimpleAir
The file was modified Modelica/Media/Air/SimpleAir.mo (diff)
Commit b5dea8c0dd01d3f156e079e8bf744ca85ab8fdf5 by Tidefelt Henrik
Use prefix style 'quantity' for MixtureGases.m1 and MixtureGases.m2

This follows the style in Modelica.Media.Interfaces.PartialMedium.MassFlowRate and give tools a chance of making sense of the quantity.
The file was modified Modelica/Media/package.mo (diff)
Commit d55f0bdc3b2ddcb1fae625712f40b85d4e0da009 by Tidefelt Henrik
Use SI.Mass instead of specifying 'unit'

This is more elegant, and also similar to how it's done in Modelica.Media.Interfaces.PartialMedium.MassFlowRate:
  type MassFlowRate = SI.MassFlowRate(quantity = "MassFlowRate." + mediumName, min = -1.0e5, max = 1.e5)
The file was modified Modelica/Media/package.mo (diff)
Commit fcd4c580c6f559c74530f09d9381320f55bc41bb by noreply
Add description string for m1

Co-authored-by: Thomas Beutlich <modelica@tbeu.de>
The file was modified Modelica/Media/package.mo (diff)
Commit 93841b72972ef7ed0bed984a64666dd28db27198 by noreply
Add description string for m2

Co-authored-by: Thomas Beutlich <modelica@tbeu.de>
The file was modified Modelica/Media/package.mo (diff)
Commit 0bcc98c61ee70beb439a7a0f80d0339bc9ccdd68 by Tidefelt Henrik
Completely remove modifications of 'quantity'
The file was modified Modelica/Media/package.mo (diff)
Commit c07ed57aa50d17daae69ba048b9700a70ddb8603 by modelica
ReferenceMoistAir, corrected error in function pd_pTX_der (issue #3666)
The file was modified Modelica/Media/Air/ReferenceMoistAir.mo (diff)
Commit 856d2b3eabb6a836fe1dcb5f5eb105c9dbcbc8f3 by maximilian.kormann
Revert "Introduce Staturation for AirGapDC"

This reverts commit ac9d3d0171f70731430d3c95128da37b085f05ef.
The file was modified Modelica/Electrical/Machines/BasicMachines/Components/AirGapDC.mo (diff)
Commit f89b36b3bd902f29552d40ee1b22cda7892dc866 by maximilian.kormann
Remove saturation from DCCE model and examle
The file was modified Modelica/Electrical/Machines/BasicMachines/DCMachines/DC_CompoundExcited.mo (diff)
The file was modified Modelica/Electrical/Machines/Examples/DCMachines/DCCE_Generator.mo (diff)
The file was modified Modelica/Electrical/Machines/Utilities/ParameterRecords/DcCompoundExcitedData.mo (diff)

Summary

  1. Add Modelica Libraries logo for dark mode (details)
  2. Adds animated level on the icon layer of the OpenTank (details)
  3. Fixed Wb_flows discretization terms for DynamicPipe (details)
  4. The dT is a temperature difference, so converting it to celsius shouldn't use an offset. (details)
  5. spliceFunction_der check limits (details)
  6. add description string (details)
  7. Add DynamicPipe energy conservation tests to ModelicaTest (details)
  8. Updated tolerance for energy conservation checks (details)
  9. Improve indentation of html code (details)
  10. Html code: No indentation within 'address' tag (details)
  11. Delete multiple and/or leading whitespaces (details)
  12. Fix unit error in SimpleAir (details)
  13. Use prefix style 'quantity' for MixtureGases.m1 and MixtureGases.m2 (details)
  14. Use SI.Mass instead of specifying 'unit' (details)
  15. Add description string for m1 (details)
  16. Add description string for m2 (details)
  17. Completely remove modifications of 'quantity' (details)
  18. ReferenceMoistAir, corrected error in function pd_pTX_der (issue #3666) (details)
  19. Revert "Introduce Staturation for AirGapDC" (details)
  20. Remove saturation from DCCE model and examle (details)
Commit 6f3f6caf9f0ecfd1c0f90f95559d9ebc8ba34be2 by modelica
Add Modelica Libraries logo for dark mode
The file was modified README.md (diff)
The file was addedModelica/Resources/Images/Logos/Modelica_Libraries_dark.svg
Commit 08e308006b2c76e193b87a1fb4bd29cf6a7d5ea3 by dietmar.winkler
Adds animated level on the icon layer of the OpenTank

Basically implementing the same feature as already present in `Modelica.Fluid.Vessels.OpenTank`
The file was modified Modelica/Thermal/FluidHeatFlow/Components/OpenTank.mo (diff)
Commit 59c418e03abe489c1fa82fa39fece72a213dd0d8 by 11094799+mestinso
Fixed Wb_flows discretization terms for DynamicPipe

- Fixes made for all structure cases: av_b, a_vb, a_v_b, and av_vb
- The new discretizations terms give more accurate derivatives associated with the volumes
- Energy is now properly conserved (previously av_b, a_vb, and a_v_b had conservation errors)
The file was modified Modelica/Fluid/Pipes.mo (diff)
Commit 5a9db5198745fd9dc1be713bda97975c38b0b477 by Hans.Olsson
The dT is a temperature difference, so converting it to celsius shouldn't use an offset.
The file was modified Modelica/Fluid/Examples/HeatExchanger.mo (diff)
Commit 1b0d4501da2b34d882cb91f44a6a17f835cbfda7 by matthis.thorade
spliceFunction_der check limits

there are two if-conditions that used a different value:
1 versus 0.9999999999
this PR makes sure the identical limit is used
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit a53b03fee3da6eac669606536a34dd2066b771ba by matthis.thorade
add description string

and replace tab with spaces
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit 25062d267e4bf5e3f0f5b91001870e83c31ea339 by 11094799+mestinso
Add DynamicPipe energy conservation tests to ModelicaTest
The file was addedModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck.mo
The file was addedModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck2.mo
The file was modified ModelicaTest/Fluid/TestComponents/Pipes/package.order (diff)
Commit bd0777740495ef61a0e74d36763ca117dbdae906 by 11094799+mestinso
Updated tolerance for energy conservation checks
The file was modified ModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck.mo (diff)
Commit 0f8b9f23b9d992567b1a22d7a269097db73f17ea by jakub.tobolar
Improve indentation of html code
The file was modified Modelica/Media/Water/IF97_Utilities.mo (diff)
Commit 9779e2021ba5324635912f7a3898879dfec10761 by jakub.tobolar
Html code: No indentation within 'address' tag

Fix non-matching 'tr' tag and delete '>' added by mistake
The file was modified Modelica/Media/Water/IF97_Utilities.mo (diff)
Commit f8c9eaf4b744e39fc03747e87dafb96e6e7d073c by jakub.tobolar
Delete multiple and/or leading whitespaces
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
The file was modified Modelica/Media/Air/SimpleAir.mo (diff)
Commit e66d5de7cbb6c37ac062bab5a2c4882a0d2a477a by noreply
Fix unit error in SimpleAir
The file was modified Modelica/Media/Air/SimpleAir.mo (diff)
Commit b5dea8c0dd01d3f156e079e8bf744ca85ab8fdf5 by Tidefelt Henrik
Use prefix style 'quantity' for MixtureGases.m1 and MixtureGases.m2

This follows the style in Modelica.Media.Interfaces.PartialMedium.MassFlowRate and give tools a chance of making sense of the quantity.
The file was modified Modelica/Media/package.mo (diff)
Commit d55f0bdc3b2ddcb1fae625712f40b85d4e0da009 by Tidefelt Henrik
Use SI.Mass instead of specifying 'unit'

This is more elegant, and also similar to how it's done in Modelica.Media.Interfaces.PartialMedium.MassFlowRate:
  type MassFlowRate = SI.MassFlowRate(quantity = "MassFlowRate." + mediumName, min = -1.0e5, max = 1.e5)
The file was modified Modelica/Media/package.mo (diff)
Commit fcd4c580c6f559c74530f09d9381320f55bc41bb by noreply
Add description string for m1

Co-authored-by: Thomas Beutlich <modelica@tbeu.de>
The file was modified Modelica/Media/package.mo (diff)
Commit 93841b72972ef7ed0bed984a64666dd28db27198 by noreply
Add description string for m2

Co-authored-by: Thomas Beutlich <modelica@tbeu.de>
The file was modified Modelica/Media/package.mo (diff)
Commit 0bcc98c61ee70beb439a7a0f80d0339bc9ccdd68 by Tidefelt Henrik
Completely remove modifications of 'quantity'
The file was modified Modelica/Media/package.mo (diff)
Commit c07ed57aa50d17daae69ba048b9700a70ddb8603 by modelica
ReferenceMoistAir, corrected error in function pd_pTX_der (issue #3666)
The file was modified Modelica/Media/Air/ReferenceMoistAir.mo (diff)
Commit 856d2b3eabb6a836fe1dcb5f5eb105c9dbcbc8f3 by maximilian.kormann
Revert "Introduce Staturation for AirGapDC"

This reverts commit ac9d3d0171f70731430d3c95128da37b085f05ef.
The file was modified Modelica/Electrical/Machines/BasicMachines/Components/AirGapDC.mo (diff)
Commit f89b36b3bd902f29552d40ee1b22cda7892dc866 by maximilian.kormann
Remove saturation from DCCE model and examle
The file was modified Modelica/Electrical/Machines/BasicMachines/DCMachines/DC_CompoundExcited.mo (diff)
The file was modified Modelica/Electrical/Machines/Utilities/ParameterRecords/DcCompoundExcitedData.mo (diff)
The file was modified Modelica/Electrical/Machines/Examples/DCMachines/DCCE_Generator.mo (diff)

Summary

  1. Add Modelica Libraries logo for dark mode (details)
  2. Adds animated level on the icon layer of the OpenTank (details)
  3. Fixed Wb_flows discretization terms for DynamicPipe (details)
  4. The dT is a temperature difference, so converting it to celsius shouldn't use an offset. (details)
  5. spliceFunction_der check limits (details)
  6. add description string (details)
  7. Add DynamicPipe energy conservation tests to ModelicaTest (details)
  8. Updated tolerance for energy conservation checks (details)
  9. Improve indentation of html code (details)
  10. Html code: No indentation within 'address' tag (details)
  11. Delete multiple and/or leading whitespaces (details)
  12. Fix unit error in SimpleAir (details)
  13. Use prefix style 'quantity' for MixtureGases.m1 and MixtureGases.m2 (details)
  14. Use SI.Mass instead of specifying 'unit' (details)
  15. Add description string for m1 (details)
  16. Add description string for m2 (details)
  17. Completely remove modifications of 'quantity' (details)
  18. ReferenceMoistAir, corrected error in function pd_pTX_der (issue #3666) (details)
  19. Revert "Introduce Staturation for AirGapDC" (details)
  20. Remove saturation from DCCE model and examle (details)
Commit 6f3f6caf9f0ecfd1c0f90f95559d9ebc8ba34be2 by modelica
Add Modelica Libraries logo for dark mode
The file was modified README.md (diff)
The file was addedModelica/Resources/Images/Logos/Modelica_Libraries_dark.svg
Commit 08e308006b2c76e193b87a1fb4bd29cf6a7d5ea3 by dietmar.winkler
Adds animated level on the icon layer of the OpenTank

Basically implementing the same feature as already present in `Modelica.Fluid.Vessels.OpenTank`
The file was modified Modelica/Thermal/FluidHeatFlow/Components/OpenTank.mo (diff)
Commit 59c418e03abe489c1fa82fa39fece72a213dd0d8 by 11094799+mestinso
Fixed Wb_flows discretization terms for DynamicPipe

- Fixes made for all structure cases: av_b, a_vb, a_v_b, and av_vb
- The new discretizations terms give more accurate derivatives associated with the volumes
- Energy is now properly conserved (previously av_b, a_vb, and a_v_b had conservation errors)
The file was modified Modelica/Fluid/Pipes.mo (diff)
Commit 5a9db5198745fd9dc1be713bda97975c38b0b477 by Hans.Olsson
The dT is a temperature difference, so converting it to celsius shouldn't use an offset.
The file was modified Modelica/Fluid/Examples/HeatExchanger.mo (diff)
Commit 1b0d4501da2b34d882cb91f44a6a17f835cbfda7 by matthis.thorade
spliceFunction_der check limits

there are two if-conditions that used a different value:
1 versus 0.9999999999
this PR makes sure the identical limit is used
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit a53b03fee3da6eac669606536a34dd2066b771ba by matthis.thorade
add description string

and replace tab with spaces
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit 25062d267e4bf5e3f0f5b91001870e83c31ea339 by 11094799+mestinso
Add DynamicPipe energy conservation tests to ModelicaTest
The file was modified ModelicaTest/Fluid/TestComponents/Pipes/package.order (diff)
The file was addedModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck.mo
The file was addedModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck2.mo
Commit bd0777740495ef61a0e74d36763ca117dbdae906 by 11094799+mestinso
Updated tolerance for energy conservation checks
The file was modified ModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck.mo (diff)
Commit 0f8b9f23b9d992567b1a22d7a269097db73f17ea by jakub.tobolar
Improve indentation of html code
The file was modified Modelica/Media/Water/IF97_Utilities.mo (diff)
Commit 9779e2021ba5324635912f7a3898879dfec10761 by jakub.tobolar
Html code: No indentation within 'address' tag

Fix non-matching 'tr' tag and delete '>' added by mistake
The file was modified Modelica/Media/Water/IF97_Utilities.mo (diff)
Commit f8c9eaf4b744e39fc03747e87dafb96e6e7d073c by jakub.tobolar
Delete multiple and/or leading whitespaces
The file was modified Modelica/Media/Air/SimpleAir.mo (diff)
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit e66d5de7cbb6c37ac062bab5a2c4882a0d2a477a by noreply
Fix unit error in SimpleAir
The file was modified Modelica/Media/Air/SimpleAir.mo (diff)
Commit b5dea8c0dd01d3f156e079e8bf744ca85ab8fdf5 by Tidefelt Henrik
Use prefix style 'quantity' for MixtureGases.m1 and MixtureGases.m2

This follows the style in Modelica.Media.Interfaces.PartialMedium.MassFlowRate and give tools a chance of making sense of the quantity.
The file was modified Modelica/Media/package.mo (diff)
Commit d55f0bdc3b2ddcb1fae625712f40b85d4e0da009 by Tidefelt Henrik
Use SI.Mass instead of specifying 'unit'

This is more elegant, and also similar to how it's done in Modelica.Media.Interfaces.PartialMedium.MassFlowRate:
  type MassFlowRate = SI.MassFlowRate(quantity = "MassFlowRate." + mediumName, min = -1.0e5, max = 1.e5)
The file was modified Modelica/Media/package.mo (diff)
Commit fcd4c580c6f559c74530f09d9381320f55bc41bb by noreply
Add description string for m1

Co-authored-by: Thomas Beutlich <modelica@tbeu.de>
The file was modified Modelica/Media/package.mo (diff)
Commit 93841b72972ef7ed0bed984a64666dd28db27198 by noreply
Add description string for m2

Co-authored-by: Thomas Beutlich <modelica@tbeu.de>
The file was modified Modelica/Media/package.mo (diff)
Commit 0bcc98c61ee70beb439a7a0f80d0339bc9ccdd68 by Tidefelt Henrik
Completely remove modifications of 'quantity'
The file was modified Modelica/Media/package.mo (diff)
Commit c07ed57aa50d17daae69ba048b9700a70ddb8603 by modelica
ReferenceMoistAir, corrected error in function pd_pTX_der (issue #3666)
The file was modified Modelica/Media/Air/ReferenceMoistAir.mo (diff)
Commit 856d2b3eabb6a836fe1dcb5f5eb105c9dbcbc8f3 by maximilian.kormann
Revert "Introduce Staturation for AirGapDC"

This reverts commit ac9d3d0171f70731430d3c95128da37b085f05ef.
The file was modified Modelica/Electrical/Machines/BasicMachines/Components/AirGapDC.mo (diff)
Commit f89b36b3bd902f29552d40ee1b22cda7892dc866 by maximilian.kormann
Remove saturation from DCCE model and examle
The file was modified Modelica/Electrical/Machines/BasicMachines/DCMachines/DC_CompoundExcited.mo (diff)
The file was modified Modelica/Electrical/Machines/Examples/DCMachines/DCCE_Generator.mo (diff)
The file was modified Modelica/Electrical/Machines/Utilities/ParameterRecords/DcCompoundExcitedData.mo (diff)

Summary

  1. Add Modelica Libraries logo for dark mode (details)
  2. Adds animated level on the icon layer of the OpenTank (details)
  3. Fixed Wb_flows discretization terms for DynamicPipe (details)
  4. The dT is a temperature difference, so converting it to celsius shouldn't use an offset. (details)
  5. spliceFunction_der check limits (details)
  6. add description string (details)
  7. Add DynamicPipe energy conservation tests to ModelicaTest (details)
  8. Updated tolerance for energy conservation checks (details)
  9. Improve indentation of html code (details)
  10. Html code: No indentation within 'address' tag (details)
  11. Delete multiple and/or leading whitespaces (details)
  12. Fix unit error in SimpleAir (details)
  13. Use prefix style 'quantity' for MixtureGases.m1 and MixtureGases.m2 (details)
  14. Use SI.Mass instead of specifying 'unit' (details)
  15. Add description string for m1 (details)
  16. Add description string for m2 (details)
  17. Completely remove modifications of 'quantity' (details)
  18. ReferenceMoistAir, corrected error in function pd_pTX_der (issue #3666) (details)
  19. Revert "Introduce Staturation for AirGapDC" (details)
  20. Remove saturation from DCCE model and examle (details)
Commit 6f3f6caf9f0ecfd1c0f90f95559d9ebc8ba34be2 by modelica
Add Modelica Libraries logo for dark mode
The file was addedModelica/Resources/Images/Logos/Modelica_Libraries_dark.svg
The file was modified README.md (diff)
Commit 08e308006b2c76e193b87a1fb4bd29cf6a7d5ea3 by dietmar.winkler
Adds animated level on the icon layer of the OpenTank

Basically implementing the same feature as already present in `Modelica.Fluid.Vessels.OpenTank`
The file was modified Modelica/Thermal/FluidHeatFlow/Components/OpenTank.mo (diff)
Commit 59c418e03abe489c1fa82fa39fece72a213dd0d8 by 11094799+mestinso
Fixed Wb_flows discretization terms for DynamicPipe

- Fixes made for all structure cases: av_b, a_vb, a_v_b, and av_vb
- The new discretizations terms give more accurate derivatives associated with the volumes
- Energy is now properly conserved (previously av_b, a_vb, and a_v_b had conservation errors)
The file was modified Modelica/Fluid/Pipes.mo (diff)
Commit 5a9db5198745fd9dc1be713bda97975c38b0b477 by Hans.Olsson
The dT is a temperature difference, so converting it to celsius shouldn't use an offset.
The file was modified Modelica/Fluid/Examples/HeatExchanger.mo (diff)
Commit 1b0d4501da2b34d882cb91f44a6a17f835cbfda7 by matthis.thorade
spliceFunction_der check limits

there are two if-conditions that used a different value:
1 versus 0.9999999999
this PR makes sure the identical limit is used
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit a53b03fee3da6eac669606536a34dd2066b771ba by matthis.thorade
add description string

and replace tab with spaces
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit 25062d267e4bf5e3f0f5b91001870e83c31ea339 by 11094799+mestinso
Add DynamicPipe energy conservation tests to ModelicaTest
The file was addedModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck.mo
The file was modified ModelicaTest/Fluid/TestComponents/Pipes/package.order (diff)
The file was addedModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck2.mo
Commit bd0777740495ef61a0e74d36763ca117dbdae906 by 11094799+mestinso
Updated tolerance for energy conservation checks
The file was modified ModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck.mo (diff)
Commit 0f8b9f23b9d992567b1a22d7a269097db73f17ea by jakub.tobolar
Improve indentation of html code
The file was modified Modelica/Media/Water/IF97_Utilities.mo (diff)
Commit 9779e2021ba5324635912f7a3898879dfec10761 by jakub.tobolar
Html code: No indentation within 'address' tag

Fix non-matching 'tr' tag and delete '>' added by mistake
The file was modified Modelica/Media/Water/IF97_Utilities.mo (diff)
Commit f8c9eaf4b744e39fc03747e87dafb96e6e7d073c by jakub.tobolar
Delete multiple and/or leading whitespaces
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
The file was modified Modelica/Media/Air/SimpleAir.mo (diff)
Commit e66d5de7cbb6c37ac062bab5a2c4882a0d2a477a by noreply
Fix unit error in SimpleAir
The file was modified Modelica/Media/Air/SimpleAir.mo (diff)
Commit b5dea8c0dd01d3f156e079e8bf744ca85ab8fdf5 by Tidefelt Henrik
Use prefix style 'quantity' for MixtureGases.m1 and MixtureGases.m2

This follows the style in Modelica.Media.Interfaces.PartialMedium.MassFlowRate and give tools a chance of making sense of the quantity.
The file was modified Modelica/Media/package.mo (diff)
Commit d55f0bdc3b2ddcb1fae625712f40b85d4e0da009 by Tidefelt Henrik
Use SI.Mass instead of specifying 'unit'

This is more elegant, and also similar to how it's done in Modelica.Media.Interfaces.PartialMedium.MassFlowRate:
  type MassFlowRate = SI.MassFlowRate(quantity = "MassFlowRate." + mediumName, min = -1.0e5, max = 1.e5)
The file was modified Modelica/Media/package.mo (diff)
Commit fcd4c580c6f559c74530f09d9381320f55bc41bb by noreply
Add description string for m1

Co-authored-by: Thomas Beutlich <modelica@tbeu.de>
The file was modified Modelica/Media/package.mo (diff)
Commit 93841b72972ef7ed0bed984a64666dd28db27198 by noreply
Add description string for m2

Co-authored-by: Thomas Beutlich <modelica@tbeu.de>
The file was modified Modelica/Media/package.mo (diff)
Commit 0bcc98c61ee70beb439a7a0f80d0339bc9ccdd68 by Tidefelt Henrik
Completely remove modifications of 'quantity'
The file was modified Modelica/Media/package.mo (diff)
Commit c07ed57aa50d17daae69ba048b9700a70ddb8603 by modelica
ReferenceMoistAir, corrected error in function pd_pTX_der (issue #3666)
The file was modified Modelica/Media/Air/ReferenceMoistAir.mo (diff)
Commit 856d2b3eabb6a836fe1dcb5f5eb105c9dbcbc8f3 by maximilian.kormann
Revert "Introduce Staturation for AirGapDC"

This reverts commit ac9d3d0171f70731430d3c95128da37b085f05ef.
The file was modified Modelica/Electrical/Machines/BasicMachines/Components/AirGapDC.mo (diff)
Commit f89b36b3bd902f29552d40ee1b22cda7892dc866 by maximilian.kormann
Remove saturation from DCCE model and examle
The file was modified Modelica/Electrical/Machines/Examples/DCMachines/DCCE_Generator.mo (diff)
The file was modified Modelica/Electrical/Machines/BasicMachines/DCMachines/DC_CompoundExcited.mo (diff)
The file was modified Modelica/Electrical/Machines/Utilities/ParameterRecords/DcCompoundExcitedData.mo (diff)

Summary

  1. Add Modelica Libraries logo for dark mode (details)
  2. Adds animated level on the icon layer of the OpenTank (details)
  3. Fixed Wb_flows discretization terms for DynamicPipe (details)
  4. The dT is a temperature difference, so converting it to celsius shouldn't use an offset. (details)
  5. spliceFunction_der check limits (details)
  6. add description string (details)
  7. Add DynamicPipe energy conservation tests to ModelicaTest (details)
  8. Updated tolerance for energy conservation checks (details)
  9. Improve indentation of html code (details)
  10. Html code: No indentation within 'address' tag (details)
  11. Delete multiple and/or leading whitespaces (details)
  12. Fix unit error in SimpleAir (details)
  13. Use prefix style 'quantity' for MixtureGases.m1 and MixtureGases.m2 (details)
  14. Use SI.Mass instead of specifying 'unit' (details)
  15. Add description string for m1 (details)
  16. Add description string for m2 (details)
  17. Completely remove modifications of 'quantity' (details)
  18. ReferenceMoistAir, corrected error in function pd_pTX_der (issue #3666) (details)
  19. Revert "Introduce Staturation for AirGapDC" (details)
  20. Remove saturation from DCCE model and examle (details)
Commit 6f3f6caf9f0ecfd1c0f90f95559d9ebc8ba34be2 by modelica
Add Modelica Libraries logo for dark mode
The file was modified README.md (diff)
The file was addedModelica/Resources/Images/Logos/Modelica_Libraries_dark.svg
Commit 08e308006b2c76e193b87a1fb4bd29cf6a7d5ea3 by dietmar.winkler
Adds animated level on the icon layer of the OpenTank

Basically implementing the same feature as already present in `Modelica.Fluid.Vessels.OpenTank`
The file was modified Modelica/Thermal/FluidHeatFlow/Components/OpenTank.mo (diff)
Commit 59c418e03abe489c1fa82fa39fece72a213dd0d8 by 11094799+mestinso
Fixed Wb_flows discretization terms for DynamicPipe

- Fixes made for all structure cases: av_b, a_vb, a_v_b, and av_vb
- The new discretizations terms give more accurate derivatives associated with the volumes
- Energy is now properly conserved (previously av_b, a_vb, and a_v_b had conservation errors)
The file was modified Modelica/Fluid/Pipes.mo (diff)
Commit 5a9db5198745fd9dc1be713bda97975c38b0b477 by Hans.Olsson
The dT is a temperature difference, so converting it to celsius shouldn't use an offset.
The file was modified Modelica/Fluid/Examples/HeatExchanger.mo (diff)
Commit 1b0d4501da2b34d882cb91f44a6a17f835cbfda7 by matthis.thorade
spliceFunction_der check limits

there are two if-conditions that used a different value:
1 versus 0.9999999999
this PR makes sure the identical limit is used
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit a53b03fee3da6eac669606536a34dd2066b771ba by matthis.thorade
add description string

and replace tab with spaces
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit 25062d267e4bf5e3f0f5b91001870e83c31ea339 by 11094799+mestinso
Add DynamicPipe energy conservation tests to ModelicaTest
The file was addedModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck2.mo
The file was modified ModelicaTest/Fluid/TestComponents/Pipes/package.order (diff)
The file was addedModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck.mo
Commit bd0777740495ef61a0e74d36763ca117dbdae906 by 11094799+mestinso
Updated tolerance for energy conservation checks
The file was modified ModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck.mo (diff)
Commit 0f8b9f23b9d992567b1a22d7a269097db73f17ea by jakub.tobolar
Improve indentation of html code
The file was modified Modelica/Media/Water/IF97_Utilities.mo (diff)
Commit 9779e2021ba5324635912f7a3898879dfec10761 by jakub.tobolar
Html code: No indentation within 'address' tag

Fix non-matching 'tr' tag and delete '>' added by mistake
The file was modified Modelica/Media/Water/IF97_Utilities.mo (diff)
Commit f8c9eaf4b744e39fc03747e87dafb96e6e7d073c by jakub.tobolar
Delete multiple and/or leading whitespaces
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
The file was modified Modelica/Media/Air/SimpleAir.mo (diff)
Commit e66d5de7cbb6c37ac062bab5a2c4882a0d2a477a by noreply
Fix unit error in SimpleAir
The file was modified Modelica/Media/Air/SimpleAir.mo (diff)
Commit b5dea8c0dd01d3f156e079e8bf744ca85ab8fdf5 by Tidefelt Henrik
Use prefix style 'quantity' for MixtureGases.m1 and MixtureGases.m2

This follows the style in Modelica.Media.Interfaces.PartialMedium.MassFlowRate and give tools a chance of making sense of the quantity.
The file was modified Modelica/Media/package.mo (diff)
Commit d55f0bdc3b2ddcb1fae625712f40b85d4e0da009 by Tidefelt Henrik
Use SI.Mass instead of specifying 'unit'

This is more elegant, and also similar to how it's done in Modelica.Media.Interfaces.PartialMedium.MassFlowRate:
  type MassFlowRate = SI.MassFlowRate(quantity = "MassFlowRate." + mediumName, min = -1.0e5, max = 1.e5)
The file was modified Modelica/Media/package.mo (diff)
Commit fcd4c580c6f559c74530f09d9381320f55bc41bb by noreply
Add description string for m1

Co-authored-by: Thomas Beutlich <modelica@tbeu.de>
The file was modified Modelica/Media/package.mo (diff)
Commit 93841b72972ef7ed0bed984a64666dd28db27198 by noreply
Add description string for m2

Co-authored-by: Thomas Beutlich <modelica@tbeu.de>
The file was modified Modelica/Media/package.mo (diff)
Commit 0bcc98c61ee70beb439a7a0f80d0339bc9ccdd68 by Tidefelt Henrik
Completely remove modifications of 'quantity'
The file was modified Modelica/Media/package.mo (diff)
Commit c07ed57aa50d17daae69ba048b9700a70ddb8603 by modelica
ReferenceMoistAir, corrected error in function pd_pTX_der (issue #3666)
The file was modified Modelica/Media/Air/ReferenceMoistAir.mo (diff)
Commit 856d2b3eabb6a836fe1dcb5f5eb105c9dbcbc8f3 by maximilian.kormann
Revert "Introduce Staturation for AirGapDC"

This reverts commit ac9d3d0171f70731430d3c95128da37b085f05ef.
The file was modified Modelica/Electrical/Machines/BasicMachines/Components/AirGapDC.mo (diff)
Commit f89b36b3bd902f29552d40ee1b22cda7892dc866 by maximilian.kormann
Remove saturation from DCCE model and examle
The file was modified Modelica/Electrical/Machines/BasicMachines/DCMachines/DC_CompoundExcited.mo (diff)
The file was modified Modelica/Electrical/Machines/Examples/DCMachines/DCCE_Generator.mo (diff)
The file was modified Modelica/Electrical/Machines/Utilities/ParameterRecords/DcCompoundExcitedData.mo (diff)

Summary

  1. Add Modelica Libraries logo for dark mode (details)
  2. Adds animated level on the icon layer of the OpenTank (details)
  3. Fixed Wb_flows discretization terms for DynamicPipe (details)
  4. The dT is a temperature difference, so converting it to celsius shouldn't use an offset. (details)
  5. spliceFunction_der check limits (details)
  6. add description string (details)
  7. Add DynamicPipe energy conservation tests to ModelicaTest (details)
  8. Updated tolerance for energy conservation checks (details)
  9. Improve indentation of html code (details)
  10. Html code: No indentation within 'address' tag (details)
  11. Delete multiple and/or leading whitespaces (details)
  12. Fix unit error in SimpleAir (details)
  13. Use prefix style 'quantity' for MixtureGases.m1 and MixtureGases.m2 (details)
  14. Use SI.Mass instead of specifying 'unit' (details)
  15. Add description string for m1 (details)
  16. Add description string for m2 (details)
  17. Completely remove modifications of 'quantity' (details)
  18. ReferenceMoistAir, corrected error in function pd_pTX_der (issue #3666) (details)
  19. Revert "Introduce Staturation for AirGapDC" (details)
  20. Remove saturation from DCCE model and examle (details)
Commit 6f3f6caf9f0ecfd1c0f90f95559d9ebc8ba34be2 by modelica
Add Modelica Libraries logo for dark mode
The file was modified README.md (diff)
The file was addedModelica/Resources/Images/Logos/Modelica_Libraries_dark.svg
Commit 08e308006b2c76e193b87a1fb4bd29cf6a7d5ea3 by dietmar.winkler
Adds animated level on the icon layer of the OpenTank

Basically implementing the same feature as already present in `Modelica.Fluid.Vessels.OpenTank`
The file was modified Modelica/Thermal/FluidHeatFlow/Components/OpenTank.mo (diff)
Commit 59c418e03abe489c1fa82fa39fece72a213dd0d8 by 11094799+mestinso
Fixed Wb_flows discretization terms for DynamicPipe

- Fixes made for all structure cases: av_b, a_vb, a_v_b, and av_vb
- The new discretizations terms give more accurate derivatives associated with the volumes
- Energy is now properly conserved (previously av_b, a_vb, and a_v_b had conservation errors)
The file was modified Modelica/Fluid/Pipes.mo (diff)
Commit 5a9db5198745fd9dc1be713bda97975c38b0b477 by Hans.Olsson
The dT is a temperature difference, so converting it to celsius shouldn't use an offset.
The file was modified Modelica/Fluid/Examples/HeatExchanger.mo (diff)
Commit 1b0d4501da2b34d882cb91f44a6a17f835cbfda7 by matthis.thorade
spliceFunction_der check limits

there are two if-conditions that used a different value:
1 versus 0.9999999999
this PR makes sure the identical limit is used
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit a53b03fee3da6eac669606536a34dd2066b771ba by matthis.thorade
add description string

and replace tab with spaces
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit 25062d267e4bf5e3f0f5b91001870e83c31ea339 by 11094799+mestinso
Add DynamicPipe energy conservation tests to ModelicaTest
The file was addedModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck.mo
The file was modified ModelicaTest/Fluid/TestComponents/Pipes/package.order (diff)
The file was addedModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck2.mo
Commit bd0777740495ef61a0e74d36763ca117dbdae906 by 11094799+mestinso
Updated tolerance for energy conservation checks
The file was modified ModelicaTest/Fluid/TestComponents/Pipes/DynamicPipeEnergyConservationCheck.mo (diff)
Commit 0f8b9f23b9d992567b1a22d7a269097db73f17ea by jakub.tobolar
Improve indentation of html code
The file was modified Modelica/Media/Water/IF97_Utilities.mo (diff)
Commit 9779e2021ba5324635912f7a3898879dfec10761 by jakub.tobolar
Html code: No indentation within 'address' tag

Fix non-matching 'tr' tag and delete '>' added by mistake
The file was modified Modelica/Media/Water/IF97_Utilities.mo (diff)
Commit f8c9eaf4b744e39fc03747e87dafb96e6e7d073c by jakub.tobolar
Delete multiple and/or leading whitespaces
The file was modified Modelica/Media/Air/SimpleAir.mo (diff)
The file was modified Modelica/Media/Air/MoistAir.mo (diff)
Commit e66d5de7cbb6c37ac062bab5a2c4882a0d2a477a by noreply
Fix unit error in SimpleAir
The file was modified Modelica/Media/Air/SimpleAir.mo (diff)
Commit b5dea8c0dd01d3f156e079e8bf744ca85ab8fdf5 by Tidefelt Henrik
Use prefix style 'quantity' for MixtureGases.m1 and MixtureGases.m2

This follows the style in Modelica.Media.Interfaces.PartialMedium.MassFlowRate and give tools a chance of making sense of the quantity.
The file was modified Modelica/Media/package.mo (diff)
Commit d55f0bdc3b2ddcb1fae625712f40b85d4e0da009 by Tidefelt Henrik
Use SI.Mass instead of specifying 'unit'

This is more elegant, and also similar to how it's done in Modelica.Media.Interfaces.PartialMedium.MassFlowRate:
  type MassFlowRate = SI.MassFlowRate(quantity = "MassFlowRate." + mediumName, min = -1.0e5, max = 1.e5)
The file was modified Modelica/Media/package.mo (diff)
Commit fcd4c580c6f559c74530f09d9381320f55bc41bb by noreply
Add description string for m1

Co-authored-by: Thomas Beutlich <modelica@tbeu.de>
The file was modified Modelica/Media/package.mo (diff)
Commit 93841b72972ef7ed0bed984a64666dd28db27198 by noreply
Add description string for m2

Co-authored-by: Thomas Beutlich <modelica@tbeu.de>
The file was modified Modelica/Media/package.mo (diff)
Commit 0bcc98c61ee70beb439a7a0f80d0339bc9ccdd68 by Tidefelt Henrik
Completely remove modifications of 'quantity'
The file was modified Modelica/Media/package.mo (diff)
Commit c07ed57aa50d17daae69ba048b9700a70ddb8603 by modelica
ReferenceMoistAir, corrected error in function pd_pTX_der (issue #3666)
The file was modified Modelica/Media/Air/ReferenceMoistAir.mo (diff)
Commit 856d2b3eabb6a836fe1dcb5f5eb105c9dbcbc8f3 by maximilian.kormann
Revert "Introduce Staturation for AirGapDC"

This reverts commit ac9d3d0171f70731430d3c95128da37b085f05ef.
The file was modified Modelica/Electrical/Machines/BasicMachines/Components/AirGapDC.mo (diff)
Commit f89b36b3bd902f29552d40ee1b22cda7892dc866 by maximilian.kormann
Remove saturation from DCCE model and examle
The file was modified Modelica/Electrical/Machines/BasicMachines/DCMachines/DC_CompoundExcited.mo (diff)
The file was modified Modelica/Electrical/Machines/Examples/DCMachines/DCCE_Generator.mo (diff)
The file was modified Modelica/Electrical/Machines/Utilities/ParameterRecords/DcCompoundExcitedData.mo (diff)