feat : dev convection

This commit is contained in:
2026-02-12 11:19:34 +01:00
parent 3a189c76d9
commit b81a6d443b
4 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
within OTRERA_formation.Components;
model Convection_with_Element1D
extends Modelica.Thermal.HeatTransfer.Interfaces.Element1D ;
//USER DEFINED PARAMETERS
parameter Modelica.Units.SI.Area S=0.0 "Exchange area between fluid and solid" ;
parameter Modelica.Units.SI.CoefficientOfHeatTransfer h = 0.0 "Convective heat transfer coefficient";
//INTERNAL VARIABLES
//IMPORTED COMPONENTS
equation
Q_flow = h * S * dT ;
//Port handover
end Convection_with_Element1D;