-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomTransport.hpp
More file actions
35 lines (28 loc) · 1004 Bytes
/
Copy pathCustomTransport.hpp
File metadata and controls
35 lines (28 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef SRC_CUSTOMTRANSPORT_HPP_
#define SRC_CUSTOMTRANSPORT_HPP_
// Author: Ananyo Bhattacharya
// Affiliation: University of Michigan
// Email: ananyo@umich.edu
// C/C++ headers
#include <cstdlib>
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
// Cantera headers
#include <cantera/base/Solution.h>
#include <cantera/base/ct_defs.h>
#include <cantera/kinetics/Kinetics.h>
#include <cantera/kinetics/MultiRate.h>
#include <cantera/kinetics/ReactionData.h>
#include <cantera/kinetics/ReactionRate.h>
#include <cantera/thermo.h>
using namespace std;
using Eigen::MatrixXd;
using Eigen::VectorXd;
VectorXd handleCustomMolecularDiffusion(string PlanetName,
Cantera::ThermoPhase* NetworkName,
double Pres, double Temp, VectorXd mWt);
VectorXd JupiterMolDiff(Cantera::ThermoPhase* NetworkName, double Pres,
double Temp, VectorXd mWt);
#endif // SRC_CUSTOMTRANSPORT_HPP_