Skip to contents

tag: boundary_condition

Usage

prj_boundary_condition(
  type,
  parameter = NULL,
  geometrical_set = NULL,
  geometry = NULL,
  component = NULL,
  mesh = NULL,
  alpha = NULL,
  u_0 = NULL,
  constraint_type = NULL,
  constraining_process_variable = NULL,
  constraint_threshold = NULL,
  constraint_direction = NULL,
  area_parameter = NULL,
  bc_object = NULL,
  flush_stdout = NULL,
  property_name = NULL,
  initial_value_parameter = NULL,
  constant_name = NULL,
  coefficient_current_variable_name = NULL,
  coefficient_other_variable_name = NULL,
  coefficient_mixed_variables_name = NULL,
  threshold_parameter = NULL,
  comparison_operator = NULL,
  time_interval = NULL
)

Arguments

type

string:

parameter

string:

geometrical_set

Optional: string:

geometry

Optional: string:

component

Optional: string | double:

mesh

Optional: string:

alpha

Optional: string:

u_0

Optional: string:

constraint_type

Optional: string:

constraining_process_variable

Optional: string:

constraint_threshold

Optional: string | double:

constraint_direction

Optional: string:

area_parameter

Optional: string:

bc_object

Optional: string:

flush_stdout

Optional: string:

property_name

Optional: string:

initial_value_parameter

Optional: string:

constant_name

Optional: string:

coefficient_current_variable_name

Optional: string:

coefficient_other_variable_name

Optional: string:

coefficient_mixed_variables_name

Optional: string:

threshold_parameter

Optional: string:

comparison_operator

Optional: string:

time_interval

Optional: list of 2, character:

Examples

prj_boundary_condition(
    type = "Neumann",
    parameter = "flux_in",
    geometrical_set = "cube_1x1x1_geometry",
    geometry = "left",
    component = 0
)
#> $type
#> [1] "Neumann"
#> 
#> $parameter
#> [1] "flux_in"
#> 
#> $geometrical_set
#> [1] "cube_1x1x1_geometry"
#> 
#> $geometry
#> [1] "left"
#> 
#> $component
#> [1] 0
#> 
#> $mesh
#> NULL
#> 
#> $alpha
#> NULL
#> 
#> $u_0
#> NULL
#> 
#> $constraint_type
#> NULL
#> 
#> $constraining_process_variable
#> NULL
#> 
#> $constraint_threshold
#> NULL
#> 
#> $constraint_direction
#> NULL
#> 
#> $area_parameter
#> NULL
#> 
#> $bc_object
#> NULL
#> 
#> $flush_stdout
#> NULL
#> 
#> $property_name
#> NULL
#> 
#> $initial_value_parameter
#> NULL
#> 
#> $constant_name
#> NULL
#> 
#> $coefficient_current_variable_name
#> NULL
#> 
#> $coefficient_other_variable_name
#> NULL
#> 
#> $coefficient_mixed_variables_name
#> NULL
#> 
#> $threshold_parameter
#> NULL
#> 
#> $comparison_operator
#> NULL
#> 
#> $time_interval
#> NULL
#> 
#> $xpath
#> [1] "process_variables/process_variable/boundary_conditions/boundary_condition"
#> 
#> $attr_names
#> character(0)
#> 
#> $flatten_on_exp
#> character(0)
#> 
#> attr(,"class")
#> [1] "prj_boundary_condition"