List of commits:
Subject Hash Author Date (UTC)
Updated coalescence efficiency so it is limited to 1.0 in certain cases 0845bb5240e98a155065130b4ac34a71947d09aa Anurag Misra 2019-12-12 15:56:40
Updated OpenQBMM code base d79f6a5e703145ce57b27980ec75443e390ac288 Anurag Misra 2019-05-15 13:23:25
Update OpenQBMM code base 0ef2e7e1462125ecb2efb03904ce1649271b7aae Anurag Misra 2018-11-05 15:35:04
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
Commit 0845bb5240e98a155065130b4ac34a71947d09aa - Updated coalescence efficiency so it is limited to 1.0 in certain cases
Author: Anurag Misra
Author date (UTC): 2019-12-12 15:56
Committer name: Anurag Misra
Committer date (UTC): 2019-12-12 15:56
Parent(s): d79f6a5e703145ce57b27980ec75443e390ac288
Signing key:
Tree: 62cad473f4ad5cfb74827fced3e3ebdda9e3f9a6
File Lines added Lines deleted
multiphaseEulerPbeFoam/quadratureMethods/populationBalanceModels/populationBalanceSubModels/aggregationKernels/buoyancyInduced/buoyancyInduced.C 1 1
multiphaseEulerPbeFoam/quadratureMethods/populationBalanceModels/populationBalanceSubModels/aggregationKernels/buoyancyInducedSI/buoyancyInducedSI.C 1 1
File multiphaseEulerPbeFoam/quadratureMethods/populationBalanceModels/populationBalanceSubModels/aggregationKernels/buoyancyInduced/buoyancyInduced.C changed (mode: 100644) (index 06509be..fe92385)
... ... Foam::populationBalanceSubModels::aggregationKernels::buoyancyInduced::Ka
163 163
164 164 //- Evaluate efficiency term //- Evaluate efficiency term
165 165 scalar lambda_(Foam::exp(-(Urelative_/Ucrit_.value()))); scalar lambda_(Foam::exp(-(Urelative_/Ucrit_.value())));
166 lambda_ = max(lambda_, 1e-10);
166 lambda_ = min(max(lambda_, 1e-10),1.0);
167 167
168 168 /* /*
169 169 if (min(lambda_) < smallAbs) if (min(lambda_) < smallAbs)
File multiphaseEulerPbeFoam/quadratureMethods/populationBalanceModels/populationBalanceSubModels/aggregationKernels/buoyancyInducedSI/buoyancyInducedSI.C changed (mode: 100644) (index 0089588..e844e2b)
... ... Foam::populationBalanceSubModels::aggregationKernels::buoyancyInducedSI::Ka
152 152
153 153 //- Evaluate efficiency term //- Evaluate efficiency term
154 154 scalar lambda_(Foam::exp(-(Urelative_/Ucrit_.value()))); scalar lambda_(Foam::exp(-(Urelative_/Ucrit_.value())));
155 lambda_ = max(lambda_, 1e-10);
155 lambda_ = min(max(lambda_, 1e-10),1.0);
156 156
157 157 aggregationK aggregationK
158 158 = Ca_.value() = Ca_.value()
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