one_d_euler.cc File Reference
#include <iostream>
#include <iomanip>
#include "generic.h"
#include "flux_transport.h"
#include "meshes/one_d_mesh.h"

Classes

class  OneDimMesh< ELEMENT >
 A simple one dimensional mesh: uniformly spaced nodes in the domain x=0,1. More...
 
class  EulerProblem
 
class  DGProblem< ELEMENT >
 

Namespaces

 Global
 

Functions

void Global::initial_left (Vector< double > &u, const bool &sod)
 
void Global::initial_right (Vector< double > &u, const bool &sod)
 
int main ()
 

Function Documentation

◆ main()

int main ( )
478  {
479  //One hunder elements
480  unsigned n_element = 100;
481 
483  std::cout << "Sod problem\n";
484  //Solve the sod problem
485  problem.parameter_study(true);
486 
487  std::cout << "Lax problem\n";
488  //Solve the lax problem
489  problem.parameter_study(false);
490 
491  return 1;
492  }
Definition: one_d_advection.cc:409
Constructor for SteadyAxisymAdvectionDiffusion problem
Definition: steady_axisym_advection_diffusion.cc:213

References problem.