Skip to content

Commit 08a3537

Browse files
author
Fraser Greenroyd
authored
7.1 Deployment (#374)
2 parents bfb9e78 + 521b303 commit 08a3537

File tree

210 files changed

+447
-235
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

210 files changed

+447
-235
lines changed

MidasCivil_Adapter/AdapterActions/Execute.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -288,3 +288,4 @@ private static void CopyAll(DirectoryInfo sourceDirectory, DirectoryInfo targetD
288288
}
289289

290290

291+

MidasCivil_Adapter/CRUD/Create/Create.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -146,3 +146,4 @@ protected override bool ICreate<T>(IEnumerable<T> objects, ActionConfig actionCo
146146
}
147147

148148

149+

MidasCivil_Adapter/CRUD/Create/Elements/Element.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -50,7 +50,7 @@ private bool CreateCollection(IEnumerable<Bar> bars)
5050
Engine.Base.Compute.RecordError("Tension only elements cannot support bar releases in Midas");
5151
}
5252

53-
if (!(bar.Release == null) && new string(bar.Release.DescriptionOrName().Replace(",", "").Take(m_groupCharacterLimit).ToArray()) != "FixFix")
53+
if (!(bar.Release == null))
5454
{
5555
AssignBarRelease(bar.AdapterId<string>(typeof(MidasCivilId)), new string(bar.Release.DescriptionOrName().Replace(",", "").Take(m_groupCharacterLimit).ToArray()), "FRAME-RLS");
5656
}
@@ -90,3 +90,4 @@ private bool CreateCollection(IEnumerable<FEMesh> meshes)
9090
}
9191

9292

93+

MidasCivil_Adapter/CRUD/Create/Elements/Node.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -72,3 +72,4 @@ private bool CreateCollection(IEnumerable<Node> nodes)
7272
}
7373

7474

75+

MidasCivil_Adapter/CRUD/Create/Elements/RigidLink.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -56,3 +56,4 @@ private bool CreateCollection(IEnumerable<RigidLink> links)
5656
}
5757

5858

59+

MidasCivil_Adapter/CRUD/Create/Loads/AreaDifferentialTemperatureLoad.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -74,3 +74,4 @@ public bool CreateCollection(IEnumerable<AreaDifferentialTemperatureLoad> areaDi
7474
}
7575

7676

77+

MidasCivil_Adapter/CRUD/Create/Loads/AreaUniformTemperatureLoads.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -72,3 +72,4 @@ public bool CreateCollection(IEnumerable<AreaUniformTemperatureLoad> areaUniform
7272

7373

7474

75+

MidasCivil_Adapter/CRUD/Create/Loads/AreaUniformlyDistributedLoads.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -89,3 +89,4 @@ public bool CreateCollection(IEnumerable<AreaUniformlyDistributedLoad> areaUnifo
8989

9090

9191

92+

MidasCivil_Adapter/CRUD/Create/Loads/BarDifferentialTemperatureLoad.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -78,3 +78,4 @@ private bool CreateCollection(IEnumerable<BarDifferentialTemperatureLoad> barDif
7878
}
7979

8080

81+

MidasCivil_Adapter/CRUD/Create/Loads/BarPointLoads.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2024, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -101,3 +101,4 @@ private bool CreateCollection(IEnumerable<BarPointLoad> barPointLoads)
101101

102102

103103

104+

0 commit comments

Comments
 (0)