Skip to contents

tag: fluid

Usage

prj_fluid(
  liquid_density,
  gas_density,
  liquid_viscosity,
  gas_viscosity,
  specific_heat_capacity_solid = NULL,
  specific_heat_capacity_water = NULL,
  specific_heat_capacity_air = NULL,
  specific_heat_capacity_water_vapor = NULL,
  thermal_conductivity_dry_solid = NULL,
  thermal_conductivity_wet_solid = NULL
)

Arguments

liquid_density

list:

gas_density

list:

liquid_viscosity

list:

gas_viscosity

list:

specific_heat_capacity_solid

Optional:

specific_heat_capacity_water

Optional:

specific_heat_capacity_air

Optional:

specific_heat_capacity_water_vapor

Optional:

thermal_conductivity_dry_solid

Optional:

thermal_conductivity_wet_solid

Optional:

Examples

prj_fluid(
    liquid_density = list(type = "Constant",
                          value = " 1.e3 "),
    gas_density = list(type = "IdealGasLaw",
                       molar_mass = " 0.002 "),
    liquid_viscosity = list(type = "Constant",
                            value = " 3.171e-11 "),
    gas_viscosity = list(type = "Constant",
                         value = " 2.8539e-13 ")
)
#> $liquid_density
#> $liquid_density$type
#> [1] "Constant"
#> 
#> $liquid_density$value
#> [1] " 1.e3 "
#> 
#> 
#> $gas_density
#> $gas_density$type
#> [1] "IdealGasLaw"
#> 
#> $gas_density$molar_mass
#> [1] " 0.002 "
#> 
#> 
#> $liquid_viscosity
#> $liquid_viscosity$type
#> [1] "Constant"
#> 
#> $liquid_viscosity$value
#> [1] " 3.171e-11 "
#> 
#> 
#> $gas_viscosity
#> $gas_viscosity$type
#> [1] "Constant"
#> 
#> $gas_viscosity$value
#> [1] " 2.8539e-13 "
#> 
#> 
#> $specific_heat_capacity_solid
#> NULL
#> 
#> $specific_heat_capacity_water
#> NULL
#> 
#> $specific_heat_capacity_air
#> NULL
#> 
#> $specific_heat_capacity_water_vapor
#> NULL
#> 
#> $thermal_conductivity_dry_solid
#> NULL
#> 
#> $thermal_conductivity_wet_solid
#> NULL
#> 
#> $xpath
#> [1] "processes/process/material_property/fluid"
#> 
#> $attr_names
#> character(0)
#> 
#> $flatten_on_exp
#> character(0)
#> 
#> attr(,"class")
#> [1] "prj_fluid"