Skip to content

Commit

Permalink
include dirichlet bc in state test
Browse files Browse the repository at this point in the history
  • Loading branch information
j-fu committed Dec 10, 2024
1 parent 89b6e7a commit f604c98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_state.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ flux(y, u, edge, data) = y[1] = u[1, 1] - u[1, 2]

function bcondition(y, u, bnode, data)
boundary_robin!(y, u, bnode, region = 1, value = 0.0, factor = 0.1)
boundary_robin!(y, u, bnode, region = 2, value = 1.0, factor = 0.1)
boundary_dirichlet!(y, u, bnode, region = 2, value = 1.0)
return nothing
end

Expand Down

0 comments on commit f604c98

Please sign in to comment.