Skip to content

Commit

Permalink
Corrected rs copy routine. Now loop over this semi's components.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCan committed Oct 6, 2023
1 parent ed1fec9 commit 3ea484d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/semidiscretization/semidiscretization_coupled.jl
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ function copy_to_coupled_boundary!(boundary_condition::BoundaryConditionCoupled{
j_node = j_node_start

for i in eachnode(solver)
for v in 1:size(u, 1)
for v in 1:size(boundary_condition.u_boundary, 1)
x = cache.elements.node_coordinates[:, i_node, j_node,
linear_indices[i_cell, j_cell]]
converted_u = boundary_condition.coupling_converter(x,
Expand Down

0 comments on commit 3ea484d

Please sign in to comment.