Skip to content

Commit

Permalink
Update src/semidiscretization/semidiscretization_coupled.jl
Browse files Browse the repository at this point in the history
Co-authored-by: Erik Faulhaber <[email protected]>
  • Loading branch information
SimonCan and efaulhaber authored Dec 11, 2023
1 parent 388a309 commit 0e7fd19
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/semidiscretization/semidiscretization_coupled.jl
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,9 @@ function copy_to_coupled_boundary!(boundary_condition::BoundaryConditionCoupled{
u_node = get_node_vars(u, equations, solver, i_node, j_node,
linear_indices[i_cell, j_cell]]
converted_u = coupling_converter(x, u_node)
u_boundary[:, element_id, cell] = converted_u
@inbounds for i in eachindex(converted_u)
u_boundary[i, element_id, cell] = converted_u[i]
end
i_node += i_node_step
j_node += j_node_step
end
Expand Down

0 comments on commit 0e7fd19

Please sign in to comment.