Skip to content

Commit

Permalink
removed chunking from model class. (#3668)
Browse files Browse the repository at this point in the history
Co-authored-by: Jedd Morgan <[email protected]>
  • Loading branch information
bimgeek and JR-Morgan authored Jan 7, 2025
1 parent 2ae0fde commit a737b8e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Objects/Objects/Structural/Analysis/Model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,22 @@ public Model(

public ModelInfo? specs { get; set; } //container for model and project specifications

[DetachProperty, Chunkable(5000)]
[DetachProperty]
public List<Base>? nodes { get; set; } //nodes list

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

[DetachProperty, Chunkable(5000)]
[DetachProperty]
public List<Base>? loads { get; set; } //loads list

[DetachProperty, Chunkable(5000)]
[DetachProperty]
public List<Base>? restraints { get; set; } //supports list

[DetachProperty, Chunkable(5000)]
[DetachProperty]
public List<Base>? properties { get; set; } //properties list

[DetachProperty, Chunkable(5000)]
[DetachProperty]
public List<Base>? materials { get; set; } //materials list

// add "other" - ex. assemblies, grid lines, grid planes, storeys etc? alignment/paths?
Expand Down

0 comments on commit a737b8e

Please sign in to comment.