Difference between revisions of "VTK/Examples/Cxx/Parallel/ExodusIIWriter"
From KitwarePublic
Jump to navigationJump to searchDaviddoria (talk | contribs) |
Andy.bauer (talk | contribs) (Example working as desired.) |
||
Line 1: | Line 1: | ||
− | # | + | Requires VTK to be built with VTK_USE_PARALLEL. |
+ | |||
+ | ==ExodusIIWriter.cxx== | ||
+ | <source lang="cpp"> | ||
+ | #include <vtkSmartPointer.h> | ||
+ | #include <vtkPolyData.h> | ||
+ | #include <vtkExodusIIWriter.h> | ||
+ | #include <vtkTimeSourceExample.h> | ||
+ | |||
+ | int main(int, char *[]) | ||
+ | { | ||
+ | |||
+ | vtkSmartPointer<vtkTimeSourceExample> timeSource = | ||
+ | vtkSmartPointer<vtkTimeSourceExample>::New(); | ||
+ | |||
+ | vtkSmartPointer<vtkExodusIIWriter> exodusWriter = | ||
+ | vtkSmartPointer<vtkExodusIIWriter>::New(); | ||
+ | exodusWriter->SetFileName("output.exii"); | ||
+ | exodusWriter->SetInputConnection (timeSource->GetOutputPort()); | ||
+ | exodusWriter->WriteAllTimeStepsOn (); | ||
+ | exodusWriter->Write(); | ||
+ | |||
+ | return EXIT_SUCCESS; | ||
+ | } | ||
+ | </source> | ||
+ | |||
+ | {{VTKCMakeLists|{{SUBPAGENAME}}}} |
Latest revision as of 11:46, 27 April 2017
Requires VTK to be built with VTK_USE_PARALLEL.
Contents
ExodusIIWriter.cxx
#include <vtkSmartPointer.h>
#include <vtkPolyData.h>
#include <vtkExodusIIWriter.h>
#include <vtkTimeSourceExample.h>
int main(int, char *[])
{
vtkSmartPointer<vtkTimeSourceExample> timeSource =
vtkSmartPointer<vtkTimeSourceExample>::New();
vtkSmartPointer<vtkExodusIIWriter> exodusWriter =
vtkSmartPointer<vtkExodusIIWriter>::New();
exodusWriter->SetFileName("output.exii");
exodusWriter->SetInputConnection (timeSource->GetOutputPort());
exodusWriter->WriteAllTimeStepsOn ();
exodusWriter->Write();
return EXIT_SUCCESS;
}
Please try the new VTKExamples website.
CMakeLists.txt
cmake_minimum_required(VERSION 2.8)
PROJECT(ExodusIIWriter)
find_package(VTK REQUIRED)
include(${VTK_USE_FILE})
add_executable(ExodusIIWriter MACOSX_BUNDLE ExodusIIWriter.cxx)
if(VTK_LIBRARIES)
target_link_libraries(ExodusIIWriter ${VTK_LIBRARIES})
else()
target_link_libraries(ExodusIIWriter vtkHybrid vtkWidgets)
endif()
Download and Build ExodusIIWriter
Click here to download ExodusIIWriter. and its CMakeLists.txt file.
Once the tarball ExodusIIWriter.tar has been downloaded and extracted,
cd ExodusIIWriter/build
- If VTK is installed:
cmake ..
- If VTK is not installed but compiled on your system, you will need to specify the path to your VTK build:
cmake -DVTK_DIR:PATH=/home/me/vtk_build ..
Build the project:
make
and run it:
./ExodusIIWriter
WINDOWS USERS PLEASE NOTE: Be sure to add the VTK bin directory to your path. This will resolve the VTK dll's at run time.