From: Luca Heltai Date: Fri, 14 Apr 2017 13:50:09 +0000 (+0200) Subject: Moved IGES inside input directory. X-Git-Tag: v9.0.0-rc1~1694^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4259%2Fhead;p=dealii.git Moved IGES inside input directory. --- diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 442e70562f..ea2a4c492a 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -36,14 +36,14 @@ IF(DEAL_II_COMPONENT_EXAMPLES) # # Special files: # - PATTERN "output.reference.dat" # step-39 - PATTERN "postprocess.pl" # step-39 - PATTERN "obstacle.pbm" # step-42 - PATTERN "untitled.geo" # step-49 - PATTERN "untitled.msh" # step-49 - PATTERN "topography.txt.gz" # step-53 - PATTERN "input/initial_mesh_3d.vtk" # step-54 - PATTERN "DTMB-5415_bulbous_bow.iges" # step-54 + PATTERN "output.reference.dat" # step-39 + PATTERN "postprocess.pl" # step-39 + PATTERN "obstacle.pbm" # step-42 + PATTERN "untitled.geo" # step-49 + PATTERN "untitled.msh" # step-49 + PATTERN "topography.txt.gz" # step-53 + PATTERN "input/initial_mesh_3d.vtk" # step-54 + PATTERN "input/DTMB-5415_bulbous_bow.iges" # step-54 ) IF(DEAL_II_COMPILE_EXAMPLES) diff --git a/examples/step-54/DTMB-5415_bulbous_bow.iges b/examples/step-54/input/DTMB-5415_bulbous_bow.iges similarity index 100% rename from examples/step-54/DTMB-5415_bulbous_bow.iges rename to examples/step-54/input/DTMB-5415_bulbous_bow.iges diff --git a/examples/step-54/step-54.cc b/examples/step-54/step-54.cc index d2964e8b5b..28dc936a65 100644 --- a/examples/step-54/step-54.cc +++ b/examples/step-54/step-54.cc @@ -138,8 +138,8 @@ namespace Step54 // this function we import the CAD shape upon which we want to // generate and refine our triangulation. We assume that the CAD // surface is contained in the @p cad_file_name file (we provide an - // example IGES file in this directory called - // "DTMB-5415_bulbous_bow.iges" that represents the bulbous bow of a + // example IGES file in the input directory called + // "input/DTMB-5415_bulbous_bow.iges" that represents the bulbous bow of a // ship). The presence of several convex and concave high curvature // regions makes the geometry we provided a particularly meaningful // example. @@ -401,7 +401,7 @@ int main () using namespace Step54; const std::string in_mesh_filename = "input/initial_mesh_3d.vtk"; - const std::string cad_file_name = "DTMB-5415_bulbous_bow.iges"; + const std::string cad_file_name = "input/DTMB-5415_bulbous_bow.iges"; cout << "----------------------------------------------------------" << endl; cout << "Testing projection in direction normal to CAD surface" << endl;