Ethane viscosity

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2014-05-22 23:36:10 +02:00
parent f29c329b8c
commit bc5c75d06b
7 changed files with 75 additions and 7 deletions

View File

@@ -63,12 +63,16 @@ struct ViscosityDiluteVariables
enum ViscosityDiluteEnum {VISCOSITY_DILUTE_COLLISION_INTEGRAL,
VISCOSITY_DILUTE_COLLISION_INTEGRAL_POWERS_OF_TSTAR,
VISCOSITY_DILUTE_KINETIC_THEORY,
VISCOSITY_DILUTE_POWERS_OF_T
VISCOSITY_DILUTE_ETHANE,
VISCOSITY_DILUTE_POWERS_OF_T,
VISCOSITY_DILUTE_NOT_SET
};
int type;
ViscosityDiluteGasCollisionIntegralData collision_integral;
ViscosityDiluteCollisionIntegralPowersOfTstarData collision_integral_powers_of_Tstar;
ViscosityDiluteGasPowersOfT powers_of_T;
ViscosityDiluteVariables(){type = VISCOSITY_DILUTE_NOT_SET;}
};
struct ViscosityRainWaterFriendData
@@ -96,6 +100,7 @@ struct ViscosityHigherOrderVariables
enum ViscosityDiluteEnum {VISCOSITY_HIGHER_ORDER_BATSCHINKI_HILDEBRAND,
VISCOSITY_HIGHER_ORDER_HYDROGEN,
VISCOSITY_HIGHER_ORDER_HEXANE,
VISCOSITY_HIGHER_ORDER_ETHANE,
VISCOSITY_HIGHER_ORDER_FRICTION_THEORY,
VISCOSITY_HIGHER_ORDER_NOT_SET
};