Nektar++
Functions
CalcL2ToLinfPressure.cpp File Reference
#include <VortexWaveInteraction/VortexWaveInteraction.h>
#include <string>

Go to the source code of this file.

Functions

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

Function Documentation

◆ main()

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

Definition at line 45 of file CalcL2ToLinfPressure.cpp.

References Nektar::VortexWaveInteraction::CalcL2ToLinfPressure().

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