-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
19 lines (14 loc) · 824 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
default: all
#dataset.lammps should be an ovito export using the lammps format, all timesteps in one file, exporting id x y z
dataset.out: dataset.lammps
python3 scripts/many_to_one.py dataset.lammps dataset.out
#The first argument is the data file, the rest are numbers of clusters to generate
pca-dataset-50.clusters: dataset.out
python scripts/process_paths_pca.py dataset.out 50 100 200
#The second argument is the number of layers
#The rest of the arguments are the gap sizes to use for creating triangles
dataset-0.01.tris: dataset.out
python scripts/Surfaces.py dataset.out 4 0.1 0.05 0.03 0.01 0.005 0.003 0.001
dataset.feet: dataset.lammps
python3 scripts/create_foot_file.py dataset.lammps footcomp2_ .vtk feet/dataset dataset.feet
all: dataset.out dataset-0.01.tris pca-dataset-50.clusters dataset.feet