Nektar++
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Functions
CalcL2ToLinfPressure.cpp File Reference
#include <VortexWaveInteraction/VortexWaveInteraction.h>
#include <string>
#include <boost/shared_ptr.hpp>
Include dependency graph for CalcL2ToLinfPressure.cpp:

Go to the source code of this file.

Functions

int main (int argc, char *argv[])
 

Function Documentation

int main ( int  argc,
char *  argv[] 
)

Definition at line 46 of file CalcL2ToLinfPressure.cpp.

References Nektar::VortexWaveInteraction::CalcL2ToLinfPressure().

47 {
48  try
49  {
50  VortexWaveInteraction vwi(argc,argv);
51 
52  vwi.CalcL2ToLinfPressure();
53  return 1;
54  }
55 
56  catch (const std::runtime_error&)
57  {
58  return 1;
59  }
60 
61  catch (const std::string& eStr)
62  {
63  cout << "Error: " << eStr << endl;
64  }
65 }