Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Import latest changes #155

Merged
merged 39 commits into from
Oct 11, 2020
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
a6f1cd6
fix wrong numStep if restart time is non-zero
stgeke Sep 17, 2020
0923118
unload drashan on summit
stgeke Sep 17, 2020
5fb242f
correct wrong bc type in tgv.par
stgeke Sep 17, 2020
060791f
add more timers
stgeke Sep 17, 2020
e344a73
do not solve for the difference
stgeke Sep 17, 2020
cf32d70
fix wrong scale factor for lowMach
stgeke Sep 17, 2020
ab6335d
fix projection if we do not solve for the solution differnce
stgeke Sep 18, 2020
b622215
fix residual factor if Nfields>1
stgeke Sep 18, 2020
7e52f59
add par keys
stgeke Sep 18, 2020
969f8c9
add channel example with varying visocity (not tested yet)
stgeke Sep 18, 2020
5ecb448
run at least one iteration inside CG
stgeke Sep 18, 2020
ec56bb6
add missing stress things
stgeke Sep 18, 2020
428716a
Allow for nodes to be computed on the fly. (#7)
MalachiTimothyPhillips Sep 18, 2020
0968427
Add in additional levels
MalachiTimothyPhillips Sep 21, 2020
0758e98
add more timers during setup
stgeke Sep 23, 2020
2545553
Merge branch 'compute-nodes' of https://github.com/MalachiTimothyPhil…
stgeke Sep 23, 2020
81cdba6
make cubN a runtime parameter, delete nodes files and fix bug in exte…
stgeke Sep 23, 2020
ce129dc
do load unused kernel
stgeke Sep 23, 2020
29968a5
fix wrong stressFormulation flag
stgeke Sep 23, 2020
bc39a20
add weak derivative matrix
stgeke Sep 25, 2020
cbb1ae3
change default to Chebyshev for BoomerAMG
stgeke Sep 25, 2020
efc2ad1
Remove unnecessary parts of AMGSetup
stgeke Sep 25, 2020
c36d934
correct some things related to weak velocity residual (still not work…
stgeke Sep 25, 2020
de3a5fb
fix incorrect slip BC handling in surface terms for pressure residual
stgeke Sep 25, 2020
dac61f3
fix proj issue when not solving for the solution difference
Sep 25, 2020
3dd6735
fix scalar flux + div by zero if r==0 in cg
Sep 30, 2020
71013c1
remove uninitialized okl parameter
Sep 30, 2020
5f3e7ac
remove matlab code to generate node files
Sep 30, 2020
c217a57
compute weak velocity residual
Oct 2, 2020
84fdac5
Import (#156)
MalachiTimothyPhillips Oct 5, 2020
a23af8f
add non-zero outflow handling for weak residual
Oct 5, 2020
7335e98
fix variable properties for velocity only + fix several issue with ch…
Oct 5, 2020
0d75fcc
make lowMach a plug-in
Oct 5, 2020
2db6bcd
delete incomplete channel example + remove variable prop or visc par key
Oct 5, 2020
fb54c94
update par file settings
Oct 5, 2020
36b4f5c
add missing lowMach files
Oct 8, 2020
784ae8e
add flux testing to ethier
Oct 8, 2020
5b50ce9
add LMM + o_LMM + linAlg
Oct 10, 2020
b7d4a41
add some lingAlg stuff to examples
Oct 11, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
run at least one iteration inside CG
  • Loading branch information
stgeke committed Sep 18, 2020
commit 5ecb4488f22c9991861142fcf3a748ce9de5994b
2 changes: 1 addition & 1 deletion src/libP/solvers/elliptic/src/PCG.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ int pcg(elliptic_t* elliptic, occa::memory &o_r, occa::memory &o_x,
printf("CG: initial res norm %12.12f WE NEED TO GET TO %12.12f \n",
sqrt(rdotr0), sqrt(TOL));

if (rdotr0 <= TOL && !fixedIterationCountFlag) return 0;
//if (rdotr0 <= TOL && !fixedIterationCountFlag) return 0;

int iter;
for(iter = 1; iter <= MAXIT; ++iter) {
Expand Down