mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
This is a small, simple tutorial for testing the implementation of large, incomplete data bases. In this tutorial case, rStatAnalysis is used as post-processor and it uses a data base in memory, which is smaller than the number of snapshots on disk.
24 lines
318 B
Bash
Executable File
24 lines
318 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# clean the case
|
|
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial clean functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
# remove mesh
|
|
rm -rf constant/polyMesh/*
|
|
|
|
rm -rf 0 > /dev/null 2>&1
|
|
|
|
cleanCase
|
|
|
|
rm rec_jump.dat
|
|
rm recurrenceMatrix
|
|
rm recurrencePath
|
|
|
|
cd recMat
|
|
|
|
./clean.sh
|