Skip to contents

tag: material_property

Usage

prj_material_property(fluid, porous_medium)

Arguments

fluid

prj_fluid:

porous_medium

prj_porous_medium:

Examples

prj_material_property(
    fluid = 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 ")
    ),
    porous_medium = list(
        porous_medium = prj_porous_medium(
            id = 0,
            permeability = list(permeability_tensor_entries = "kappa1",
                                type = "Constant"),
            porosity = list(type = "Constant",
                            porosity_parameter = "constant_porosity_parameter"),
            storage = list(type = "Constant",
                           value = " 0.0 "),
            capillary_pressure = prj_capillary_pressure(
                type = "vanGenuchten",
                pd = 2e+06,
                sr = 0.4,
                smax = 1,
                m = 0.3288590604,
                pc_max = 2e+07,
                has_regularized = "true"
            ),
            relative_permeability = list(
                relative_permeability = prj_relative_permeability(
                    type = "NonWettingPhaseVanGenuchten",
                    sr = 0,
                    smax = 0.6,
                    m = 0.3288590604,
                    krel_min = 0,
                    id = "0"
                )
            )
        )
    )
)
#> $fluid
#> $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"
#> 
#> $porous_medium
#> $porous_medium$porous_medium
#> $id
#> [1] 0
#> 
#> $permeability
#> $permeability$permeability_tensor_entries
#> [1] "kappa1"
#> 
#> $permeability$type
#> [1] "Constant"
#> 
#> 
#> $porosity
#> $porosity$type
#> [1] "Constant"
#> 
#> $porosity$porosity_parameter
#> [1] "constant_porosity_parameter"
#> 
#> 
#> $storage
#> $storage$type
#> [1] "Constant"
#> 
#> $storage$value
#> [1] " 0.0 "
#> 
#> 
#> $capillary_pressure
#> $type
#> [1] "vanGenuchten"
#> 
#> $pd
#> [1] 2e+06
#> 
#> $sr
#> [1] 0.4
#> 
#> $smax
#> [1] 1
#> 
#> $m
#> [1] 0.3288591
#> 
#> $pc_max
#> [1] 2e+07
#> 
#> $has_regularized
#> [1] "true"
#> 
#> $curve
#> NULL
#> 
#> $xpath
#> [1] "processes/process/material_property/porous_medium/porous_medium/capillary_pressure"
#> [2] "processes/process/porous_medium/porous_medium/capillary_pressure"                  
#> 
#> $attr_names
#> character(0)
#> 
#> $flatten_on_exp
#> character(0)
#> 
#> attr(,"class")
#> [1] "prj_capillary_pressure"
#> 
#> $relative_permeability
#> $relative_permeability$relative_permeability
#> $type
#> [1] "NonWettingPhaseVanGenuchten"
#> 
#> $sr
#> [1] 0
#> 
#> $smax
#> [1] 0.6
#> 
#> $m
#> [1] 0.3288591
#> 
#> $krel_min
#> [1] 0
#> 
#> $id
#> [1] "0"
#> 
#> $xpath
#> [1] "processes/process/material_property/porous_medium/porous_medium/relative_permeability/relative_permeability"
#> [2] "processes/process/porous_medium/porous_medium/relative_permeability"                                        
#> 
#> $attr_names
#> [1] "id"
#> 
#> $flatten_on_exp
#> character(0)
#> 
#> attr(,"class")
#> [1] "prj_relative_permeability"
#> 
#> 
#> $xpath
#> [1] "processes/process/material_property/porous_medium/porous_medium"
#> [2] "processes/process/porous_medium/porous_medium"                  
#> 
#> $attr_names
#> [1] "id"
#> 
#> $flatten_on_exp
#> character(0)
#> 
#> attr(,"class")
#> [1] "prj_porous_medium"
#> 
#> 
#> $xpath
#> [1] "processes/process/material_property"
#> 
#> $attr_names
#> character(0)
#> 
#> $flatten_on_exp
#> character(0)
#> 
#> attr(,"class")
#> [1] "prj_material_property"