Skip to content
Snippets Groups Projects
Commit 56a858e5 authored by Tom Fischer's avatar Tom Fischer
Browse files

[T] Use parameter type in MPL::Property.

parent 761e6680
No related branches found
No related tags found
No related merge requests found
...@@ -12,9 +12,6 @@ ...@@ -12,9 +12,6 @@
<temperature>T</temperature> <temperature>T</temperature>
<pressure>p</pressure> <pressure>p</pressure>
</process_variables> </process_variables>
<density_solid>rho_solid</density_solid>
<specific_heat_capacity_solid>c_p</specific_heat_capacity_solid>
<thermal_conductivity_solid>lambda</thermal_conductivity_solid>
<specific_body_force>0 -9.81</specific_body_force> <specific_body_force>0 -9.81</specific_body_force>
<secondary_variables> <secondary_variables>
<secondary_variable type="static" internal_name="darcy_velocity" output_name="darcy_velocity"/> <secondary_variable type="static" internal_name="darcy_velocity" output_name="darcy_velocity"/>
...@@ -73,6 +70,21 @@ ...@@ -73,6 +70,21 @@
<type>Constant</type> <type>Constant</type>
<value>0.0</value> <value>0.0</value>
</property> </property>
<property>
<name>density</name>
<type>Parameter</type>
<parameter_name>rho_solid</parameter_name>
</property>
<property>
<name>thermal_conductivity</name>
<type>Parameter</type>
<parameter_name>lambda</parameter_name>
</property>
<property>
<name>specific_heat_capacity</name>
<type>Parameter</type>
<parameter_name>c_p</parameter_name>
</property>
</properties> </properties>
</phase> </phase>
</phases> </phases>
...@@ -135,11 +147,26 @@ ...@@ -135,11 +147,26 @@
<type>Constant</type> <type>Constant</type>
<value>0.41</value> <value>0.41</value>
</property> </property>
<property>
<name>density</name>
<type>Parameter</type>
<parameter_name>rho_solid</parameter_name>
</property>
<property> <property>
<name>storage</name> <name>storage</name>
<type>Constant</type> <type>Constant</type>
<value>0.0</value> <value>0.0</value>
</property> </property>
<property>
<name>thermal_conductivity</name>
<type>Parameter</type>
<parameter_name>lambda</parameter_name>
</property>
<property>
<name>specific_heat_capacity</name>
<type>Parameter</type>
<parameter_name>c_p</parameter_name>
</property>
</properties> </properties>
</phase> </phase>
</phases> </phases>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment