List of commits:
Subject Hash Author Date (UTC)
Updated code to reflect latest changes in upstream OpenQBMM 1764c04587a9f47865f353ffa857e04fd369cb81 Anurag Misra 2018-09-18 13:14:48
Updated case mesh, dictionaries and boundary conditions, merged squaredSettler case with batchSettler using a separate blockMeshDict file 0db9d9362d1ef519dfd48ed79eb7fb69dbfdc74a Anurag M 2018-08-24 21:02:19
Disabled -DFULLDEBUG option from OpenQBMM library compilation 802f24f41f1fc065a7d4cc203584f6d68c0b3e03 Anurag Misra 2018-08-21 13:18:38
Updated Grimes Kernel 2be4035a22eb74ca3af27524cd162db8851581c8 Anurag Misra 2018-08-21 13:08:21
Added temperature-dependence in Grimes Kernel f3a435a0c455df0e4e4908f562f26f5b86ffb63a Anurag M 2018-08-20 06:55:19
Fixed conflict in the use of T in TEqns.H and UEqns.H bb96a2c1c38d89aeef45bc2614c0abce3e2bac37 Anurag M 2018-08-17 08:59:30
Fixed division by zero errors in Grimes kernel e0a0aa507d1159306afae9f7885a9f57e7698eff Anurag M 2018-08-17 08:58:50
Updated Grimes kernel with collision frequency limits, Added mixture temperature equation 2294a5b9a45433d75edee92e86db104a3b94ab65 Anurag M 2018-08-16 21:36:02
Updated Grimes Kernel f608acb3b6da226f28f41de412f6af9f55dc1f42 Anurag M 2018-08-16 13:35:57
Minor changes to Grimes kernel, still not functional cc44c1e64b44719780ae6b0f3445055854f7cf99 Anurag M 2018-08-16 08:12:02
Updated code to be compatible with OpenFOAM6, integrated latest commits from OpenQBMM-dev a6cab1ad0759989cf0d8b3d5a3dafa7e25fdde82 Anurag M 2018-08-15 17:29:12
update coalescence buoyancyInducedSI, small speedup ce96614597feb467bc73ff4b3d8d3b622c2942f2 Cyrille Bonamy 2018-05-17 22:38:21
Updated test cases to work with OF5.0 a94165663b5086612bd57bed9915bb0b13c616ae Anurag.Misra 2018-04-27 11:57:40
Moved ifPorous back to time directory due to problems with case decomposition, changed write settings instead d7c92de5c17607f86b7fe614ac49964762826e84 Anurag M 2018-04-27 09:29:51
moved location of ifPorous to constant directory to avoid problems with restarting case 7765cfdc95e2733af395f004754f21d4310fb249 Anurag M 2018-04-27 08:17:50
Added lower bound for the efficiency term in buoyancyInduced kernel 37484d897975e1c3ecb20462a68bd0cd09925f9e Anurag M 2018-04-26 13:16:23
moved lookup of fields to constructor for efficiency, added spatially inhomogeneous buoyancyInduced kernel 7a444cf89c257318fabfee2618a45a96231eebcc Anurag M 2018-04-24 17:14:42
included constant coalescence kernel for testing... 21d0518c24475f61f326fbf4942345ac7bd8106b Anurag M 2018-04-23 17:56:36
modified case batchSettlerFine 9e6d0df52ab1b47d72c44f79cbf2b9f3fe9d051f Anurag M 2018-04-23 14:43:20
cleaned directory structure, fixed conflicting references to other libraries 97b6c823c552d5c690a78677cf1fbbfd9258388b Anurag M 2018-04-23 14:31:37
Commit 1764c04587a9f47865f353ffa857e04fd369cb81 - Updated code to reflect latest changes in upstream OpenQBMM
Author: Anurag Misra
Author date (UTC): 2018-09-18 13:14
Committer name: Anurag Misra
Committer date (UTC): 2018-09-18 13:14
Parent(s): 0db9d9362d1ef519dfd48ed79eb7fb69dbfdc74a
Signing key:
Tree: 84fd01d6860a976657347154418bf14d61cc8da5
File Lines added Lines deleted
multiphaseEulerPbeFoam/quadratureMethods/momentInversion/univariate/extended/lognormal/lognormalEQMOM.C 2 3
File multiphaseEulerPbeFoam/quadratureMethods/momentInversion/univariate/extended/lognormal/lognormalEQMOM.C changed (mode: 100644) (index f34a19c..68b6b78)
... ... Foam::tmp<Foam::scalarField> Foam::lognormalEQMOM::f(const scalarField& x) const
174 174 ( (
175 175 new scalarField(x.size(), 0.0) new scalarField(x.size(), 0.0)
176 176 ); );
177
177 178 scalarField& y = tmpY.ref(); scalarField& y = tmpY.ref();
178 179
179 180 for (label pNodei = 0; pNodei < nPrimaryNodes_; pNodei++) for (label pNodei = 0; pNodei < nPrimaryNodes_; pNodei++)
180 181 { {
181 scalar mu = log(primaryAbscissae_[pNodei] + SMALL) - sqr(sigma_)/2.0;
182
183 182 y += y +=
184 exp(-sqr(log(x + SMALL) - mu)/(2.0*sqr(sigma_)))
183 exp(-sqr(log(x) - log(primaryAbscissae_[pNodei]))/(2.0*sqr(sigma_)))
185 184 /(x*sigma_*sqrt(2.0*Foam::constant::mathematical::pi)) /(x*sigma_*sqrt(2.0*Foam::constant::mathematical::pi))
186 185 *primaryWeights_[pNodei]; *primaryWeights_[pNodei];
187 186 } }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/velagala/MultiPhaseQBMM

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/velagala/MultiPhaseQBMM

Clone this repository using git:
git clone git://git.rocketgit.com/user/velagala/MultiPhaseQBMM

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main