Merge branch 'membrane-rex-d3q19' into membrane-wang

This commit is contained in:
James McClure
2022-04-10 12:34:31 -04:00
2 changed files with 478 additions and 33 deletions

View File

@@ -42,7 +42,7 @@ void ScaLBL_Poisson::ReadParams(string filename){
domain_db = db->getDatabase( "Domain" );
electric_db = db->getDatabase( "Poisson" );
k2_inv = 4.0;//speed of sound for D3Q7 lattice
k2_inv = 3.0;//speed of sound for D3Q19 lattice
tau = 0.5+k2_inv;
tau = 9.0 / 5.0 + 0.5; // moran wang D3Q19
timestepMax = 100000;
@@ -599,7 +599,7 @@ void ScaLBL_Poisson::Run(double *ChargeDensity, bool UseSlippingVelBC, int times
/* compute the eletric field */
ScaLBL_D3Q19_Poisson_getElectricField(fq, ElectricField, tau, Np);
//ScaLBL_D3Q19_Poisson_getElectricField(fq, ElectricField, tau, Np);
}
}