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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ Developers, please make pull requests to the https://github.com/elmbeech/physice


## Release Notes:
+ version 4.1.1 (2026-02-28): elmbeech/physicelldataloader
+ reduce memory footprint.

+ version 4.1.0 (2025-12-31): elmbeech/physicelldataloader
+ new TimeStep class and TimeSeris class function **get_spatialdata** and command line command **pcdl_get_spatialdata**.

Expand Down
2 changes: 1 addition & 1 deletion pcdl/VERSION.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.1.0'
__version__ = '4.1.1'
5 changes: 5 additions & 0 deletions pcdl/timestep.py
Original file line number Diff line number Diff line change
Expand Up @@ -3333,6 +3333,11 @@ def _read_xml(self, xmlfile, output_path='.'):
except AttributeError:
pass

###############
# free memory #
###############
del d_mcds['raw_substrate']
del d_mcds['raw_cell']

##########
# output #
Expand Down
Loading