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 43 of file CalcL2ToLinfPressure.cpp.

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

References Nektar::VortexWaveInteraction::CalcL2ToLinfPressure().