From: bangerth Date: Wed, 8 Feb 2012 07:42:30 +0000 (+0000) Subject: Generate VTU output. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=234834f1965b4ee7fdb3fcf0e2c71356ab00a4fd;p=dealii-svn.git Generate VTU output. git-svn-id: https://svn.dealii.org/trunk@25011 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-43/step-43.cc b/deal.II/examples/step-43/step-43.cc index 7b71d485b1..57bb90b480 100644 --- a/deal.II/examples/step-43/step-43.cc +++ b/deal.II/examples/step-43/step-43.cc @@ -2334,9 +2334,9 @@ namespace Step43 data_out.build_patches (); std::string filename = "solution-" + - Utilities::int_to_string (timestep_number, 5) + ".tec"; + Utilities::int_to_string (timestep_number, 5) + ".vtu"; std::ofstream output (filename.c_str()); - data_out.write_tecplot (output); + data_out.write_vtu (output); }