cfl-minds / cnn_drag_prediction

A convolutional neural network for drag prediction in laminar flows

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cnn_drag_prediction

This repository contains a Python code that performs the training of a VGG-like convolutional neural network (CNN) to make drag prediction of arbitrary 2D shapes in low-Reynolds laminar flows (Re = 10). It exploits a custom dataset of random shapes and associated reference drag values for training. The prediction can then be extrapolated to arbitrary shapes, such as geometrical shapes or airfoils.

Citation

The publication associated to this repository can be found here (article) and here (pre-print).
If you use this repository for your own research, please consider citing it.

Usage

The dataset is zipped in the MDS0/ folder to save space on the github repository. You need to unzip it before proceeding further. You will need tensorflow and keras installed.

network

Training

To train the network described in the paper, just run python3 train_network.py. First, the dataset will be loaded from the MDS0 folder. Then, training will start. Training on a decent GPU card is highly recommended (approx. 25 minutes are required on a single Tesla V100 card). Once learning is over, the best model best.h5 is saved in the working repository. If you wish to make changes, most parameters are accessible in params.py.

loss

Predicting

You can test the produced model on the test subset using python3 predict_test_drag.py. The test subset will be loaded, and the relative errors will be computed. Remember that the multiple sources of randomness (including GPU cards) can lead to slightly different results from one run to another. Same as above, most parameters are accessible in params.py.

drag_test

You can also predict the drag of a shape of your choice by running python3 predict_image_drag.py (see the parameters at the top of the file). Several shapes are available in the imgs repository.

drag_predictions

Related repositories

You can find an expanded version of the shape-generation tool contained in this repository here.

About

A convolutional neural network for drag prediction in laminar flows

License:MIT License


Languages

Language:Python 100.0%