SootLib
Loading...
Searching...
No Matches
coagulationModel_FM.cc
Go to the documentation of this file.
2#include "sootDefs.h"
3
4using namespace std;
5using namespace soot;
6
18
20 double m1,
21 double m2) const {
22
23 if (m1 <= mmin || m2 <= mmin) return 0.0;
24
25 double m13_m13 = pow(m1, onethird) + pow(m2, onethird);
26
27 return getKfm(state) * sqrt(1/m1 + 1/m2)*m13_m13*m13_m13;
28}
double getKfm(const state &state) const override
double getCoagulationSootRate(const state &state, double m1, double m2) const override
Definition: sootDefs.h:11
const double mmin
mass of a carbon atom (kg)
Definition: sootDefs.h:27
const double onethird
Definition: sootDefs.h:24