Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hydraulic Schema Releases #408

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 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
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<ECSchemaReference name="BisCore" version="01.00.10" alias="bis" />
<ECSchemaReference name="Analytical" version="01.00.01" alias="anlyt" />
<ECSchemaReference name="AecUnits" version="01.00.03" alias="AECU"/>
<ECSchemaReference name="RoadRailUnits" version="01.00.01" alias="rru"/>
<ECSchemaReference name="PipeworkPhysical" version="01.00.00" alias="pipphys"/>
<ECSchemaReference name="RoadRailUnits" version="01.00.02" alias="rru"/>
<ECSchemaReference name="PipeworkPhysical" version="01.00.01" alias="pipphys"/>

BenTWhite marked this conversation as resolved.
Show resolved Hide resolved
<ECCustomAttributes>
<ProductionStatus xmlns="CoreCustomAttributes.01.00.03">
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- ==================================================================================
| * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
| * See LICENSE.md in the project root for license terms and full copyright notice.
======================================================================================= -->
<ECSchema schemaName="PipeNetworkHydraulicAnalysis" alias="pipeNetAnlyt" version="01.00.00"
xmlns="http://www.bentley.com/schemas/Bentley.ECXML.3.2" displayLabel="Pipe Network Hydraulic Analysis" description="Pipe Network Hydraulic Analysis Schema.">
<ECSchemaReference name="CoreCustomAttributes" version="01.00.03" alias="CoreCA" />
<ECSchemaReference name="BisCustomAttributes" version="01.00.00" alias="bisCA"/>
<ECSchemaReference name="BisCore" version="01.00.10" alias="bis" />
<ECSchemaReference name="Analytical" version="01.00.01" alias="anlyt" />
<ECSchemaReference name="AecUnits" version="01.00.03" alias="AECU"/>
<ECSchemaReference name="RoadRailUnits" version="01.00.02" alias="rru"/>
<ECSchemaReference name="PipeworkPhysical" version="01.00.01" alias="pipphys"/>

<ECCustomAttributes>
<ProductionStatus xmlns="CoreCustomAttributes.01.00.03">
<SupportedUse>NotForProduction</SupportedUse>
BenTWhite marked this conversation as resolved.
Show resolved Hide resolved
</ProductionStatus>
<SchemaLayerInfo xmlns="BisCustomAttributes.01.00.00">
<Value>DisciplineOther</Value>
</SchemaLayerInfo>
</ECCustomAttributes>

<ECEntityClass typeName="HydraulicElementDesignAspect" displayLabel="HydraulicElementDesignAspect">
<BaseClass >bis:ElementUniqueAspect</BaseClass>
<ECProperty propertyName="IsAvailableForDesign" typeName="boolean" displayLabel="Is Available for Design" description="If true then the hydraulic element will be available for inclusion in the design algorithm."/>
</ECEntityClass>

<ECRelationshipClass typeName="PipeElementTypeOwnsDesignAspect" strength="embedding" modifier="Sealed">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
<Class class="pipphys:PipeElementType"/>
</Source>
<Target multiplicity="(1..1)" roleLabel="owned by" polymorphic="false">
<Class class="HydraulicElementDesignAspect"/>
</Target>
</ECRelationshipClass>

<ECEntityClass typeName="HydraulicMaterialAspect" modifier="Sealed" displayLabel="Hydraulic Material Aspect">
<BaseClass >bis:ElementUniqueAspect</BaseClass>
<ECProperty propertyName="ManningsN" typeName="double" displayLabel="Manning's n"/>
<ECProperty propertyName="KuttersN" typeName="double" displayLabel="Kutter's n"/>
<ECProperty propertyName="HazenWilliamsC" typeName="double" displayLabel="Hazen-William's C"/>
<ECProperty propertyName="DarcyWeisbachRoughnessHeight" typeName="double" kindOfQuantity="rru:LENGTH_SHORT" displayLabel="Darcy-Weisbach Roughness Height"/>
</ECEntityClass>

<ECRelationshipClass typeName="PhysicalMaterialOwnsHydraulicMaterialAspect" strength="embedding" modifier="Sealed">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
<Class class="bis:PhysicalMaterial"/>
</Source>
<Target multiplicity="(1..1)" roleLabel="owned by" polymorphic="false">
<Class class="HydraulicMaterialAspect"/>
</Target>
</ECRelationshipClass>

<ECRelationshipClass typeName="PipeElementTypeOwnsHydraulicMaterialAspect" strength="embedding" modifier="Sealed">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
<Class class="pipphys:PipeElementType"/>
</Source>
<Target multiplicity="(1..1)" roleLabel="owned by" polymorphic="false">
<Class class="HydraulicMaterialAspect"/>
</Target>
</ECRelationshipClass>


</ECSchema>
Loading
Loading