Newer
Older
#'r2ogs6_process_variable
#'@description S3 class describing a .prj process variable
#'@param name The name of the process variable
#'@param components The components of the process variable
#'@param order The order of the process variable
#'@param initial_condition The initial condition of the process variable
#'@param boundary_conditions The boundary conditions of the process variable
#'@export
r2ogs6_process_variable <- function(name, components, order, initial_condition, boundary_conditions){
#Coerce input
if(assertthat::is.string(components)){
components <- as.double(components)
}
if(assertthat::is.string(order)){
order <- as.double(order)
}
new_r2ogs6_process_variable(name, components, order, initial_condition, boundary_conditions)
}
new_r2ogs6_process_variable <- function(name, components, order, initial_condition, boundary_conditions){
assertthat::assert_that(assertthat::is.string(name))
assertthat::assert_that(assertthat::is.number(components))
assertthat::assert_that(assertthat::is.number(order))
assertthat::assert_that(assertthat::is.string(initial_condition))
validate_wrapper_list(boundary_conditions, "r2ogs6_boundary_condition")
structure(list(name = name,
components = components,
order = order,
initial_condition = initial_condition,
boundary_conditions = boundary_conditions,
tag_name = "process_variable",
is_subclass = FALSE,
attr_names = character(),
flatten_on_exp = character()
),
class = "r2ogs6_process_variable"
)
}
#============================== BOUNDARY_CONDITION ================================
#'r2ogs6_boundary_condition
#'@description S3 class describing a .prj boundary condition
#'@param type ...
#'@param parameter ...
#'@param component ...
Ruben Heinrich
committed
#'@param mesh ...
#'@param geometrical_set ...
#'@param geometry ...
#'@export
r2ogs6_boundary_condition <- function(type, parameter, component = NULL, mesh = NULL, geometrical_set = NULL,
geometry = NULL){
#Coerce input
if(!is.null(component)){
if(assertthat::is.string(component)){
component <- as.double(component)
}
}
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
new_r2ogs6_boundary_condition(type, parameter, component, mesh, geometrical_set, geometry)
}
new_r2ogs6_boundary_condition <- function(type, parameter, component = NULL, mesh = NULL, geometrical_set = NULL,
geometry = NULL){
assertthat::assert_that(assertthat::is.string(type))
assertthat::assert_that(assertthat::is.string(parameter))
if(!is.null(component)){
assertthat::assert_that(assertthat::is.number(component))
}
if(!is.null(mesh)){
assertthat::assert_that(assertthat::is.string(mesh))
}
if(!is.null(geometrical_set)){
assertthat::assert_that(assertthat::is.string(geometrical_set))
}
if(!is.null(geometry)){
assertthat::assert_that(assertthat::is.string(geometry))
}
structure(list(type = type,
parameter = parameter,
component = component,
mesh = mesh,
geometrical_set = geometrical_set,
geometry = geometry,
tag_name = "boundary_condition",
is_subclass = TRUE,
attr_names = character(),
flatten_on_exp = character()
),
class = "r2ogs6_boundary_condition"
)
}