Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VirtualFluids
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iRMB
VirtualFluids
Merge requests
!313
Remove LBMReal
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove LBMReal
soe.peters/VirtualFluids:feature/removeLBMReal
into
develop
Overview
0
Commits
2
Pipelines
0
Changes
41
Merged
Sören Peters
requested to merge
soe.peters/VirtualFluids:feature/removeLBMReal
into
develop
1 year ago
Overview
0
Commits
2
Pipelines
0
Changes
41
Expand
Can be merged after
!312 (merged)
0
0
Merge request reports
Compare
develop
version 2
1ac40542
1 year ago
version 1
69fc84d9
1 year ago
develop (base)
and
latest version
latest version
1ac40542
2 commits,
1 year ago
version 2
1ac40542
3 commits,
1 year ago
version 1
69fc84d9
2 commits,
1 year ago
41 files
+
222
−
238
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
41
Search (e.g. *.vue) (Ctrl+P)
apps/cpu/AcousticPulse/ap.cpp
+
16
−
16
Options
@@ -20,25 +20,25 @@ void run()
//string pathname = "d:/temp/AcousticPulse40Cube2y_test";
//double endTime = 20;
//double outTime = 20;
//
LBMR
eal dx = 0.05;
//
r
eal dx = 0.05;
//80
//string pathname = "d:/temp/AcousticPulse80Cube2y";
//double endTime = 40;
//double outTime = 40;
//
LBMR
eal dx = 0.025;
//
r
eal dx = 0.025;
//160
//string pathname = "d:/temp/AcousticPulse160Cube2y";
//double endTime = 80;
//double outTime = 80;
//
LBMR
eal dx = 0.0125;
//
r
eal dx = 0.0125;
//
LBMR
eal dx = 0.1;
//
LBMR
eal dx = 1.66666666667e-2; //120
//
r
eal dx = 0.1;
//
r
eal dx = 1.66666666667e-2; //120
//
LBMR
eal rhoLB = 0.0;
//
LBMR
eal nuLB = 3.97e-7;
//
r
eal rhoLB = 0.0;
//
r
eal nuLB = 3.97e-7;
//////////////////////////////////////////////////////////////////////////
//DLR-F16 test
@@ -46,25 +46,25 @@ void run()
string
pathname
=
"d:/temp/AcousticPulseXZ-4th-0.003"
;
int
endTime
=
20
;
double
outTime
=
20
;
LBMR
eal
dx
=
0.003
;
LBMR
eal
rhoLB
=
0.0
;
LBMR
eal
nuLB
=
8.66025e-6
;
r
eal
dx
=
0.003
;
r
eal
rhoLB
=
0.0
;
r
eal
nuLB
=
8.66025e-6
;
//////////////////////////////////////////////////////////////////////////
////dx_coarse = 0.0015 mm
//string pathname = "d:/temp/AcousticPulseXZ-4th-0.0015";
//double endTime = 40;
//double outTime = 40;
//
LBMR
eal dx = 0.0015;
//
LBMR
eal rhoLB = 0.0;
//
LBMR
eal nuLB = 8.66025e-6*2.0;
//
r
eal dx = 0.0015;
//
r
eal rhoLB = 0.0;
//
r
eal nuLB = 8.66025e-6*2.0;
////////////////////////////////////////////////////////////////////////////
////dx_coarse = 0.00075 mm
//string pathname = "d:/temp/AcousticPulseXZ-4th-0.00075";
//double endTime = 80;
//double outTime = 80;
//
LBMR
eal dx = 0.00075;
//
LBMR
eal rhoLB = 0.0;
//
LBMR
eal nuLB = 8.66025e-6*4.0;
//
r
eal dx = 0.00075;
//
r
eal rhoLB = 0.0;
//
r
eal nuLB = 8.66025e-6*4.0;
//////////////////////////////////////////////////////////////////////////
SPtr
<
LBMUnitConverter
>
conv
=
SPtr
<
LBMUnitConverter
>
(
new
LBMUnitConverter
());
Loading