- Remove obsolete docs (OID_handover, SR_analysis_results, ccd_* handover) - Remove CCD legacy output_redux and old scripts - Remove SR old sindy scripts and compare modules - Update .gitignore to cover all analysis-generated outputs - Retain all active code in OID/SR/CCD analysis directories Co-authored-by: Cursor <cursoragent@cursor.com>
108 lines
1.1 KiB
Plaintext
108 lines
1.1 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
|
|
# Distribution / packaging
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Unit test / coverage
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
.pytest_cache/
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# Environments
|
|
.env
|
|
.venv
|
|
# env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Project-specific outputs
|
|
models/
|
|
!models/.gitkeep
|
|
output/
|
|
!output/.gitkeep
|
|
tensorboard/
|
|
!tensorboard/.gitkeep
|
|
|
|
# Data files (large datasets)
|
|
*.pkl
|
|
*.h5
|
|
*.hdf5
|
|
*.npz
|
|
*.npy
|
|
|
|
# Analysis outputs (generated)
|
|
src/OID_analysis/data/derived/
|
|
src/OID_analysis/data/*/vorticity_*.png
|
|
src/OID_analysis/data/*/*/vorticity_*.png
|
|
src/OID_analysis/data/*/*/ddf_checkpoint.npy
|
|
src/OID_analysis/data/*/*/fifo_checkpoint.npy
|
|
src/CCD_analysis/data/
|
|
src/SR_analysis/data/*/*/fields.npz
|
|
outputs/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|
|
|
|
# CUDA
|
|
*.ptx
|
|
*.cubin
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
ref/
|
|
docs/
|
|
ParaView/ |