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

[Algo_QC] Feature addition: Saving each \Delta_t time step #10

Open
wants to merge 26 commits into
base: next
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a2f4798
Adding TRUST-1.7.8 compatible IJK_Kernel files
YanisZatout Oct 3, 2023
abb7bba
Adding raw TRUST-1.7.8 compatible Algo_QC
YanisZatout Oct 3, 2023
4a5dc87
[IJK/Algo_QC] Adding compatible Algo_QC 192, bug correction QUICK
YanisZatout Oct 18, 2023
20ffa6b
[IJK/Algo_QC] adding CHANGELOG
YanisZatout Oct 18, 2023
e3ef427
YanisZatout Oct 18, 2023
124cf75
Added `calculer' method for BALTIK to compile
YanisZatout Dec 12, 2023
74a04d6
Adding centered order 2 scheme for momentum convection in IJK
YanisZatout Dec 12, 2023
6b549f4
Added statistics module for restarting simulations
YanisZatout Dec 12, 2023
ec8a741
Updating correct DNS_QC class
YanisZatout Dec 14, 2023
0ffdd13
Copying Algo_QC to TrioCFD
YanisZatout Dec 14, 2023
73fe724
[IJK/Algo_QC] Bug correction: copy in memory
YanisZatout Dec 15, 2023
7270689
Fix duplication source file
Dec 20, 2023
64ff06e
Delete duplicated file
Dec 20, 2023
11d26ae
Fix OpConvCentre2IJKScalar.tpp
Dec 20, 2023
251e1a5
Fix OpConvIJKQuickScalar.tpp
Dec 20, 2023
9b4facb
Update file with v1.9.3
Dec 20, 2023
11fa267
Fix DNS
Dec 20, 2023
2cb1215
Remove Version_kernel
Dec 20, 2023
f4166fb
Delete patch
Dec 20, 2023
8a7f357
Moving Algo_QC from ./src/Multiphase to ./src
Dec 20, 2023
c35bf16
Adding Algo_QC documentation in section 3
YanisZatoutLISN Feb 26, 2024
f4fd489
Adding different tests for LES models in Algo_QC
YanisZatoutLISN Mar 15, 2024
98733ee
[IJK/Algo_QC] Adding sheer parameter for velocity
YanisZatoutLISN Mar 29, 2024
8f8239f
[IJK/Algo_QC] Change in the statistics/raw data
YanisZatoutLISN Mar 29, 2024
6262a77
[IJK/Algo_QC] Adding test case for save_each_delta_t keyword
YanisZatoutLISN Mar 29, 2024
15e07c2
[IJK/Algo_QC] Adding documentation for keyword dt_save_oscillating_cy…
YanisZatoutLISN Apr 15, 2024
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
Fix OpConvIJKQuickScalar.tpp
Fabrice BUFFA committed Dec 20, 2023
commit 251e1a5bdf59a0fbebd7ff09ce4985b427e9d3f4
99 changes: 0 additions & 99 deletions src/Multiphase/Algo_QC/src/patch/OpConvIJKQuickScalar.tpp

This file was deleted.

Original file line number Diff line number Diff line change
@@ -39,8 +39,8 @@ void OpConvIJKQuickScalar_double::compute_flux_(IJK_Field_local_double& resu, co
IJK_double_ptr resu_ptr(resu, 0, 0, 0);
const int nx = _DIR_==DIRECTION::X ? input_field_->ni() + 1 : input_field_->ni();
const int ny = _DIR_==DIRECTION::Y ? input_field_->nj() + 1 : input_field_->nj();
const double dx = channel_data_.get_delta_x();
const double surface = channel_data_.get_delta_y() * channel_data_.get_delta_z()[k_layer];
const double delta_xyz = _DIR_==DIRECTION::Z ? (channel_data_.get_delta_z()[k_layer] + channel_data_.get_delta_z()[k_layer-1]) * 0.5 : channel_data_.get_delta((int)_DIR_);
const double surface = channel_data_.get_surface(k_layer, 1, (int)_DIR_);
if(_DIR_==DIRECTION::Z)
{
// Are we on the wall ?
@@ -62,7 +62,7 @@ void OpConvIJKQuickScalar_double::compute_flux_(IJK_Field_local_double& resu, co
}
}

const double dx_squared_over_8 = dx * dx * 0.125;
const double delta_xyz_squared_over_8 = delta_xyz * delta_xyz * 0.125;
const int imax = nx;
const int jmax = ny;
const int vsize = Simd_double::size();