@@ -35,19 +35,19 @@ function get_discrete(pdesys, discretization)
3535 # Parse the variables in to the right form and store useful information about the system
3636 v = VariableMap (pdesys, discretization)
3737 # Check for basic interface errors
38- interface_errors (pdesys, v, discretization)
38+ PDEBase . interface_errors (pdesys, v, discretization)
3939 # Extract tspan
4040 tspan = t != = nothing ? v. intervals[t] : nothing
4141 # Find the derivative orders in the bcs
4242 bcorders = Dict (map (x -> x => d_orders (x, pdesys. bcs), all_ivs (v)))
4343 # Create a map of each variable to their boundary conditions including initial conditions
44- boundarymap = parse_bcs (pdesys. bcs, v, bcorders)
44+ boundarymap = PDEBase . parse_bcs (pdesys. bcs, v, bcorders)
4545 # Check that the boundary map is valid
46- check_boundarymap (boundarymap, discretization)
46+ PDEBase . check_boundarymap (boundarymap, discretization)
4747
4848 # Transform system so that it is compatible with the discretization
4949 if should_transform (pdesys, discretization)
50- pdesys = transform_pde_system! (v, boundarymap, pdesys, discretization)
50+ pdesys = PDEBase . transform_pde_system! (v, boundarymap, pdesys, discretization)
5151 end
5252
5353 pdeeqs = pdesys. eqs
@@ -56,10 +56,10 @@ function get_discrete(pdesys, discretization)
5656 # ###########################
5757 # Discretization of system
5858 # ###########################
59- disc_state = construct_disc_state (discretization)
59+ disc_state = PDEBase . construct_disc_state (discretization)
6060
6161 # Create discretized space and variables, this is called `s` throughout
62- s = construct_discrete_space (v, discretization)
62+ s = PDEBase . construct_discrete_space (v, discretization)
6363
6464 return Dict (vcat ([Num (x) => s. grid[x] for x in s. x̄], [Num (u) => s. discvars[u] for u in s. ū]))
6565end
0 commit comments