Skip to content

Commit 76f87d3

Browse files
committed
Fixed path of grids.
1 parent 4560d4b commit 76f87d3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/computational_domain.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ template <int dim>
6262
void ComputationalDomain<dim>::declare_parameters (ParameterHandler &prm)
6363
{
6464

65-
prm.declare_entry("Input grid name", "../utilities/coarse_cube_double_nodes",
65+
prm.declare_entry("Input grid name", "../grids/coarse_cube_double_nodes",
6666
Patterns::Anything());
6767

6868
prm.declare_entry("Input grid format", "inp",
@@ -223,7 +223,7 @@ void ComputationalDomain<dim>::read_domain()
223223
//
224224
// manifold = new SphericalManifold<dim-1, dim>;
225225

226-
if (input_grid_name == "../utilities/coarse_sphere" || input_grid_name == "../utilities/coarse_sphere_double_nodes" )
226+
if (input_grid_name == "../grids/coarse_sphere" || input_grid_name == "../grids/coarse_sphere_double_nodes" )
227227
{
228228
manifold = new SphericalManifold<dim-1, dim>;
229229
tria.set_all_manifold_ids(0);

0 commit comments

Comments
 (0)