Datasets:

Modalities:
Image
Size:
< 1K
ArXiv:
Libraries:
Datasets
License:
neashton commited on
Commit
3e5e72b
·
verified ·
1 Parent(s): ee9b15d

Delete README.txt

Browse files
Files changed (1) hide show
  1. README.txt +0 -125
README.txt DELETED
@@ -1,125 +0,0 @@
1
- AhmedML: High-Fidelity Computational Fluid Dynamics dataset for incompressible, low-speed bluff body aerodynamics
2
- -------
3
-
4
- version history:
5
- ---------------
6
- 12/11/2024 - added validation folder that contains the full output from all four mesh levels that were used to validate the methodology used.
7
- 04/08/2024 - updates to the file description and arxiv paper
8
- 05/06/2024 - global forces/geo added for all runs
9
- 01/05/2024 - force/moments corrected (prior version had incorrect Cs data)
10
- 18/04/2024 - draft version produced
11
-
12
- contact:
13
- ----------
14
- Neil Ashton (who can pass messages to the contributors) - [email protected]
15
-
16
- website:
17
- ----------
18
- Visit https://caemldatasets.org for the latest information on the datasets
19
-
20
- Summary:
21
- -------
22
-
23
- This dataset contains 500 different geometric variations of the Ahmed Car Body - a simplified car-like shape that exhibits many of the flow topologies that are present on bluff bodies such as road vehicles. The dataset contains a wide range of geometries that exhibit fundamental flow physics such as geometry and pressure-induced flow separation of flows as well as 3D vortical structures. Each variation of the Ahmed car body were run using a time-accurate hybrid Reynolds-Averaged Navier-Stokes (RANS) - Large-Eddy Simulation (LES) turbulence modelling approach using the open-source CFD code OpenFOAM. The dataset contains both surface boundary, 3D volume, geometry STL and forces/moments in open-source formats (.vtu,.vtp).
24
-
25
- CFD Solver:
26
- ----------
27
- All cases were run using the open-source finite-volume code OpenFOAM v2212. Each case was run transiently for approximately 80 convective time units (CTU) on meshes of approximately 20M cells. Please see the paper for full details on the code and validation:
28
-
29
- How to cite this dataset:
30
- ----------------
31
- In order to cite the use of this dataset please cite the paper below which contains full details on the dataset. It can be found here: https://arxiv.org/abs/2407.20801
32
-
33
- @article{ashton2024ahmed,
34
- title = {{AhmedML: High-Fidelity Computational Fluid Dynamics dataset for incompressible, low-speed bluff body aerodynamics}},
35
- year = {2024},
36
- journal = {arxiv.org},
37
- author = {Ashton, Neil and Maddix, Danielle and Gundry, Samuel and Shabestari, Parisa}
38
- }
39
-
40
- Files:
41
- -------
42
- Each folder (e.g run_1,run_2...run_"i" etc) corresponds to a different geometry that contains the following files where "i" is the run number:
43
- ahmed_i.stl : geometry stl (~5mb):
44
- geo_parameters_1.csv (missing run 500): parameters that define the geometry
45
- boundary_i.vtp : Boundary VTP (~500mb)
46
- volume_i.vtu : Volume field VTU (~5GB)
47
- force_mom_i.csv : forces (Cd,Cl) time-averaged with constant reference area
48
- force_mom_varref_i.csv : forces (Cd,Cl) time-averaged with varying reference area
49
- slices : folder containing .vtp slices in x,y,z that contain flow-field variables
50
- images : (folder) that contains images of the following variables (CpT, UxMean) for slices of the domain in the X,Y & Z locations.
51
- In addition we provide:
52
- force_mom_all.csv : run, cd,cl for all runs in a single file
53
- force_mom_varref_all.csv : run, cd,cl for all runs in a single file with varying reference area
54
- geo_parameters_all.csv : all the geometry parameters for each run inside a single file
55
- ahmedml.slvs : SolveSpace input file to create the parametric geometries
56
- stl : folder containing stl files that were used as inputs
57
- to the OpenFOAM process
58
- openfoam-casesetup.tgz : complete OpenFOAM setup that can be used to
59
- extend or reproduce the dataset
60
- validation : folder containing full outputs from all four mesh levels that were used to validate the methodology
61
-
62
- How to download:
63
- ----------------
64
- Please ensure you have enough local disk space before downloading (complete dataset is 2TB) and consider the examples below that provide ways to download just the files you need:
65
-
66
- First Step: Install AWS Command Line Interface (CLI):
67
- --------------
68
-
69
- Follow instructions here: https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html
70
-
71
- Second Step: Use the AWS CLI to download the dataset
72
- --------------
73
- Follow the following examples for how to download all or part of the dataset.
74
-
75
- Note 1 : If you don't have an AWS account you will need to add --no-sign-request within your AWS command i.e aws s3 cp --no-sign-request --recursive etc...
76
- Note 2 : If you have an AWS account, please note the bucket is in us-east-1, so you will have the fastest download if you have your AWS service or EC2 instance running in us-east-1.
77
-
78
- Example 1: Download all files (~2TB)
79
- --------------------------
80
- aws s3 cp --recursive s3://caemldatasets/ahmed/dataset .
81
-
82
- Example 2: only download select files (STL,images & force and moments):
83
- --------------------------
84
- Create the following bash script that could be adapted to loop through only select runs or to change to download different files e.g boundary/volume.
85
- ''
86
- #!/bin/bash
87
-
88
- # Set the S3 bucket and prefix
89
- S3_BUCKET="caemldatasets"
90
- S3_PREFIX="ahmed/dataset"
91
-
92
- # Set the local directory to download the files
93
- LOCAL_DIR="./ahmed_data"
94
-
95
- # Create the local directory if it doesn't exist
96
- mkdir -p "$LOCAL_DIR"
97
-
98
- # Loop through the run folders from 1 to 500
99
- for i in $(seq 1 500); do
100
- RUN_DIR="run_$i"
101
- RUN_LOCAL_DIR="$LOCAL_DIR/$RUN_DIR"
102
-
103
- # Create the run directory if it doesn't exist
104
- mkdir -p "$RUN_LOCAL_DIR"
105
-
106
- # Download the ahmed_i.stl file
107
- aws s3 cp "s3://$S3_BUCKET/$S3_PREFIX/$RUN_DIR/ahmed_$i.stl" "$RUN_LOCAL_DIR/" --only-show-errors
108
-
109
- # Download the force_mom_i.csv file
110
- aws s3 cp "s3://$S3_BUCKET/$S3_PREFIX/$RUN_DIR/force_mom_$i.csv" "$RUN_LOCAL_DIR/" --only-show-errors
111
-
112
- aws s3 cp --recursive "s3://$S3_BUCKET/$S3_PREFIX/$RUN_DIR/images" "$RUN_LOCAL_DIR/images/" --only-show-errors
113
- done
114
- ''
115
-
116
- Acknowledgements
117
- -----------
118
- OpenFOAM solver and workflow development by Neil Ashton (Amazon Web Services)
119
- Geometry parameterization by Samuel Gundry (Amazon Web Services) and Parisa Shabestari (Amazon Web Services)
120
- Guidance on dataset preparation for ML by Danielle Madix (Amazon Web Services)
121
- Simulation runs, HPC setup and dataset preparation by Neil Ashton (Amazon Web Services)
122
-
123
- License
124
- ----
125
- This dataset is provided under the CC BY SA 4.0 license, please see LICENSE.txt for full license text.