generated from MagmaWorks/Template-Repo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move geometrical properties to sectionproperties and have concretepro…
…perties extend that instead of separate class
- Loading branch information
Showing
6 changed files
with
61 additions
and
77 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using OasysUnits; | ||
|
||
namespace MagmaWorks.Taxonomy.Sections.SectionProperties | ||
{ | ||
public interface IConcreteProperties : ISectionProperties | ||
{ | ||
Length EffectiveDepthY { get; } | ||
Length EffectiveDepthZ { get; } | ||
Area CompressionReinforcementAreaY { get; } | ||
Area CompressionReinforcementAreaZ { get; } | ||
Area TensionReinforcementAreaY { get; } | ||
Area TensionReinforcementAreaZ { get; } | ||
Area ShearReinforcementArea { get; } | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,7 +1,19 @@ | ||
namespace MagmaWorks.Taxonomy.Sections.SectionProperties | ||
using MagmaWorks.Geometry; | ||
using OasysUnits; | ||
|
||
namespace MagmaWorks.Taxonomy.Sections.SectionProperties | ||
{ | ||
public interface ISectionProperties | ||
{ | ||
IGeometricalProperties GeometricalProperties { get; } | ||
ILocalDomain2d Extends { get; } | ||
ILocalPoint2d Centroid { get; } | ||
Length Perimeter { get; } | ||
Area Area { get; } | ||
SectionModulus ElasticSectionModulusYy { get; } | ||
SectionModulus ElasticSectionModulusZz { get; } | ||
AreaMomentOfInertia MomentOfInertiaYy { get; } | ||
AreaMomentOfInertia MomentOfInertiaZz { get; } | ||
Length RadiusOfGyrationYy { get; } | ||
Length RadiusOfGyrationZz { get; } | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
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