├── .gitignore ├── FRAMEWORK.txt ├── README.md ├── ext_cyl_ARN ├── ARNAD ├── README.md ├── SIZE ├── TSTPRD ├── compile_script ├── debug.h ├── ext_cyl.par ├── ext_cyl.usr ├── libs │ ├── ARmake.inc_dardel_aocc │ ├── ARmake.inc_dardel_gcc │ ├── ARmake.inc_lindgren_pgi │ ├── ARmake.inc_mpi_gcc │ ├── ARmake.inc_triolith_intel │ ├── README │ └── parpack96_chk.tar.gz └── makefile_usr.inc ├── ext_cyl_DNS ├── README.md ├── SIZE ├── compile_script ├── ext_cyl.his ├── ext_cyl.par ├── ext_cyl.re2 ├── ext_cyl.usr └── makefile_usr.inc ├── ext_cyl_LIN ├── README.md ├── SIZE ├── baseflow.restart ├── compile_script ├── ext_cyl.par ├── ext_cyl.usr └── makefile_usr.inc ├── ext_cyl_PWI ├── README.md ├── SIZE ├── TSTPRD ├── compile_script ├── ext_cyl.par ├── ext_cyl.usr └── makefile_usr.inc ├── ext_cyl_SFD ├── README.md ├── SIZE ├── compile_script ├── ext_cyl.his ├── ext_cyl.par ├── ext_cyl.usr └── makefile_usr.inc ├── phill_PSTAT2D ├── README.md ├── pp_Nek │ ├── README.md │ ├── SIZE │ ├── compile_script │ ├── makefile_usr.inc │ ├── phill.box │ ├── phill.par │ └── phill.usr └── pp_Python │ ├── inputs_phill_pp.in │ ├── main_pHill_PP.py │ └── modules │ ├── interface.py │ ├── plotter.py │ ├── reader_int_fld.py │ ├── turbStats.py │ └── writer_int_pos.py ├── phill_PSTAT3D ├── README.md ├── SIZE ├── compile_script ├── makefile_usr.inc ├── phill.box ├── phill.par ├── phill.usr ├── reader_int_fld.py └── writer_int_pos.py ├── phill_STAT ├── README.md ├── SIZE ├── STATD ├── compile_script ├── makefile_usr.inc ├── phill.box ├── phill.par └── phill.usr ├── phill_TRIP ├── README.md ├── SIZE ├── TRIPLD ├── compile_script ├── makefile_usr.inc ├── phill.box ├── phill.par └── phill.usr ├── phill_TSRS ├── README.md ├── SIZE ├── TSRSD ├── compile_script ├── makefile_usr.inc ├── phill.box ├── phill.par ├── phill.usr ├── reader_pts_fld.py └── writer_int_pos.py ├── pipe_PSTAT2D ├── README.md ├── pp_nek │ ├── DATA │ │ └── README.md │ ├── README.md │ ├── SIZE │ ├── compile_script │ ├── makefile_usr.inc │ ├── run.sh │ ├── turbPipe.geo │ ├── turbPipe.par │ └── turbPipe.usr └── pp_python │ ├── MODULES │ ├── __pycache__ │ │ └── reader.cpython-38.pyc │ ├── cartTerms.py │ ├── plotter.py │ ├── reader.py │ └── rotAvg.py │ ├── OUTPUT │ └── README.md │ ├── input.txt │ ├── main_pipePP.py │ ├── nom_fields.txt │ └── pipeInterpMesh.py ├── pipe_STAT ├── README.md ├── SIZE ├── STATD ├── compile_script ├── makefile_usr.inc ├── turbPipe.geo ├── turbPipe.par └── turbPipe.usr └── pipe_gSyEM ├── GSYEMD ├── README.md ├── SIZE ├── compile_script ├── gsyem_prof_01.txt ├── makefile_usr.inc ├── pipe.par ├── pipe.re2 └── pipe.usr /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/.gitignore -------------------------------------------------------------------------------- /FRAMEWORK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/FRAMEWORK.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/README.md -------------------------------------------------------------------------------- /ext_cyl_ARN/ARNAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/ARNAD -------------------------------------------------------------------------------- /ext_cyl_ARN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/README.md -------------------------------------------------------------------------------- /ext_cyl_ARN/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/SIZE -------------------------------------------------------------------------------- /ext_cyl_ARN/TSTPRD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/TSTPRD -------------------------------------------------------------------------------- /ext_cyl_ARN/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/compile_script -------------------------------------------------------------------------------- /ext_cyl_ARN/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/debug.h -------------------------------------------------------------------------------- /ext_cyl_ARN/ext_cyl.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/ext_cyl.par -------------------------------------------------------------------------------- /ext_cyl_ARN/ext_cyl.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/ext_cyl.usr -------------------------------------------------------------------------------- /ext_cyl_ARN/libs/ARmake.inc_dardel_aocc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/libs/ARmake.inc_dardel_aocc -------------------------------------------------------------------------------- /ext_cyl_ARN/libs/ARmake.inc_dardel_gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/libs/ARmake.inc_dardel_gcc -------------------------------------------------------------------------------- /ext_cyl_ARN/libs/ARmake.inc_lindgren_pgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/libs/ARmake.inc_lindgren_pgi -------------------------------------------------------------------------------- /ext_cyl_ARN/libs/ARmake.inc_mpi_gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/libs/ARmake.inc_mpi_gcc -------------------------------------------------------------------------------- /ext_cyl_ARN/libs/ARmake.inc_triolith_intel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/libs/ARmake.inc_triolith_intel -------------------------------------------------------------------------------- /ext_cyl_ARN/libs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/libs/README -------------------------------------------------------------------------------- /ext_cyl_ARN/libs/parpack96_chk.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/libs/parpack96_chk.tar.gz -------------------------------------------------------------------------------- /ext_cyl_ARN/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_ARN/makefile_usr.inc -------------------------------------------------------------------------------- /ext_cyl_DNS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_DNS/README.md -------------------------------------------------------------------------------- /ext_cyl_DNS/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_DNS/SIZE -------------------------------------------------------------------------------- /ext_cyl_DNS/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_DNS/compile_script -------------------------------------------------------------------------------- /ext_cyl_DNS/ext_cyl.his: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_DNS/ext_cyl.his -------------------------------------------------------------------------------- /ext_cyl_DNS/ext_cyl.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_DNS/ext_cyl.par -------------------------------------------------------------------------------- /ext_cyl_DNS/ext_cyl.re2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_DNS/ext_cyl.re2 -------------------------------------------------------------------------------- /ext_cyl_DNS/ext_cyl.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_DNS/ext_cyl.usr -------------------------------------------------------------------------------- /ext_cyl_DNS/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_DNS/makefile_usr.inc -------------------------------------------------------------------------------- /ext_cyl_LIN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_LIN/README.md -------------------------------------------------------------------------------- /ext_cyl_LIN/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_LIN/SIZE -------------------------------------------------------------------------------- /ext_cyl_LIN/baseflow.restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_LIN/baseflow.restart -------------------------------------------------------------------------------- /ext_cyl_LIN/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_LIN/compile_script -------------------------------------------------------------------------------- /ext_cyl_LIN/ext_cyl.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_LIN/ext_cyl.par -------------------------------------------------------------------------------- /ext_cyl_LIN/ext_cyl.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_LIN/ext_cyl.usr -------------------------------------------------------------------------------- /ext_cyl_LIN/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_LIN/makefile_usr.inc -------------------------------------------------------------------------------- /ext_cyl_PWI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_PWI/README.md -------------------------------------------------------------------------------- /ext_cyl_PWI/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_PWI/SIZE -------------------------------------------------------------------------------- /ext_cyl_PWI/TSTPRD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_PWI/TSTPRD -------------------------------------------------------------------------------- /ext_cyl_PWI/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_PWI/compile_script -------------------------------------------------------------------------------- /ext_cyl_PWI/ext_cyl.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_PWI/ext_cyl.par -------------------------------------------------------------------------------- /ext_cyl_PWI/ext_cyl.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_PWI/ext_cyl.usr -------------------------------------------------------------------------------- /ext_cyl_PWI/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_PWI/makefile_usr.inc -------------------------------------------------------------------------------- /ext_cyl_SFD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_SFD/README.md -------------------------------------------------------------------------------- /ext_cyl_SFD/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_SFD/SIZE -------------------------------------------------------------------------------- /ext_cyl_SFD/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_SFD/compile_script -------------------------------------------------------------------------------- /ext_cyl_SFD/ext_cyl.his: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_SFD/ext_cyl.his -------------------------------------------------------------------------------- /ext_cyl_SFD/ext_cyl.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_SFD/ext_cyl.par -------------------------------------------------------------------------------- /ext_cyl_SFD/ext_cyl.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_SFD/ext_cyl.usr -------------------------------------------------------------------------------- /ext_cyl_SFD/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/ext_cyl_SFD/makefile_usr.inc -------------------------------------------------------------------------------- /phill_PSTAT2D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/README.md -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Nek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Nek/README.md -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Nek/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Nek/SIZE -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Nek/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Nek/compile_script -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Nek/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Nek/makefile_usr.inc -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Nek/phill.box: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Nek/phill.box -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Nek/phill.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Nek/phill.par -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Nek/phill.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Nek/phill.usr -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Python/inputs_phill_pp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Python/inputs_phill_pp.in -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Python/main_pHill_PP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Python/main_pHill_PP.py -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Python/modules/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Python/modules/interface.py -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Python/modules/plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Python/modules/plotter.py -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Python/modules/reader_int_fld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Python/modules/reader_int_fld.py -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Python/modules/turbStats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Python/modules/turbStats.py -------------------------------------------------------------------------------- /phill_PSTAT2D/pp_Python/modules/writer_int_pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT2D/pp_Python/modules/writer_int_pos.py -------------------------------------------------------------------------------- /phill_PSTAT3D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT3D/README.md -------------------------------------------------------------------------------- /phill_PSTAT3D/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT3D/SIZE -------------------------------------------------------------------------------- /phill_PSTAT3D/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT3D/compile_script -------------------------------------------------------------------------------- /phill_PSTAT3D/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT3D/makefile_usr.inc -------------------------------------------------------------------------------- /phill_PSTAT3D/phill.box: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT3D/phill.box -------------------------------------------------------------------------------- /phill_PSTAT3D/phill.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT3D/phill.par -------------------------------------------------------------------------------- /phill_PSTAT3D/phill.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT3D/phill.usr -------------------------------------------------------------------------------- /phill_PSTAT3D/reader_int_fld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT3D/reader_int_fld.py -------------------------------------------------------------------------------- /phill_PSTAT3D/writer_int_pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_PSTAT3D/writer_int_pos.py -------------------------------------------------------------------------------- /phill_STAT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_STAT/README.md -------------------------------------------------------------------------------- /phill_STAT/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_STAT/SIZE -------------------------------------------------------------------------------- /phill_STAT/STATD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_STAT/STATD -------------------------------------------------------------------------------- /phill_STAT/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_STAT/compile_script -------------------------------------------------------------------------------- /phill_STAT/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_STAT/makefile_usr.inc -------------------------------------------------------------------------------- /phill_STAT/phill.box: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_STAT/phill.box -------------------------------------------------------------------------------- /phill_STAT/phill.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_STAT/phill.par -------------------------------------------------------------------------------- /phill_STAT/phill.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_STAT/phill.usr -------------------------------------------------------------------------------- /phill_TRIP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TRIP/README.md -------------------------------------------------------------------------------- /phill_TRIP/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TRIP/SIZE -------------------------------------------------------------------------------- /phill_TRIP/TRIPLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TRIP/TRIPLD -------------------------------------------------------------------------------- /phill_TRIP/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TRIP/compile_script -------------------------------------------------------------------------------- /phill_TRIP/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TRIP/makefile_usr.inc -------------------------------------------------------------------------------- /phill_TRIP/phill.box: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TRIP/phill.box -------------------------------------------------------------------------------- /phill_TRIP/phill.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TRIP/phill.par -------------------------------------------------------------------------------- /phill_TRIP/phill.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TRIP/phill.usr -------------------------------------------------------------------------------- /phill_TSRS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TSRS/README.md -------------------------------------------------------------------------------- /phill_TSRS/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TSRS/SIZE -------------------------------------------------------------------------------- /phill_TSRS/TSRSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TSRS/TSRSD -------------------------------------------------------------------------------- /phill_TSRS/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TSRS/compile_script -------------------------------------------------------------------------------- /phill_TSRS/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TSRS/makefile_usr.inc -------------------------------------------------------------------------------- /phill_TSRS/phill.box: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TSRS/phill.box -------------------------------------------------------------------------------- /phill_TSRS/phill.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TSRS/phill.par -------------------------------------------------------------------------------- /phill_TSRS/phill.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TSRS/phill.usr -------------------------------------------------------------------------------- /phill_TSRS/reader_pts_fld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TSRS/reader_pts_fld.py -------------------------------------------------------------------------------- /phill_TSRS/writer_int_pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/phill_TSRS/writer_int_pos.py -------------------------------------------------------------------------------- /pipe_PSTAT2D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/README.md -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_nek/DATA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_nek/DATA/README.md -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_nek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_nek/README.md -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_nek/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_nek/SIZE -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_nek/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_nek/compile_script -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_nek/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_nek/makefile_usr.inc -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_nek/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_nek/run.sh -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_nek/turbPipe.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_nek/turbPipe.geo -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_nek/turbPipe.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_nek/turbPipe.par -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_nek/turbPipe.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_nek/turbPipe.usr -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_python/MODULES/__pycache__/reader.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_python/MODULES/__pycache__/reader.cpython-38.pyc -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_python/MODULES/cartTerms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_python/MODULES/cartTerms.py -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_python/MODULES/plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_python/MODULES/plotter.py -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_python/MODULES/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_python/MODULES/reader.py -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_python/MODULES/rotAvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_python/MODULES/rotAvg.py -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_python/OUTPUT/README.md: -------------------------------------------------------------------------------- 1 | Final 1D statistics are going to be saved here. 2 | -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_python/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_python/input.txt -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_python/main_pipePP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_python/main_pipePP.py -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_python/nom_fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_python/nom_fields.txt -------------------------------------------------------------------------------- /pipe_PSTAT2D/pp_python/pipeInterpMesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_PSTAT2D/pp_python/pipeInterpMesh.py -------------------------------------------------------------------------------- /pipe_STAT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_STAT/README.md -------------------------------------------------------------------------------- /pipe_STAT/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_STAT/SIZE -------------------------------------------------------------------------------- /pipe_STAT/STATD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_STAT/STATD -------------------------------------------------------------------------------- /pipe_STAT/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_STAT/compile_script -------------------------------------------------------------------------------- /pipe_STAT/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_STAT/makefile_usr.inc -------------------------------------------------------------------------------- /pipe_STAT/turbPipe.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_STAT/turbPipe.geo -------------------------------------------------------------------------------- /pipe_STAT/turbPipe.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_STAT/turbPipe.par -------------------------------------------------------------------------------- /pipe_STAT/turbPipe.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_STAT/turbPipe.usr -------------------------------------------------------------------------------- /pipe_gSyEM/GSYEMD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_gSyEM/GSYEMD -------------------------------------------------------------------------------- /pipe_gSyEM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_gSyEM/README.md -------------------------------------------------------------------------------- /pipe_gSyEM/SIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_gSyEM/SIZE -------------------------------------------------------------------------------- /pipe_gSyEM/compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_gSyEM/compile_script -------------------------------------------------------------------------------- /pipe_gSyEM/gsyem_prof_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_gSyEM/gsyem_prof_01.txt -------------------------------------------------------------------------------- /pipe_gSyEM/makefile_usr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_gSyEM/makefile_usr.inc -------------------------------------------------------------------------------- /pipe_gSyEM/pipe.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_gSyEM/pipe.par -------------------------------------------------------------------------------- /pipe_gSyEM/pipe.re2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_gSyEM/pipe.re2 -------------------------------------------------------------------------------- /pipe_gSyEM/pipe.usr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KTH-Nek5000/KTH_Examples/HEAD/pipe_gSyEM/pipe.usr --------------------------------------------------------------------------------