Skip to content

Start of milestone changes for 8.1 #485

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

Merged
merged 2 commits into from
Dec 20, 2024
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: 2 additions & 1 deletion ETABS_Engine/Create/Diaphragm.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -39,7 +39,7 @@
/**** Public Methods ****/
/***************************************************/

public static Diaphragm Diaphragm(/*List<Panel> panels,*/ string name, DiaphragmType type = DiaphragmType.RigidDiaphragm)

Check warning on line 42 in ETABS_Engine/Create/Diaphragm.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Create/Diaphragm.cs#L42

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
//List<double> zvals = panels.SelectMany(x => x.AllEdgeCurves().SelectMany(y => y.IControlPoints().Select(z => z.Z))).ToList();

Expand All @@ -60,3 +60,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Create/MassSource.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -36,7 +36,7 @@
/**** Public Methods ****/
/***************************************************/

public static MassSource MassSource(bool elementSelfWeight, bool additionalMass, List<Loadcase> loadCases = null, List<double> caseFactors = null)

Check warning on line 39 in ETABS_Engine/Create/MassSource.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Create/MassSource.cs#L39

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
List<Tuple<Loadcase, double>> factoredCases = new List<Tuple<Loadcase, double>>();

Expand Down Expand Up @@ -76,3 +76,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Create/Pier.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -40,7 +40,7 @@
/**** Public Methods ****/
/***************************************************/

public static Pier Pier(string name)

Check warning on line 43 in ETABS_Engine/Create/Pier.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Create/Pier.cs#L43

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new Pier { Name = name };
}
Expand All @@ -52,3 +52,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Create/Spandrel.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -40,7 +40,7 @@
/**** Public Methods ****/
/***************************************************/

public static Spandrel Spandrel(string name)

Check warning on line 43 in ETABS_Engine/Create/Spandrel.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Create/Spandrel.cs#L43

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return new Spandrel { Name = name };
}
Expand All @@ -52,3 +52,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/ModelData.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -54,3 +54,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Modify/SetAutoLengthOffset.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -38,14 +38,14 @@
/**** Public Methods ****/
/***************************************************/

public static Bar SetAutoLengthOffset(this Bar bar, bool autoLengthOffset)

Check warning on line 41 in ETABS_Engine/Modify/SetAutoLengthOffset.cs

View check run for this annotation

BHoMBot-CI / code-compliance

ETABS_Engine/Modify/SetAutoLengthOffset.cs#L41

Modify methods should return void, or their return type should be different to the input type of their first parameter - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/ModifyReturnsDifferentType

Check warning on line 41 in ETABS_Engine/Modify/SetAutoLengthOffset.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Modify/SetAutoLengthOffset.cs#L41

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return SetAutoLengthOffset(bar, autoLengthOffset, 1.0);
}

/***************************************************/

public static Bar SetAutoLengthOffset(this Bar bar, bool autoLengthOffset, double rigidZoneFactor)

Check warning on line 48 in ETABS_Engine/Modify/SetAutoLengthOffset.cs

View check run for this annotation

BHoMBot-CI / code-compliance

ETABS_Engine/Modify/SetAutoLengthOffset.cs#L48

Modify methods should return void, or their return type should be different to the input type of their first parameter - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/ModifyReturnsDifferentType

Check warning on line 48 in ETABS_Engine/Modify/SetAutoLengthOffset.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Modify/SetAutoLengthOffset.cs#L48

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
if (rigidZoneFactor < 0 || rigidZoneFactor > 1.0)
{
Expand All @@ -64,3 +64,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Modify/SetDiaphragm.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -38,7 +38,7 @@
/**** Public Methods ****/
/***************************************************/

public static Panel SetDiaphragm(this Panel panel, Diaphragm diaphragm)

Check warning on line 41 in ETABS_Engine/Modify/SetDiaphragm.cs

View check run for this annotation

BHoMBot-CI / code-compliance

ETABS_Engine/Modify/SetDiaphragm.cs#L41

Modify methods should return void, or their return type should be different to the input type of their first parameter - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/ModifyReturnsDifferentType

Check warning on line 41 in ETABS_Engine/Modify/SetDiaphragm.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Modify/SetDiaphragm.cs#L41

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
panel.Fragments.AddOrReplace(diaphragm);
return panel;
Expand All @@ -52,3 +52,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Modify/SetInsertionPoint.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -39,14 +39,14 @@
/**** Public Methods ****/
/***************************************************/

public static Bar SetInsertionPoint(this Bar bar, BarInsertionPoint barInsertionPoint = BarInsertionPoint.Centroid)

Check warning on line 42 in ETABS_Engine/Modify/SetInsertionPoint.cs

View check run for this annotation

BHoMBot-CI / code-compliance

ETABS_Engine/Modify/SetInsertionPoint.cs#L42

Modify methods should return void, or their return type should be different to the input type of their first parameter - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/ModifyReturnsDifferentType

Check warning on line 42 in ETABS_Engine/Modify/SetInsertionPoint.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Modify/SetInsertionPoint.cs#L42

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return bar.SetInsertionPoint(barInsertionPoint, true);
}

/***************************************************/

public static Bar SetInsertionPoint(this Bar bar, BarInsertionPoint barInsertionPoint = BarInsertionPoint.Centroid, bool modifyStiffness = true)

Check warning on line 49 in ETABS_Engine/Modify/SetInsertionPoint.cs

View check run for this annotation

BHoMBot-CI / code-compliance

ETABS_Engine/Modify/SetInsertionPoint.cs#L49

Modify methods should return void, or their return type should be different to the input type of their first parameter - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/ModifyReturnsDifferentType

Check warning on line 49 in ETABS_Engine/Modify/SetInsertionPoint.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Modify/SetInsertionPoint.cs#L49

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return (Bar)bar.AddFragment(new InsertionPoint() { BarInsertionPoint = barInsertionPoint, ModifyStiffness = modifyStiffness }, true);
}
Expand All @@ -59,3 +59,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Modify/SetPier.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -39,7 +39,7 @@
/**** Public Methods ****/
/***************************************************/

public static Panel SetPier(this Panel panel, Pier pier)

Check warning on line 42 in ETABS_Engine/Modify/SetPier.cs

View check run for this annotation

BHoMBot-CI / code-compliance

ETABS_Engine/Modify/SetPier.cs#L42

Modify methods should return void, or their return type should be different to the input type of their first parameter - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/ModifyReturnsDifferentType

Check warning on line 42 in ETABS_Engine/Modify/SetPier.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Modify/SetPier.cs#L42

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
panel.Fragments.AddOrReplace(pier);

Expand All @@ -53,3 +53,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Modify/SetShellType.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -32,7 +32,7 @@
/**** Public Methods ****/
/***************************************************/

public static ISurfaceProperty SetShellType(this ISurfaceProperty property, ShellType shellType)

Check warning on line 35 in ETABS_Engine/Modify/SetShellType.cs

View check run for this annotation

BHoMBot-CI / code-compliance

ETABS_Engine/Modify/SetShellType.cs#L35

Modify methods should return void, or their return type should be different to the input type of their first parameter - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/ModifyReturnsDifferentType

Check warning on line 35 in ETABS_Engine/Modify/SetShellType.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Modify/SetShellType.cs#L35

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
property.Fragments.AddOrReplace(new ShellTypeFragment { ShellType = shellType });
return property;
Expand All @@ -46,3 +46,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Modify/SetSpandrel.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -39,7 +39,7 @@
/**** Public Methods ****/
/***************************************************/

public static Panel SetSpandrel(this Panel panel, Spandrel spandrel)

Check warning on line 42 in ETABS_Engine/Modify/SetSpandrel.cs

View check run for this annotation

BHoMBot-CI / code-compliance

ETABS_Engine/Modify/SetSpandrel.cs#L42

Modify methods should return void, or their return type should be different to the input type of their first parameter - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/ModifyReturnsDifferentType

Check warning on line 42 in ETABS_Engine/Modify/SetSpandrel.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Modify/SetSpandrel.cs#L42

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
panel.Fragments.AddOrReplace(spandrel);
return panel;
Expand All @@ -52,3 +52,4 @@




5 changes: 3 additions & 2 deletions ETABS_Engine/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -55,7 +55,8 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.1.0.0")]




Expand Down
3 changes: 2 additions & 1 deletion ETABS_Engine/Query/AutoLengthOffset.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -38,7 +38,7 @@
/**** Public Methods ****/
/***************************************************/

public static AutoLengthOffset AutoLengthOffset(this Bar bar)

Check warning on line 41 in ETABS_Engine/Query/AutoLengthOffset.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Query/AutoLengthOffset.cs#L41

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return bar.FindFragment<AutoLengthOffset>();
}
Expand All @@ -52,3 +52,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Query/CheckFlipBar.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -40,7 +40,7 @@
/***************************************************/

[Description("Evaluates if the Bar would have its endpoints flipped on Push to ETABS in ETABS16.")]
public static bool CheckFlipBar(this Bar bar)

Check warning on line 43 in ETABS_Engine/Query/CheckFlipBar.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Query/CheckFlipBar.cs#L43

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
Point start = bar.Start.Position;
Point end = bar.End.Position;
Expand All @@ -62,3 +62,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Query/Diaphragm.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -38,7 +38,7 @@
/**** Public Methods ****/
/***************************************************/

public static Diaphragm Diaphragm(this Panel panel)

Check warning on line 41 in ETABS_Engine/Query/Diaphragm.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Query/Diaphragm.cs#L41

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return panel.FindFragment<Diaphragm>();
}
Expand All @@ -52,3 +52,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Query/InsertionPoint.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -39,7 +39,7 @@
/**** Public Methods ****/
/***************************************************/

public static BarInsertionPoint InsertionPoint(this Bar bar)

Check warning on line 42 in ETABS_Engine/Query/InsertionPoint.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Query/InsertionPoint.cs#L42

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
InsertionPoint o = bar?.FindFragment<InsertionPoint>();

Expand All @@ -55,3 +55,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Query/ModifyStiffnessInsertionPoint.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -39,7 +39,7 @@
/**** Public Methods ****/
/***************************************************/

public static bool ModifyStiffnessInsertionPoint(this Bar bar)

Check warning on line 42 in ETABS_Engine/Query/ModifyStiffnessInsertionPoint.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Query/ModifyStiffnessInsertionPoint.cs#L42

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
InsertionPoint o = bar?.FindFragment<InsertionPoint>();

Expand All @@ -55,3 +55,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Query/Pier.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -39,7 +39,7 @@
/**** Public Methods ****/
/***************************************************/

public static Pier Pier(this Panel panel)

Check warning on line 42 in ETABS_Engine/Query/Pier.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Query/Pier.cs#L42

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return panel.FindFragment<Pier>();
}
Expand All @@ -52,3 +52,4 @@




3 changes: 2 additions & 1 deletion ETABS_Engine/Query/Spandrel.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -39,7 +39,7 @@
/**** Public Methods ****/
/***************************************************/

public static Spandrel Spandrel(this Panel panel)

Check warning on line 42 in ETABS_Engine/Query/Spandrel.cs

View check run for this annotation

BHoMBot-CI / documentation-compliance

ETABS_Engine/Query/Spandrel.cs#L42

Input parameter requires a matching Input attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/IsInputAttributePresent Method must contain an Output or MultiOutput attribute - For more information see https://bhom.xyz/documentation/DevOps/Code%20Compliance%20and%20CI/Compliance%20Checks/HasOutputAttribute
{
return panel.FindFragment<Spandrel>();
}
Expand All @@ -52,3 +52,4 @@




3 changes: 2 additions & 1 deletion ETABS_oM/Elements/Diaphragm.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -46,3 +46,4 @@ public class Diaphragm : BHoMObject, IFragment




3 changes: 2 additions & 1 deletion ETABS_oM/Elements/Pier.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -47,3 +47,4 @@ public class Pier : BHoMObject, IFragment




3 changes: 2 additions & 1 deletion ETABS_oM/Elements/Spandrel.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -47,3 +47,4 @@ public class Spandrel : BHoMObject, IFragment




3 changes: 2 additions & 1 deletion ETABS_oM/Enums/BarInsertionPoint.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -48,3 +48,4 @@ public enum BarInsertionPoint




3 changes: 2 additions & 1 deletion ETABS_oM/Enums/Diaphragm.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -39,3 +39,4 @@ public enum DiaphragmType




3 changes: 2 additions & 1 deletion ETABS_oM/Enums/SectionDatabase.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -67,3 +67,4 @@ public enum SectionDatabase




3 changes: 2 additions & 1 deletion ETABS_oM/Enums/ShellType.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -34,3 +34,4 @@ public enum ShellType




3 changes: 2 additions & 1 deletion ETABS_oM/Fragments/AutoLengthOffset.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -45,3 +45,4 @@ public class AutoLengthOffset : IFragment




3 changes: 2 additions & 1 deletion ETABS_oM/Fragments/ETABSId.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -53,3 +53,4 @@ public class ETABSId : IAdapterId, IPersistentAdapterId




3 changes: 2 additions & 1 deletion ETABS_oM/Fragments/InsertionPoint.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -49,3 +49,4 @@ public class InsertionPoint : IFragment




3 changes: 2 additions & 1 deletion ETABS_oM/Fragments/ShellTypeFragment.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of the Buildings and Habitats object Model (BHoM)
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
* Copyright (c) 2015 - 2025, the respective contributors. All rights reserved.
*
* Each contributor holds copyright over their respective contributions.
* The project versioning (Git) records all such contribution source information.
Expand Down Expand Up @@ -38,3 +38,4 @@ public class ShellTypeFragment : IFragment




Loading