Skip to content

Commit

Permalink
fixed bug in parsed formatting idaholab#21903
Browse files Browse the repository at this point in the history
  • Loading branch information
oanaoana committed Apr 4, 2023
1 parent 1cb7e4d commit c3c2d28
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion framework/src/meshgenerators/TransfiniteMeshGenerator.C
Expand Up @@ -306,7 +306,7 @@ TransfiniteMeshGenerator::getParsedEdge(const std::string & parameter,
edge.resize(param_vec.size());

std::vector<std::string> param_coords;
MooseUtils::tokenize(parameter, param_coords, 1, " ; ");
MooseUtils::tokenize(parameter, param_coords, 1, ";");

auto it = 0;
for (auto rx : param_vec)
Expand All @@ -317,6 +317,7 @@ TransfiniteMeshGenerator::getParsedEdge(const std::string & parameter,
y_coord = _parsed_func->Eval(&rx);
edge[it] = Point(x_coord, y_coord, 0.0);
it++;
//cout<<"x_coord = "<<x_coord<<", y_coord = "<<y_coord<<std::endl;
}

return edge;
Expand Down

0 comments on commit c3c2d28

Please sign in to comment.