Skip to contents

tag: pipes

Usage

prj_pipes(
  longitudinal_dispersion_length,
  inlet = NULL,
  outlet = NULL,
  distance_between_pipes = NULL,
  outer = NULL,
  inner = NULL
)

Arguments

longitudinal_dispersion_length

string | double:

inlet

Optional: list:

outlet

Optional: list:

distance_between_pipes

Optional: string | double:

outer

Optional: list:

inner

Optional: list:

Examples

prj_pipes(
    longitudinal_dispersion_length = 0.001,
    inlet = list(
        diameter = " 0.013665",
        wall_thickness = "0.003035",
        wall_thermal_conductivity = "0.39"
    ),
    outlet = list(
        diameter = "0.013665",
        wall_thickness = "0.003035",
        wall_thermal_conductivity = "0.39"
    ),
    distance_between_pipes = 0.053
)
#> $longitudinal_dispersion_length
#> [1] 0.001
#> 
#> $inlet
#> $inlet$diameter
#> [1] " 0.013665"
#> 
#> $inlet$wall_thickness
#> [1] "0.003035"
#> 
#> $inlet$wall_thermal_conductivity
#> [1] "0.39"
#> 
#> 
#> $outlet
#> $outlet$diameter
#> [1] "0.013665"
#> 
#> $outlet$wall_thickness
#> [1] "0.003035"
#> 
#> $outlet$wall_thermal_conductivity
#> [1] "0.39"
#> 
#> 
#> $distance_between_pipes
#> [1] 0.053
#> 
#> $outer
#> NULL
#> 
#> $inner
#> NULL
#> 
#> $xpath
#> [1] "processes/process/borehole_heat_exchangers/borehole_heat_exchanger/pipes"
#> 
#> $attr_names
#> character(0)
#> 
#> $flatten_on_exp
#> character(0)
#> 
#> attr(,"class")
#> [1] "prj_pipes"