Skip to content

Commit

Permalink
fix: add vicsek model in constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
jung235 committed Mar 6, 2024
1 parent 557ee71 commit 52b298b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pydiffuser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
RunAndTumbleParticleConfig,
SmoluchowskiEquation,
SmoluchowskiEquationConfig,
VicsekModel,
VicsekModelConfig,
)
from .tracer import Ensemble, Trajectory
from .utils import load, save
Expand All @@ -30,6 +32,8 @@
"RunAndTumbleParticleConfig",
"SmoluchowskiEquation",
"SmoluchowskiEquationConfig",
"VicsekModel",
"VicsekModelConfig",
"Ensemble",
"Trajectory",
"load",
Expand Down
3 changes: 3 additions & 0 deletions pydiffuser/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from .levy import LevyWalk, LevyWalkConfig
from .rtp import RunAndTumbleParticle, RunAndTumbleParticleConfig
from .smoluchowski import SmoluchowskiEquation, SmoluchowskiEquationConfig
from .vicsek import VicsekModel, VicsekModelConfig

__all__ = [
"ActiveBrownianParticle",
Expand All @@ -23,6 +24,8 @@
"RunAndTumbleParticleConfig",
"SmoluchowskiEquation",
"SmoluchowskiEquationConfig",
"VicsekModel",
"VicsekModelConfig",
]


Expand Down

0 comments on commit 52b298b

Please sign in to comment.