Memosa-FVM  0.2
testquadrature.cpp
Go to the documentation of this file.
1 // This file os part of FVM
2 // Copyright (c) 2012 FVM Authors
3 // See LICENSE file for terms.
4 
5 #include <iostream>
6 #include "quadrature.h"
7 #include "DistFunctFields.h"
8 #include "KineticModel.h"
9 using namespace std;
10 
11 int main(){
12  int N1=8,N2=12,N3=10;
13  double T2=1.0;
14  double clim=5.5;
15  Quadrature<double> myquad1 = Quadrature<double>(N1,N2,N3,clim,T2); // cartesian type
16 
17  int option_ur=8,Nr=8,option_theta=1,n_int =4, option_phi=1,nphi_int = 4;
18  Quadrature<double> myquad2= Quadrature<double>(option_ur,Nr,option_theta,n_int,option_phi,nphi_int); //spherical type
19 
20 //double density=0.5;
21  //double temperature=2.0;
22  //double x_velocity=0.1;
23  //double y_velocity=0.01;
24  return 0;
25 }
int main()