Skip to content

Commit

Permalink
Fix IC (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
spdomin committed Jan 26, 2023
1 parent 3976941 commit f6ffd38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/VolumeOfFluidEquationSystem.C
Expand Up @@ -1499,8 +1499,8 @@ VolumeOfFluidEquationSystem::wetted_wall_init()
ScalarFieldType *vofNp1 = &(vof_->field_of_state(stk::mesh::StateNP1));
ScalarFieldType *vofN = &(vof_->field_of_state(stk::mesh::StateN));
ScalarFieldType *vofNm1 = (vof_->number_of_states() == 2)
? &(vof_->field_of_state(stk::mesh::StateNM1))
: &(vof_->field_of_state(stk::mesh::StateN));
? &(vof_->field_of_state(stk::mesh::StateN))
: &(vof_->field_of_state(stk::mesh::StateNM1));

// define some common selectors
stk::mesh::Selector s_all_nodes
Expand Down

0 comments on commit f6ffd38

Please sign in to comment.