Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions debrisframe/c1Ti/c1TiCfg.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@ rhoEnt = 2000
# mass per particle (if MPPDIR is used) [kg]
massPerPart = 280000.

#+++++++++++++general start conditions: time dependent release
# if timeDependentRelease is True, provide the the timesteps, thickness and velocity
# for a releases in a csv-table in the REL folder
timeDependentRelease = True
# when checking if an already existing particle is within a release polygon
# (that would cause numerical instabilities and rise an error), one can decide to add a buffer
# around the polygon (0 means take strictly the points inside, a very small value
# will include the points located on the polygon line)
thresholdPointInRel = 0.01

#++++++++++++Friction model
# add the friction using an explicit formulation (1)
# or use an implicit method (0)
Expand Down
2 changes: 1 addition & 1 deletion debrisframe/debrisframeCfg.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[MAIN]
# Path to avalanche directory
#TODO: change avalancheDir to debrisDir
avalancheDir = ../../AvaFrame/avaframe/data/avaParabola
avalancheDir = ../../AvaFrame/avaframe/data/avaParabolaTimeDep

# number of CPU cores to use for the computation of com1DFA
# possible values are:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ change into your ``debrisframe`` directory (replace [YOURDIR] with your path fro


cd [YOURDIR]/DebrisFrame/debrisframe
python runComo1Debris.py
python runC1Ti.py



Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9"
requires-python = ">=3.9,<3.14"
dependencies = [
]

Expand All @@ -49,6 +49,7 @@ channels = ["conda-forge/label/qgis_ltr", "https://prefix.dev/conda-forge"]
platforms = ["linux-64", "win-64", "osx-64"]

[tool.pixi.dependencies]
python = ">=3.9,<3.14"
pytest = "*"
setuptools = "*"

Expand Down