https://mooseframework.inl.gov
XDA.C
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 // MOOSE includes
11 #include "XDA.h"
12 #include "MooseApp.h"
13 #include "FEProblem.h"
14 #include "MooseMesh.h"
15 
16 // libMesh includes
17 #include "libmesh/enum_xdr_mode.h"
18 
19 using namespace libMesh;
20 
21 registerMooseObject("MooseApp", XDA);
22 registerMooseObjectAliased("MooseApp", XDA, "XDR");
23 
26 {
27  // Get the base class parameters
29 
30  // Add description for the XDA class
31  params.addClassDescription("Object for outputting data in the XDA/XDR format.");
32 
33  /* Set a private parameter for controlling the output type (XDR = binary), the value
34  of this parameter is set by the AddOutputAction*/
35  params.addPrivateParam<bool>("_binary", false);
36 
37  // Return the InputParameters
38  return params;
39 }
40 
41 XDA::XDA(const InputParameters & parameters)
42  : SampledOutput(parameters), _binary(getParam<bool>("_binary"))
43 {
44 }
45 
46 void
48 {
49  // Strings for the two filenames to be written
50  std::string es_name = filename();
51  std::string mesh_name = es_name;
52 
53  // Make sure the filename has an extension
54  if (es_name.size() < 4)
55  mooseError("Unacceptable filename, you must include an extension (.xda or .xdr).");
56 
57  // Insert the mesh suffix
58  mesh_name.insert(mesh_name.size() - 4, "_mesh");
59 
60  // Set the binary flag
61  XdrMODE mode = _binary ? ENCODE : WRITE;
62 
63  // Write the files
64  _mesh_ptr->getMesh().write(mesh_name);
65  _es_ptr->write(
66  es_name, mode, EquationSystems::WRITE_DATA | EquationSystems::WRITE_ADDITIONAL_DATA);
67  _file_num++;
68 }
69 
70 std::string
72 {
73  // Append the padded time step to the file base
74  std::ostringstream output;
75  output << _file_base << "_" << std::setw(_padding) << std::setprecision(0) << std::setfill('0')
76  << std::right << _file_num;
77 
78  if (_binary)
79  output << ".xdr";
80  else
81  output << ".xda";
82  return output.str();
83 }
void write(std::string_view name, const XdrMODE, const unsigned int write_flags=(WRITE_DATA), bool partition_agnostic=true) const
virtual void output() override
Overload the Output::output method, this is required for XDA output due to the method utlized for out...
Definition: XDA.C:47
registerMooseObject("MooseApp", XDA)
virtual std::string filename() override
Returns the current filename, this method handles adding the timestep suffix.
Definition: XDA.C:71
void addPrivateParam(const std::string &name, const T &value)
These method add a parameter to the InputParameters object which can be retrieved like any other para...
bool _binary
Flag for binary output.
Definition: XDA.h:45
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
std::string _file_base
The base filename from the input paramaters.
Definition: FileOutput.h:89
Class for output data to the XDAII format.
Definition: XDA.h:18
The following methods are specializations for using the libMesh::Parallel::packed_range_* routines fo...
Based class for providing re-positioning and oversampling support to output objects.
Definition: SampledOutput.h:39
XdrMODE
WRITE
unsigned int _padding
Number of digits to pad the extensions.
Definition: FileOutput.h:83
MeshBase & getMesh()
Accessor for the underlying libMesh Mesh object.
Definition: MooseMesh.C:3443
registerMooseObjectAliased("MooseApp", XDA, "XDR")
static InputParameters validParams()
Definition: XDA.C:25
virtual void write(const std::string &name) const=0
ENCODE
libMesh::EquationSystems * _es_ptr
Reference the the libMesh::EquationSystems object that contains the data.
Definition: Output.h:194
MooseMesh * _mesh_ptr
A convenience pointer to the current mesh (reference or displaced depending on "use_displaced") ...
Definition: Output.h:197
void mooseError(Args &&... args) const
Emits an error prefixed with object name and type.
void addClassDescription(const std::string &doc_string)
This method adds a description of the class that will be displayed in the input file syntax dump...
unsigned int & _file_num
A file number counter, initialized to 0 (this must be controlled by the child class, see Exodus)
Definition: FileOutput.h:80
XDA(const InputParameters &parameters)
Class consturctor.
Definition: XDA.C:41
static InputParameters validParams()
Definition: SampledOutput.C:25