2015-01-23 23:26:41 -05:00
|
|
|
// Header file for two-phase averaging class
|
2015-08-25 14:32:36 -04:00
|
|
|
#ifndef TwoPhase_INC
|
|
|
|
|
#define TwoPhase_INC
|
|
|
|
|
|
2015-07-20 13:33:34 -04:00
|
|
|
#include <vector>
|
|
|
|
|
|
2015-01-23 23:26:41 -05:00
|
|
|
#include "pmmc.h"
|
|
|
|
|
#include "Domain.h"
|
2015-01-26 21:38:58 -05:00
|
|
|
#include "Communication.h"
|
2015-06-03 10:30:35 -04:00
|
|
|
#include "analysis/analysis.h"
|
2015-07-20 13:33:34 -04:00
|
|
|
|
|
|
|
|
#include "shared_ptr.h"
|
|
|
|
|
#include "common/Utilities.h"
|
|
|
|
|
#include "common/MPI_Helpers.h"
|
|
|
|
|
#include "IO/MeshDatabase.h"
|
|
|
|
|
#include "IO/Reader.h"
|
|
|
|
|
#include "IO/Writer.h"
|
2015-03-22 21:13:17 -04:00
|
|
|
|
2015-01-23 23:26:41 -05:00
|
|
|
|
|
|
|
|
class TwoPhase{
|
|
|
|
|
|
|
|
|
|
//...........................................................................
|
|
|
|
|
int n_nw_pts,n_ns_pts,n_ws_pts,n_nws_pts,n_local_sol_pts,n_local_nws_pts;
|
|
|
|
|
int n_nw_tris,n_ns_tris,n_ws_tris,n_nws_seg,n_local_sol_tris;
|
|
|
|
|
//...........................................................................
|
|
|
|
|
int nc;
|
|
|
|
|
int kstart,kfinish;
|
|
|
|
|
|
|
|
|
|
double fluid_isovalue, solid_isovalue;
|
2015-01-26 21:38:58 -05:00
|
|
|
double Volume;
|
2015-01-23 23:26:41 -05:00
|
|
|
// initialize lists for vertices for surfaces, common line
|
|
|
|
|
DTMutableList<Point> nw_pts;
|
|
|
|
|
DTMutableList<Point> ns_pts;
|
|
|
|
|
DTMutableList<Point> ws_pts;
|
|
|
|
|
DTMutableList<Point> nws_pts;
|
|
|
|
|
DTMutableList<Point> local_sol_pts;
|
|
|
|
|
DTMutableList<Point> local_nws_pts;
|
|
|
|
|
DTMutableList<Point> tmp;
|
|
|
|
|
|
|
|
|
|
// initialize triangle lists for surfaces
|
|
|
|
|
IntArray nw_tris;
|
|
|
|
|
IntArray ns_tris;
|
|
|
|
|
IntArray ws_tris;
|
|
|
|
|
IntArray nws_seg;
|
|
|
|
|
IntArray local_sol_tris;
|
|
|
|
|
|
|
|
|
|
// Temporary storage arrays
|
|
|
|
|
DoubleArray CubeValues;
|
|
|
|
|
DoubleArray Values;
|
|
|
|
|
DoubleArray DistanceValues;
|
|
|
|
|
DoubleArray KGwns_values;
|
|
|
|
|
DoubleArray KNwns_values;
|
|
|
|
|
DoubleArray InterfaceSpeed;
|
|
|
|
|
DoubleArray NormalVector;
|
|
|
|
|
|
2015-07-13 11:24:51 -04:00
|
|
|
DoubleArray RecvBuffer;
|
|
|
|
|
|
2015-01-28 09:26:33 -05:00
|
|
|
// CSV / text file where time history of averages is saved
|
|
|
|
|
FILE *TIMELOG;
|
2015-07-13 11:17:56 -04:00
|
|
|
FILE *NWPLOG;
|
|
|
|
|
FILE *WPLOG;
|
2015-01-28 09:26:33 -05:00
|
|
|
|
2015-01-23 23:26:41 -05:00
|
|
|
public:
|
2015-07-13 08:18:03 -04:00
|
|
|
//...........................................................................
|
2015-01-26 21:38:58 -05:00
|
|
|
Domain& Dm;
|
2015-07-13 08:18:03 -04:00
|
|
|
int NumberComponents_WP,NumberComponents_NWP;
|
2015-01-23 23:26:41 -05:00
|
|
|
//...........................................................................
|
|
|
|
|
// Averaging variables
|
|
|
|
|
//...........................................................................
|
|
|
|
|
// local averages (to each MPI process)
|
|
|
|
|
double trimdist; // pixel distance to trim surface for specified averages
|
2015-01-26 21:38:58 -05:00
|
|
|
double porosity,poreVol;
|
|
|
|
|
double awn,ans,aws,lwns;
|
|
|
|
|
double wp_volume,nwp_volume;
|
2015-01-23 23:26:41 -05:00
|
|
|
double As, dummy;
|
|
|
|
|
double vol_w, vol_n; // volumes the exclude the interfacial region
|
|
|
|
|
double sat_w, sat_w_previous;
|
|
|
|
|
double pan,paw; // local phase averaged pressure
|
|
|
|
|
// Global averages (all processes)
|
|
|
|
|
double pan_global,paw_global; // local phase averaged pressure
|
|
|
|
|
double vol_w_global, vol_n_global; // volumes the exclude the interfacial region
|
|
|
|
|
double awn_global,ans_global,aws_global;
|
|
|
|
|
double lwns_global;
|
|
|
|
|
double efawns,efawns_global; // averaged contact angle
|
2015-09-04 09:08:02 -04:00
|
|
|
double euler,Jn,An;
|
|
|
|
|
double euler_global,Jn_global,An_global;
|
|
|
|
|
|
2015-01-23 23:26:41 -05:00
|
|
|
double Jwn,Jwn_global; // average mean curavture - wn interface
|
|
|
|
|
double Kwn,Kwn_global; // average Gaussian curavture - wn interface
|
|
|
|
|
double KNwns,KNwns_global; // wns common curve normal curavture
|
|
|
|
|
double KGwns,KGwns_global; // wns common curve geodesic curavture
|
|
|
|
|
double trawn,trawn_global; // trimmed interfacial area
|
|
|
|
|
double trJwn,trJwn_global; // trimmed interfacial area
|
|
|
|
|
double trRwn,trRwn_global; // trimmed interfacial area
|
2015-01-26 21:38:58 -05:00
|
|
|
double nwp_volume_global; // volume for the non-wetting phase
|
|
|
|
|
double wp_volume_global; // volume for the wetting phase
|
2015-01-23 23:26:41 -05:00
|
|
|
double As_global;
|
|
|
|
|
double dEs,dAwn,dAns; // Global surface energy (calculated by rank=0)
|
|
|
|
|
DoubleArray van;
|
|
|
|
|
DoubleArray vaw;
|
|
|
|
|
DoubleArray vawn;
|
|
|
|
|
DoubleArray vawns;
|
|
|
|
|
DoubleArray Gwn;
|
|
|
|
|
DoubleArray Gns;
|
|
|
|
|
DoubleArray Gws;
|
|
|
|
|
DoubleArray van_global;
|
|
|
|
|
DoubleArray vaw_global;
|
|
|
|
|
DoubleArray vawn_global;
|
|
|
|
|
DoubleArray vawns_global;
|
|
|
|
|
DoubleArray Gwn_global;
|
|
|
|
|
DoubleArray Gns_global;
|
|
|
|
|
DoubleArray Gws_global;
|
|
|
|
|
//...........................................................................
|
|
|
|
|
//...........................................................................
|
|
|
|
|
int Nx,Ny,Nz;
|
2015-07-13 08:18:03 -04:00
|
|
|
IntArray PhaseID; // Phase ID array (solid=0, non-wetting=1, wetting=2)
|
2015-08-25 14:32:36 -04:00
|
|
|
BlobIDArray Label_WP; // Wetting phase label
|
|
|
|
|
BlobIDArray Label_NWP; // Non-wetting phase label index (0:nblobs-1)
|
|
|
|
|
std::vector<BlobIDType> Label_NWP_map; // Non-wetting phase label for each index
|
2015-01-23 23:26:41 -05:00
|
|
|
DoubleArray SDn;
|
|
|
|
|
DoubleArray SDs;
|
|
|
|
|
DoubleArray Phase;
|
|
|
|
|
DoubleArray Press;
|
|
|
|
|
DoubleArray dPdt;
|
|
|
|
|
DoubleArray MeanCurvature;
|
|
|
|
|
DoubleArray GaussCurvature;
|
|
|
|
|
DoubleArray SDs_x; // Gradient of the signed distance
|
|
|
|
|
DoubleArray SDs_y;
|
|
|
|
|
DoubleArray SDs_z;
|
2015-01-28 11:18:18 -05:00
|
|
|
DoubleArray SDn_x; // Gradient of the signed distance
|
|
|
|
|
DoubleArray SDn_y;
|
|
|
|
|
DoubleArray SDn_z;
|
|
|
|
|
DoubleArray DelPhi; // Magnitude of Gradient of the phase indicator field
|
2015-01-23 23:26:41 -05:00
|
|
|
DoubleArray Phase_tplus;
|
|
|
|
|
DoubleArray Phase_tminus;
|
2015-01-28 11:18:18 -05:00
|
|
|
DoubleArray Vel_x; // Velocity
|
2015-01-23 23:26:41 -05:00
|
|
|
DoubleArray Vel_y;
|
|
|
|
|
DoubleArray Vel_z;
|
2015-07-13 08:18:03 -04:00
|
|
|
// Container for averages;
|
|
|
|
|
DoubleArray ComponentAverages_WP;
|
|
|
|
|
DoubleArray ComponentAverages_NWP;
|
2015-01-23 23:26:41 -05:00
|
|
|
//...........................................................................
|
2015-08-25 14:32:36 -04:00
|
|
|
TwoPhase(Domain &dm);
|
|
|
|
|
~TwoPhase();
|
2015-01-23 23:26:41 -05:00
|
|
|
void Initialize();
|
2015-07-13 09:42:44 -04:00
|
|
|
// void SetupCubes(Domain &Dm);
|
2015-01-28 10:03:15 -05:00
|
|
|
void UpdateMeshValues();
|
|
|
|
|
void UpdateSolid();
|
2015-01-28 11:18:18 -05:00
|
|
|
void ComputeDelPhi();
|
2015-06-16 21:50:29 -04:00
|
|
|
void ColorToSignedDistance(double Beta, DoubleArray &ColorData, DoubleArray &DistData);
|
2015-01-23 23:26:41 -05:00
|
|
|
void ComputeLocal();
|
2015-08-18 21:40:51 -04:00
|
|
|
void AssignComponentLabels();
|
2015-07-13 08:18:03 -04:00
|
|
|
void ComponentAverages();
|
2015-01-28 10:03:15 -05:00
|
|
|
void Reduce();
|
2015-07-20 13:33:34 -04:00
|
|
|
void WriteSurfaces(int logcount);
|
2015-01-26 21:38:58 -05:00
|
|
|
void NonDimensionalize(double D, double viscosity, double IFT);
|
2015-01-28 09:26:33 -05:00
|
|
|
void PrintAll(int timestep);
|
2015-07-13 08:18:03 -04:00
|
|
|
int GetCubeLabel(int i, int j, int k, IntArray &BlobLabel);
|
2015-04-13 16:56:03 -04:00
|
|
|
void SortBlobs();
|
2015-07-13 11:17:56 -04:00
|
|
|
void PrintComponents(int timestep);
|
2015-01-23 23:26:41 -05:00
|
|
|
};
|
|
|
|
|
|
2015-04-13 16:56:03 -04:00
|
|
|
|
2015-08-25 14:32:36 -04:00
|
|
|
#endif
|
2015-07-13 15:41:32 -04:00
|
|
|
|