-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move parcel displacement product to parcel subfolder (#1278)
- Loading branch information
Showing
3 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
""" | ||
Housekeeping products: time, parcel displacement, super-particle counts, wall-time timers... | ||
Housekeeping products: time, super-particle count, wall-time timers... | ||
""" | ||
|
||
from .dynamic_wall_time import DynamicWallTime | ||
from .parcel_displacement import ParcelDisplacement | ||
from .super_droplet_count_per_gridbox import SuperDropletCountPerGridbox | ||
from .time import Time | ||
from .timers import CPUTime, WallTime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
""" products specific to the parcel environment """ | ||
|
||
from .cloud_water_path import ParcelLiquidWaterPath | ||
from .parcel_displacement import ParcelDisplacement |
File renamed without changes.