Skip to content

Commit

Permalink
Reduce size of chunks for nodes and elements
Browse files Browse the repository at this point in the history
  • Loading branch information
jenessaman committed Jan 21, 2022
1 parent 4b1e55f commit 42e8af1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Objects/Objects/Structural/Analysis/Model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ public class Model : Base
public ModelInfo specs { get; set; } //container for model and project specifications

[DetachProperty]
[Chunkable(31250)]
[Chunkable(1000)]
public List<Base> nodes { get; set; } //nodes list

[DetachProperty]
[Chunkable(31250)]
[Chunkable(1000)]
public List<Base> elements { get; set; } //element (or member) list

[DetachProperty]
Expand Down

0 comments on commit 42e8af1

Please sign in to comment.