diff --git a/MidasCivil_Adapter/AdapterActions/Execute.cs b/MidasCivil_Adapter/AdapterActions/Execute.cs index 1f0b0e70..060265f8 100644 --- a/MidasCivil_Adapter/AdapterActions/Execute.cs +++ b/MidasCivil_Adapter/AdapterActions/Execute.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -288,3 +288,4 @@ private static void CopyAll(DirectoryInfo sourceDirectory, DirectoryInfo targetD } + diff --git a/MidasCivil_Adapter/CRUD/Create/Create.cs b/MidasCivil_Adapter/CRUD/Create/Create.cs index 591530c1..37abcc72 100644 --- a/MidasCivil_Adapter/CRUD/Create/Create.cs +++ b/MidasCivil_Adapter/CRUD/Create/Create.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -146,3 +146,4 @@ protected override bool ICreate(IEnumerable objects, ActionConfig actionCo } + diff --git a/MidasCivil_Adapter/CRUD/Create/Elements/Element.cs b/MidasCivil_Adapter/CRUD/Create/Elements/Element.cs index 6fadc90a..29ea28e5 100644 --- a/MidasCivil_Adapter/CRUD/Create/Elements/Element.cs +++ b/MidasCivil_Adapter/CRUD/Create/Elements/Element.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,7 +50,7 @@ private bool CreateCollection(IEnumerable bars) Engine.Base.Compute.RecordError("Tension only elements cannot support bar releases in Midas"); } - if (!(bar.Release == null) && new string(bar.Release.DescriptionOrName().Replace(",", "").Take(m_groupCharacterLimit).ToArray()) != "FixFix") + if (!(bar.Release == null)) { AssignBarRelease(bar.AdapterId(typeof(MidasCivilId)), new string(bar.Release.DescriptionOrName().Replace(",", "").Take(m_groupCharacterLimit).ToArray()), "FRAME-RLS"); } @@ -90,3 +90,4 @@ private bool CreateCollection(IEnumerable meshes) } + diff --git a/MidasCivil_Adapter/CRUD/Create/Elements/Node.cs b/MidasCivil_Adapter/CRUD/Create/Elements/Node.cs index 612c20fe..4c811dd7 100644 --- a/MidasCivil_Adapter/CRUD/Create/Elements/Node.cs +++ b/MidasCivil_Adapter/CRUD/Create/Elements/Node.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ private bool CreateCollection(IEnumerable nodes) } + diff --git a/MidasCivil_Adapter/CRUD/Create/Elements/RigidLink.cs b/MidasCivil_Adapter/CRUD/Create/Elements/RigidLink.cs index 3617125f..d004c5e5 100644 --- a/MidasCivil_Adapter/CRUD/Create/Elements/RigidLink.cs +++ b/MidasCivil_Adapter/CRUD/Create/Elements/RigidLink.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -56,3 +56,4 @@ private bool CreateCollection(IEnumerable links) } + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/AreaDifferentialTemperatureLoad.cs b/MidasCivil_Adapter/CRUD/Create/Loads/AreaDifferentialTemperatureLoad.cs index af3d8d0b..ee83eef4 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/AreaDifferentialTemperatureLoad.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/AreaDifferentialTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ public bool CreateCollection(IEnumerable areaDi } + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/AreaUniformTemperatureLoads.cs b/MidasCivil_Adapter/CRUD/Create/Loads/AreaUniformTemperatureLoads.cs index fa8c43c0..5c3842ae 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/AreaUniformTemperatureLoads.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/AreaUniformTemperatureLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ public bool CreateCollection(IEnumerable areaUniform + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/AreaUniformlyDistributedLoads.cs b/MidasCivil_Adapter/CRUD/Create/Loads/AreaUniformlyDistributedLoads.cs index 5a428fa5..98592b41 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/AreaUniformlyDistributedLoads.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/AreaUniformlyDistributedLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -89,3 +89,4 @@ public bool CreateCollection(IEnumerable areaUnifo + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/BarDifferentialTemperatureLoad.cs b/MidasCivil_Adapter/CRUD/Create/Loads/BarDifferentialTemperatureLoad.cs index 28b26448..a376102b 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/BarDifferentialTemperatureLoad.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/BarDifferentialTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -78,3 +78,4 @@ private bool CreateCollection(IEnumerable barDif } + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/BarPointLoads.cs b/MidasCivil_Adapter/CRUD/Create/Loads/BarPointLoads.cs index 5c1caaa9..802fdd54 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/BarPointLoads.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/BarPointLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -101,3 +101,4 @@ private bool CreateCollection(IEnumerable barPointLoads) + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/BarUniformTemperatureLoads.cs b/MidasCivil_Adapter/CRUD/Create/Loads/BarUniformTemperatureLoads.cs index fd54d46b..134732af 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/BarUniformTemperatureLoads.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/BarUniformTemperatureLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ private bool CreateCollection(IEnumerable barUniformT + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/BarUniformlyDistributedLoads.cs b/MidasCivil_Adapter/CRUD/Create/Loads/BarUniformlyDistributedLoads.cs index b88c10b3..80173035 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/BarUniformlyDistributedLoads.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/BarUniformlyDistributedLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -100,3 +100,4 @@ private bool CreateCollection(IEnumerable barUnifor + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/BarVaryingDistributedLoads.cs b/MidasCivil_Adapter/CRUD/Create/Loads/BarVaryingDistributedLoads.cs index 2db3ae65..7b57357d 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/BarVaryingDistributedLoads.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/BarVaryingDistributedLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -145,3 +145,4 @@ private static Vector CreateSingleComponentVector(int index, double value) + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/GravityLoads.cs b/MidasCivil_Adapter/CRUD/Create/Loads/GravityLoads.cs index 33b9136d..59b44256 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/GravityLoads.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/GravityLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ private bool CreateCollection(IEnumerable gravityLoads) + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/LoadCombinations.cs b/MidasCivil_Adapter/CRUD/Create/Loads/LoadCombinations.cs index 81995b5c..1e112547 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/LoadCombinations.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/LoadCombinations.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -57,3 +57,4 @@ private bool CreateCollection(IEnumerable loadCombinations) + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/Loadcase.cs b/MidasCivil_Adapter/CRUD/Create/Loads/Loadcase.cs index 622124d7..df11062e 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/Loadcase.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/Loadcase.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ private bool CreateCollection(IEnumerable loadcases) } + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/PointDisplacements.cs b/MidasCivil_Adapter/CRUD/Create/Loads/PointDisplacements.cs index 5ec8c576..428bdfbd 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/PointDisplacements.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/PointDisplacements.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -43,3 +43,4 @@ private bool CreateCollection(IEnumerable pointDisplacements) + diff --git a/MidasCivil_Adapter/CRUD/Create/Loads/PointForce.cs b/MidasCivil_Adapter/CRUD/Create/Loads/PointForce.cs index 92f72e73..cb94ad2f 100644 --- a/MidasCivil_Adapter/CRUD/Create/Loads/PointForce.cs +++ b/MidasCivil_Adapter/CRUD/Create/Loads/PointForce.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -67,3 +67,4 @@ public bool CreateCollection(IEnumerable pointLoads) + diff --git a/MidasCivil_Adapter/CRUD/Create/Properties/BarReleases.cs b/MidasCivil_Adapter/CRUD/Create/Properties/BarReleases.cs index 1f95a402..32550848 100644 --- a/MidasCivil_Adapter/CRUD/Create/Properties/BarReleases.cs +++ b/MidasCivil_Adapter/CRUD/Create/Properties/BarReleases.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,16 +42,15 @@ private bool CreateCollection(IEnumerable releases) foreach (BarRelease release in releases) { - if (release.DescriptionOrName().Replace(",","").Take(m_groupCharacterLimit).ToString() != "FixFix") - { string midasBoundaryGroup = Adapters.MidasCivil.Convert.FromTag(new string(release.DescriptionOrName().Replace(",","").Take(m_groupCharacterLimit).ToArray())); CompareGroup(midasBoundaryGroup, boundaryGroupPath); midasBarReleases.AddRange(Adapters.MidasCivil.Convert.FromBarRelease(release, m_groupCharacterLimit)); - } } File.AppendAllLines(path, midasBarReleases); + + return true; } @@ -61,3 +60,4 @@ private bool CreateCollection(IEnumerable releases) } + diff --git a/MidasCivil_Adapter/CRUD/Create/Properties/Materials.cs b/MidasCivil_Adapter/CRUD/Create/Properties/Materials.cs index 4938c088..439b0e1b 100644 --- a/MidasCivil_Adapter/CRUD/Create/Properties/Materials.cs +++ b/MidasCivil_Adapter/CRUD/Create/Properties/Materials.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -53,3 +53,4 @@ private bool CreateCollection(IEnumerable materials) } + diff --git a/MidasCivil_Adapter/CRUD/Create/Properties/Metadata.cs b/MidasCivil_Adapter/CRUD/Create/Properties/Metadata.cs index 44d40639..5722c7c0 100644 --- a/MidasCivil_Adapter/CRUD/Create/Properties/Metadata.cs +++ b/MidasCivil_Adapter/CRUD/Create/Properties/Metadata.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -51,3 +51,4 @@ private bool CreateCollection(Metadata metadata) + diff --git a/MidasCivil_Adapter/CRUD/Create/Properties/SectionProperties.cs b/MidasCivil_Adapter/CRUD/Create/Properties/SectionProperties.cs index 22c27b16..262baa74 100644 --- a/MidasCivil_Adapter/CRUD/Create/Properties/SectionProperties.cs +++ b/MidasCivil_Adapter/CRUD/Create/Properties/SectionProperties.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -100,3 +100,4 @@ private bool CreateCollection(IEnumerable sectionProperties) } + diff --git a/MidasCivil_Adapter/CRUD/Create/Properties/Supports.cs b/MidasCivil_Adapter/CRUD/Create/Properties/Supports.cs index 13cb1326..abb106aa 100644 --- a/MidasCivil_Adapter/CRUD/Create/Properties/Supports.cs +++ b/MidasCivil_Adapter/CRUD/Create/Properties/Supports.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -75,3 +75,4 @@ private bool CreateCollection(IEnumerable supports) } + diff --git a/MidasCivil_Adapter/CRUD/Create/Properties/SurfaceProperty.cs b/MidasCivil_Adapter/CRUD/Create/Properties/SurfaceProperty.cs index 487d779b..fed00d84 100644 --- a/MidasCivil_Adapter/CRUD/Create/Properties/SurfaceProperty.cs +++ b/MidasCivil_Adapter/CRUD/Create/Properties/SurfaceProperty.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ private bool CreateCollection(IEnumerable surfaceProperties) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Delete.cs b/MidasCivil_Adapter/CRUD/Delete/Delete.cs index 1b20354e..8578230d 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Delete.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Delete.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -91,3 +91,4 @@ protected override int IDelete(Type type, IEnumerable ids, ActionConfig + diff --git a/MidasCivil_Adapter/CRUD/Delete/Elements/Element.cs b/MidasCivil_Adapter/CRUD/Delete/Elements/Element.cs index 7a26186b..84a801b2 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Elements/Element.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Elements/Element.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -88,3 +88,4 @@ private int DeleteElements(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Elements/Nodes.cs b/MidasCivil_Adapter/CRUD/Delete/Elements/Nodes.cs index c51a02a7..eb068fe9 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Elements/Nodes.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Elements/Nodes.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -89,3 +89,4 @@ private int DeleteNodes(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Elements/RigidLink.cs b/MidasCivil_Adapter/CRUD/Delete/Elements/RigidLink.cs index 9f4a0de1..91876cb1 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Elements/RigidLink.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Elements/RigidLink.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ private int DeleteRigidLinks(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Loads/AreaUniformTemperatureLoads.cs b/MidasCivil_Adapter/CRUD/Delete/Loads/AreaUniformTemperatureLoads.cs index 5488341a..0a01ff95 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Loads/AreaUniformTemperatureLoads.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Loads/AreaUniformTemperatureLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ public int DeleteAreaUniformTemperatureLoads(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Loads/AreaUniformlyDistributedLoads.cs b/MidasCivil_Adapter/CRUD/Delete/Loads/AreaUniformlyDistributedLoads.cs index 6701e9f9..c3673fe3 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Loads/AreaUniformlyDistributedLoads.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Loads/AreaUniformlyDistributedLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ public int DeleteAreaUniformlyDistributedLoads(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Loads/BarPointLoads.cs b/MidasCivil_Adapter/CRUD/Delete/Loads/BarPointLoads.cs index c0e406a5..7ed0de08 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Loads/BarPointLoads.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Loads/BarPointLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -102,3 +102,4 @@ private int DeleteBarPointLoads(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Loads/BarUniformTemperatureLoads.cs b/MidasCivil_Adapter/CRUD/Delete/Loads/BarUniformTemperatureLoads.cs index 2aa6fe01..f6100aa2 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Loads/BarUniformTemperatureLoads.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Loads/BarUniformTemperatureLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -99,3 +99,4 @@ private int DeleteBarUniformTemperatureLoads(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Loads/BarUniformlyDistributedLoads.cs b/MidasCivil_Adapter/CRUD/Delete/Loads/BarUniformlyDistributedLoads.cs index 6b124744..45fb1ff2 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Loads/BarUniformlyDistributedLoads.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Loads/BarUniformlyDistributedLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -109,3 +109,4 @@ private int DeleteBarUniformlyDistributedLoads(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Loads/BarVaryingDistributedLoads.cs b/MidasCivil_Adapter/CRUD/Delete/Loads/BarVaryingDistributedLoads.cs index 80ff34d5..45b48d57 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Loads/BarVaryingDistributedLoads.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Loads/BarVaryingDistributedLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -106,3 +106,4 @@ private int DeleteBarVaryingDistributedLoads(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Loads/GravityLoads.cs b/MidasCivil_Adapter/CRUD/Delete/Loads/GravityLoads.cs index 451e1b6f..00cc7203 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Loads/GravityLoads.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Loads/GravityLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -90,3 +90,4 @@ private int DeleteGravityLoads(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Loads/LoadCombinations.cs b/MidasCivil_Adapter/CRUD/Delete/Loads/LoadCombinations.cs index 12ce7287..4932e9b9 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Loads/LoadCombinations.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Loads/LoadCombinations.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -96,3 +96,4 @@ private int DeleteLoadCombinations(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Loads/LoadGroup.cs b/MidasCivil_Adapter/CRUD/Delete/Loads/LoadGroup.cs index ca131d23..c76685ae 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Loads/LoadGroup.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Loads/LoadGroup.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -86,3 +86,4 @@ private int DeleteLoadGroups(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Loads/Loadcases.cs b/MidasCivil_Adapter/CRUD/Delete/Loads/Loadcases.cs index 1f2e5ce2..092aa11c 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Loads/Loadcases.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Loads/Loadcases.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -86,3 +86,4 @@ private int DeleteLoadcases(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Loads/PointForces.cs b/MidasCivil_Adapter/CRUD/Delete/Loads/PointForces.cs index 9d76d1d7..e0683086 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Loads/PointForces.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Loads/PointForces.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -90,3 +90,4 @@ private int DeletePointLoads(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Properties/BarReleases.cs b/MidasCivil_Adapter/CRUD/Delete/Properties/BarReleases.cs index ad966a2c..a4b8c317 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Properties/BarReleases.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Properties/BarReleases.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -94,3 +94,4 @@ private int DeleteBarReleases(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Properties/Constraint6DOF.cs b/MidasCivil_Adapter/CRUD/Delete/Properties/Constraint6DOF.cs index a55bbd83..1daa6039 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Properties/Constraint6DOF.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Properties/Constraint6DOF.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -93,3 +93,4 @@ private int DeleteConstraints(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Properties/Materials.cs b/MidasCivil_Adapter/CRUD/Delete/Properties/Materials.cs index f049cda9..6035ef2e 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Properties/Materials.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Properties/Materials.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -88,3 +88,4 @@ private int DeleteMaterials(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Properties/SectionProperties.cs b/MidasCivil_Adapter/CRUD/Delete/Properties/SectionProperties.cs index a66e63ec..4d16f91f 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Properties/SectionProperties.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Properties/SectionProperties.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -88,3 +88,4 @@ private int DeleteSectionProperties(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Delete/Properties/SurfaceProperties.cs b/MidasCivil_Adapter/CRUD/Delete/Properties/SurfaceProperties.cs index 723d14be..d1e59735 100644 --- a/MidasCivil_Adapter/CRUD/Delete/Properties/SurfaceProperties.cs +++ b/MidasCivil_Adapter/CRUD/Delete/Properties/SurfaceProperties.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -97,3 +97,4 @@ private int DeleteSurfaceProperties(IEnumerable ids) + diff --git a/MidasCivil_Adapter/CRUD/Read/Elements/Bars.cs b/MidasCivil_Adapter/CRUD/Read/Elements/Bars.cs index 54d809f7..677e96d8 100644 --- a/MidasCivil_Adapter/CRUD/Read/Elements/Bars.cs +++ b/MidasCivil_Adapter/CRUD/Read/Elements/Bars.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -95,3 +95,4 @@ private List ReadBars(List ids = null) + diff --git a/MidasCivil_Adapter/CRUD/Read/Elements/FEMeshes.cs b/MidasCivil_Adapter/CRUD/Read/Elements/FEMeshes.cs index f1696348..02af9fff 100644 --- a/MidasCivil_Adapter/CRUD/Read/Elements/FEMeshes.cs +++ b/MidasCivil_Adapter/CRUD/Read/Elements/FEMeshes.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -71,3 +71,4 @@ private List ReadFEMeshes(List ids = null) + diff --git a/MidasCivil_Adapter/CRUD/Read/Elements/Nodes.cs b/MidasCivil_Adapter/CRUD/Read/Elements/Nodes.cs index 93a1bfb2..cca44aec 100644 --- a/MidasCivil_Adapter/CRUD/Read/Elements/Nodes.cs +++ b/MidasCivil_Adapter/CRUD/Read/Elements/Nodes.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ private List ReadNodes(List ids = null) + diff --git a/MidasCivil_Adapter/CRUD/Read/Elements/RigidLinks.cs b/MidasCivil_Adapter/CRUD/Read/Elements/RigidLinks.cs index 864008fe..e1291bd7 100644 --- a/MidasCivil_Adapter/CRUD/Read/Elements/RigidLinks.cs +++ b/MidasCivil_Adapter/CRUD/Read/Elements/RigidLinks.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ private List ReadRigidLinks(List ids = null) + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/AreaDifferentialTemperatureLoad.cs b/MidasCivil_Adapter/CRUD/Read/Loads/AreaDifferentialTemperatureLoad.cs index ef6dba48..d5da0e60 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/AreaDifferentialTemperatureLoad.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/AreaDifferentialTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -125,3 +125,4 @@ private List ReadAreaDifferentialTemperatureLoads(List ids = null } + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/AreaUniformTemperatureLoad.cs b/MidasCivil_Adapter/CRUD/Read/Loads/AreaUniformTemperatureLoad.cs index a7dda01f..d8adbab1 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/AreaUniformTemperatureLoad.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/AreaUniformTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -101,3 +101,4 @@ private List ReadAreaUniformTemperatureLoads(List ids = null) } + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/AreaUniformlyDistributedLoad.cs b/MidasCivil_Adapter/CRUD/Read/Loads/AreaUniformlyDistributedLoad.cs index d8aa283d..8fa01ca0 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/AreaUniformlyDistributedLoad.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/AreaUniformlyDistributedLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -100,3 +100,4 @@ private List ReadAreaUniformlyDistributedLoads(List ids = null) } + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/BarDifferentialTemperatureLoad.cs b/MidasCivil_Adapter/CRUD/Read/Loads/BarDifferentialTemperatureLoad.cs index dc61a18b..c9c6a5e7 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/BarDifferentialTemperatureLoad.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/BarDifferentialTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -96,3 +96,4 @@ private List ReadBarDifferentialTemperatureLoads(List ids = null) } + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/BarPointLoads.cs b/MidasCivil_Adapter/CRUD/Read/Loads/BarPointLoads.cs index 19659f1b..fd95a8a3 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/BarPointLoads.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/BarPointLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -128,3 +128,4 @@ private List ReadBarPointLoads(List ids = null) } + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/BarUniformTemperatureLoads.cs b/MidasCivil_Adapter/CRUD/Read/Loads/BarUniformTemperatureLoads.cs index 6bbcf260..74a8c296 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/BarUniformTemperatureLoads.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/BarUniformTemperatureLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -107,3 +107,4 @@ private List ReadBarUniformTemperatureLoads(List ids = null) } + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/BarUniformlyDistributedLoad.cs b/MidasCivil_Adapter/CRUD/Read/Loads/BarUniformlyDistributedLoad.cs index aa50a67d..940ddbab 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/BarUniformlyDistributedLoad.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/BarUniformlyDistributedLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -124,3 +124,4 @@ private List ReadBarUniformlyDistributedLoads(List ids = null) + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/BarVaryingDistributedLoads.cs b/MidasCivil_Adapter/CRUD/Read/Loads/BarVaryingDistributedLoads.cs index 1f3c1bea..55ab97f4 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/BarVaryingDistributedLoads.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/BarVaryingDistributedLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -118,3 +118,4 @@ private List ReadBarVaryingDistributedLoads(List ids = null) } + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/GravityLoads.cs b/MidasCivil_Adapter/CRUD/Read/Loads/GravityLoads.cs index 8b13d75d..5e6c587a 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/GravityLoads.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/GravityLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -83,3 +83,4 @@ private List ReadGravityLoads(List ids = null) } + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/LoadCombinations.cs b/MidasCivil_Adapter/CRUD/Read/Loads/LoadCombinations.cs index e47a0e47..48213a47 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/LoadCombinations.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/LoadCombinations.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ private List ReadLoadCombinations(List ids = null) } + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/Loadcases.cs b/MidasCivil_Adapter/CRUD/Read/Loads/Loadcases.cs index b298d962..767fc447 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/Loadcases.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/Loadcases.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -51,3 +51,4 @@ private List ReadLoadcases(List ids = null) } + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/PointDisplacement.cs b/MidasCivil_Adapter/CRUD/Read/Loads/PointDisplacement.cs index d511f077..a97550e7 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/PointDisplacement.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/PointDisplacement.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -43,3 +43,4 @@ private List ReadPointDisplacements(List ids = null) } + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/PointForces.cs b/MidasCivil_Adapter/CRUD/Read/Loads/PointForces.cs index f734e54e..5b8d7797 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/PointForces.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/PointForces.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -100,3 +100,4 @@ private List ReadPointLoads(List ids = null) } + diff --git a/MidasCivil_Adapter/CRUD/Read/Loads/ReadLoad.cs b/MidasCivil_Adapter/CRUD/Read/Loads/ReadLoad.cs index ee282dfa..1b9914ab 100644 --- a/MidasCivil_Adapter/CRUD/Read/Loads/ReadLoad.cs +++ b/MidasCivil_Adapter/CRUD/Read/Loads/ReadLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -83,3 +83,4 @@ private List ReadLoad(Type type, List ids = null) + diff --git a/MidasCivil_Adapter/CRUD/Read/Properties/6DOFConstraints.cs b/MidasCivil_Adapter/CRUD/Read/Properties/6DOFConstraints.cs index a0d9f34b..3848db97 100644 --- a/MidasCivil_Adapter/CRUD/Read/Properties/6DOFConstraints.cs +++ b/MidasCivil_Adapter/CRUD/Read/Properties/6DOFConstraints.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -67,3 +67,4 @@ private List Read6DOFConstraints(List ids = null) + diff --git a/MidasCivil_Adapter/CRUD/Read/Properties/BarReleases.cs b/MidasCivil_Adapter/CRUD/Read/Properties/BarReleases.cs index c4ecd716..23227b13 100644 --- a/MidasCivil_Adapter/CRUD/Read/Properties/BarReleases.cs +++ b/MidasCivil_Adapter/CRUD/Read/Properties/BarReleases.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -86,3 +86,4 @@ private List ReadBarReleases(List ids = null) + diff --git a/MidasCivil_Adapter/CRUD/Read/Properties/Materials.cs b/MidasCivil_Adapter/CRUD/Read/Properties/Materials.cs index 57a5ccc4..b9bf0f37 100644 --- a/MidasCivil_Adapter/CRUD/Read/Properties/Materials.cs +++ b/MidasCivil_Adapter/CRUD/Read/Properties/Materials.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ private List ReadMaterials(List ids = null) + diff --git a/MidasCivil_Adapter/CRUD/Read/Properties/ReadMetadata.cs b/MidasCivil_Adapter/CRUD/Read/Properties/ReadMetadata.cs index cbe2e528..b39f977a 100644 --- a/MidasCivil_Adapter/CRUD/Read/Properties/ReadMetadata.cs +++ b/MidasCivil_Adapter/CRUD/Read/Properties/ReadMetadata.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -42,3 +42,4 @@ private IEnumerable ReadMetadata(List ids = null) + diff --git a/MidasCivil_Adapter/CRUD/Read/Properties/SectionProperties.cs b/MidasCivil_Adapter/CRUD/Read/Properties/SectionProperties.cs index 95e6e8d7..94237805 100644 --- a/MidasCivil_Adapter/CRUD/Read/Properties/SectionProperties.cs +++ b/MidasCivil_Adapter/CRUD/Read/Properties/SectionProperties.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -257,3 +257,4 @@ private List ParsePoints(List text, int start, int end, string ex + diff --git a/MidasCivil_Adapter/CRUD/Read/Properties/SurfaceProperty.cs b/MidasCivil_Adapter/CRUD/Read/Properties/SurfaceProperty.cs index ac9e68b0..c63af342 100644 --- a/MidasCivil_Adapter/CRUD/Read/Properties/SurfaceProperty.cs +++ b/MidasCivil_Adapter/CRUD/Read/Properties/SurfaceProperty.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -77,3 +77,4 @@ private List ReadSurfaceProperties(List ids = null) + diff --git a/MidasCivil_Adapter/CRUD/Read/Read.cs b/MidasCivil_Adapter/CRUD/Read/Read.cs index b213097b..c9a9b5e8 100644 --- a/MidasCivil_Adapter/CRUD/Read/Read.cs +++ b/MidasCivil_Adapter/CRUD/Read/Read.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -85,3 +85,4 @@ protected override IEnumerable IRead(Type type, IList ids = null, A + diff --git a/MidasCivil_Adapter/CRUD/Read/Results/BarResults.cs b/MidasCivil_Adapter/CRUD/Read/Results/BarResults.cs index 6049fca5..e77bf49b 100644 --- a/MidasCivil_Adapter/CRUD/Read/Results/BarResults.cs +++ b/MidasCivil_Adapter/CRUD/Read/Results/BarResults.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -143,3 +143,4 @@ private IEnumerable ExtractBarForce(List ids, List loadcas + diff --git a/MidasCivil_Adapter/CRUD/Read/Results/MeshResults.cs b/MidasCivil_Adapter/CRUD/Read/Results/MeshResults.cs index 8787cdb1..0ac4beb6 100644 --- a/MidasCivil_Adapter/CRUD/Read/Results/MeshResults.cs +++ b/MidasCivil_Adapter/CRUD/Read/Results/MeshResults.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -183,3 +183,4 @@ private IEnumerable ExtractMeshVonMises(List ids, List loa + diff --git a/MidasCivil_Adapter/CRUD/Read/Results/NodeResults.cs b/MidasCivil_Adapter/CRUD/Read/Results/NodeResults.cs index d355c106..5ec41097 100644 --- a/MidasCivil_Adapter/CRUD/Read/Results/NodeResults.cs +++ b/MidasCivil_Adapter/CRUD/Read/Results/NodeResults.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -126,3 +126,4 @@ private IEnumerable ExtractNodeDisplacement(List ids, List } + diff --git a/MidasCivil_Adapter/CRUD/Read/Results/ReadResults.cs b/MidasCivil_Adapter/CRUD/Read/Results/ReadResults.cs index fd3462cf..9020c3f7 100644 --- a/MidasCivil_Adapter/CRUD/Read/Results/ReadResults.cs +++ b/MidasCivil_Adapter/CRUD/Read/Results/ReadResults.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -208,3 +208,4 @@ private static string GetCSVFile(string path) + diff --git a/MidasCivil_Adapter/CRUD/Update/UpdateObjects.cs b/MidasCivil_Adapter/CRUD/Update/UpdateObjects.cs index f75cf527..f1e3c41a 100644 --- a/MidasCivil_Adapter/CRUD/Update/UpdateObjects.cs +++ b/MidasCivil_Adapter/CRUD/Update/UpdateObjects.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ protected override bool IUpdate(IEnumerable objects, ActionConfig actionCo + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToBar.cs b/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToBar.cs index fa2da7a9..1c929c02 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToBar.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToBar.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -94,7 +94,7 @@ public static Bar ToBar(this string bar, Dictionary bhomNodes, double orientationAngle = double.Parse(delimitted[6].Trim()); - Bar bhomBar = new Bar { StartNode = startNode, EndNode = endNode, SectionProperty = sectionProperty, OrientationAngle = orientationAngle, Release = barRelease, FEAType = feaType }; + Bar bhomBar = new Bar { Start = startNode, End = endNode, SectionProperty = sectionProperty, OrientationAngle = orientationAngle, Release = barRelease, FEAType = feaType }; bhomBar.SetAdapterId(typeof(MidasCivilId), bhomID); return bhomBar; @@ -108,3 +108,4 @@ public static Bar ToBar(this string bar, Dictionary bhomNodes, + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToFEMesh.cs b/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToFEMesh.cs index fbf54943..c8d3ea89 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToFEMesh.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToFEMesh.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -102,3 +102,4 @@ public static FEMesh ToFEMesh( } + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToNode.cs b/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToNode.cs index ddb08666..a2df3379 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToNode.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToNode.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -95,3 +95,4 @@ public static Node ToNode(this string node, Dictionary s + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToPanel.cs b/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToPanel.cs index ac2373ce..613c6486 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToPanel.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToPanel.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -65,3 +65,4 @@ public static Panel ToPanel(FEMesh mesh) } + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToRigidLink.cs b/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToRigidLink.cs index 348d32e2..bd6bb417 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToRigidLink.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Elements/ToRigidLink.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -115,3 +115,4 @@ public static RigidLink ToRigidLink(string rigidLink, Dictionary n + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToAreaDifferentialTemperatureLoad.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToAreaDifferentialTemperatureLoad.cs index d7c18ec8..e8faa602 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToAreaDifferentialTemperatureLoad.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToAreaDifferentialTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -85,3 +85,4 @@ public static AreaDifferentialTemperatureLoad ToAreaDifferentialTemperatureLoad( + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToAreaUniformTemperatureLoad.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToAreaUniformTemperatureLoad.cs index c3d52ad9..a0290f88 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToAreaUniformTemperatureLoad.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToAreaUniformTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -88,3 +88,4 @@ public static AreaUniformTemperatureLoad ToAreaUniformTemperatureLoad(string tem + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToAreaUniformlyDistributedLoad.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToAreaUniformlyDistributedLoad.cs index 1d81b115..f4914ef1 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToAreaUniformlyDistributedLoad.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToAreaUniformlyDistributedLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -120,3 +120,4 @@ public static AreaUniformlyDistributedLoad ToAreaUniformlyDistributedLoad(string + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarDifferentialTemperatureLoad.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarDifferentialTemperatureLoad.cs index 9d22cf5b..10661325 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarDifferentialTemperatureLoad.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarDifferentialTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -136,3 +136,4 @@ public static BarDifferentialTemperatureLoad ToBarDifferentialTemperatureLoad(Li + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarPointLoad.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarPointLoad.cs index 06f23e67..86b3fde8 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarPointLoad.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarPointLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -134,3 +134,4 @@ public static BarPointLoad ToBarPointLoad(string barPointLoad, List asso + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarUniformTemperatureLoad.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarUniformTemperatureLoad.cs index 7c2e4beb..ed5f0060 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarUniformTemperatureLoad.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarUniformTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -87,3 +87,4 @@ public static BarUniformTemperatureLoad ToBarUniformTemperatureLoad(string tempe + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarUniformlyDistributedLoad.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarUniformlyDistributedLoad.cs index 244fb2f8..592c680c 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarUniformlyDistributedLoad.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarUniformlyDistributedLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -141,3 +141,4 @@ public static BarUniformlyDistributedLoad ToBarUniformlyDistributedLoad(string b + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarVaryingDistributedLoad.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarVaryingDistributedLoad.cs index 9573e5cf..261c4a90 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarVaryingDistributedLoad.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToBarVaryingDistributedLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -169,3 +169,4 @@ public static BarVaryingDistributedLoad ToBarVaryingDistributedLoad(string barVa + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToGravityLoad.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToGravityLoad.cs index 7cea21cf..c1a1d889 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToGravityLoad.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToGravityLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -75,3 +75,4 @@ public static GravityLoad ToGravityLoad(List objects, string gravity + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToLoadCombination.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToLoadCombination.cs index 3db1a37e..1e9f5b2f 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToLoadCombination.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToLoadCombination.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ public static LoadCombination ToLoadCombination(string loadCombination1, string + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToLoadNature.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToLoadNature.cs index 30ad8edf..5a9f1c96 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToLoadNature.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToLoadNature.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ public static void ToLoadNature(string midasNature, ref LoadNature nature) + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToLoadcase.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToLoadcase.cs index db558f03..4ba8be8a 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToLoadcase.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToLoadcase.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -61,3 +61,4 @@ public static Loadcase ToLoadcase(this string loadcase) + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToPointForce.cs b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToPointForce.cs index 22d2ad98..fa3a931e 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToPointForce.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Loads/ToPointForce.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -95,3 +95,4 @@ public static PointLoad ToPointLoad(this string pointLoad, List associat + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToBarRelease.cs b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToBarRelease.cs index 1d3342cc..3b2c9956 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToBarRelease.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToBarRelease.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -78,3 +78,4 @@ public static BarRelease ToBarRelease(string release, int count) } + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToConstraint6DOF.cs b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToConstraint6DOF.cs index aad14a22..040809e0 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToConstraint6DOF.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToConstraint6DOF.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -165,3 +165,4 @@ public static Constraint6DOF ToConstraint6DOF(this string support, string versio } + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToMaterials.cs b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToMaterials.cs index e5ce4d75..7301e6ee 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToMaterials.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToMaterials.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -170,3 +170,4 @@ public static IMaterialFragment ToMaterial(this string material, string forceUni + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToMetadata.cs b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToMetadata.cs index 4758f205..6dbf54f1 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToMetadata.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToMetadata.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -124,3 +124,4 @@ public static IEnumerable ToMetadata(List data) } + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToProfile.cs b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToProfile.cs index f354ad4e..8f0a98ed 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToProfile.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToProfile.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -156,3 +156,4 @@ public static IProfile ToProfile(List sectionProfile, string shape, stri + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToSectionProperty.cs b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToSectionProperty.cs index 2d14d6f2..b224de96 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToSectionProperty.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToSectionProperty.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ public static ISectionProperty ToSectionProperty(this List sectionProfil } + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToSurfaceProperty.cs b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToSurfaceProperty.cs index 9a46b9a4..de2f17fb 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToSurfaceProperty.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Properties/ToSurfaceProperty.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -86,3 +86,4 @@ public static ISurfaceProperty ToSurfaceProperty(this string surfaceProperty, st + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToBarForce.cs b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToBarForce.cs index 749ca717..c14d9620 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToBarForce.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToBarForce.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -91,3 +91,4 @@ private static double GetBarResultPosition(string delimitted) + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToBarStress.cs b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToBarStress.cs index 7b949a87..47421976 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToBarStress.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToBarStress.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -72,3 +72,4 @@ public static BarStress ToBarStress(this List delimitted, string forceUn + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToMeshForce.cs b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToMeshForce.cs index 51f67b5a..c3ed0520 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToMeshForce.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToMeshForce.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ public static MeshForce ToMeshForce(this List delimitted, string forceUn } + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToMeshStress.cs b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToMeshStress.cs index 63758ff1..812b39ea 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToMeshStress.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToMeshStress.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -63,3 +63,4 @@ public static MeshStress ToMeshStress(this List delimitted) } + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToMeshVonMises.cs b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToMeshVonMises.cs index 96807bc2..e69b2f90 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToMeshVonMises.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToMeshVonMises.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -62,3 +62,4 @@ public static MeshVonMises ToMeshVonMises(this List delimitted) + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToNodeDisplacement.cs b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToNodeDisplacement.cs index 741897f2..6b59a08f 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToNodeDisplacement.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToNodeDisplacement.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ public static NodeDisplacement ToNodeDisplacement(this List delimitted, + diff --git a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToNodeReaction.cs b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToNodeReaction.cs index ab567ab3..5b2a8867 100644 --- a/MidasCivil_Adapter/Convert/ToBHoM/Results/ToNodeReaction.cs +++ b/MidasCivil_Adapter/Convert/ToBHoM/Results/ToNodeReaction.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -64,3 +64,4 @@ public static NodeReaction ToNodeReaction(this List delimitted, string f + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromBar.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromBar.cs index 950a68c8..35b20771 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromBar.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromBar.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -55,8 +55,8 @@ public static string FromBar(this Bar bar) break; } - string startNodeID = bar.StartNode.AdapterId(typeof(MidasCivilId)); - string endNodeID = bar.EndNode.AdapterId(typeof(MidasCivilId)); + string startNodeID = bar.Start.AdapterId(typeof(MidasCivilId)); + string endNodeID = bar.End.AdapterId(typeof(MidasCivilId)); string materialID = "1"; string sectionID = "1"; @@ -93,3 +93,4 @@ public static string FromBar(this Bar bar) } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromFEMesh.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromFEMesh.cs index 243df206..b95be894 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromFEMesh.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromFEMesh.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -97,3 +97,4 @@ public static string FromFEMesh(this FEMesh feMesh, ref int index) } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromNode.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromNode.cs index 594a6f50..9fb92c3a 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromNode.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromNode.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -51,3 +51,4 @@ public static string FromNode(this Node node, string lengthUnit) } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromRigidLink.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromRigidLink.cs index bf5eaeb1..c697ac3c 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromRigidLink.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromRigidLink.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -84,3 +84,4 @@ private static string BoolToFixity(bool fixity) } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaDifferentialTemperatureLoad.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaDifferentialTemperatureLoad.cs index 686f3053..ec2a9979 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaDifferentialTemperatureLoad.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaDifferentialTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -44,3 +44,4 @@ public static string FromAreaDifferentialTemperatureLoad(this AreaDifferentialTe } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaUniformTemperatureLoad.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaUniformTemperatureLoad.cs index cc1de8a9..2f169a0e 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaUniformTemperatureLoad.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaUniformTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -46,3 +46,4 @@ public static string FromAreaUniformTemperatureLoad(this AreaUniformTemperatureL } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaUniformlyDistributedLoad.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaUniformlyDistributedLoad.cs index 3bfc8688..ee9d629b 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaUniformlyDistributedLoad.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaUniformlyDistributedLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ public static string FromAreaUniformlyDistributedLoad(this AreaUniformlyDistribu } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarDifferentialTemperatureLoad.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarDifferentialTemperatureLoad.cs index 35104415..c81d724d 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarDifferentialTemperatureLoad.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarDifferentialTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ public static List FromBarDifferentialTemperatureLoad(this BarDifferenti } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarPointLoad.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarPointLoad.cs index 4c8ef23c..ff80bfb7 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarPointLoad.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarPointLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -63,3 +63,4 @@ public static string FromBarPointLoad(this BarPointLoad barLoad, string assigned } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarUniformTemperatureLoad.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarUniformTemperatureLoad.cs index 6f59d1c6..34cf64e2 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarUniformTemperatureLoad.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarUniformTemperatureLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -45,3 +45,4 @@ public static string FromBarUniformTemperatureLoad(this BarUniformTemperatureLoa } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarUniformlyDistributedLoad.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarUniformlyDistributedLoad.cs index ff8ca5ad..b86a46fb 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarUniformlyDistributedLoad.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarUniformlyDistributedLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -65,3 +65,4 @@ public static string FromBarUniformlyDistributedLoad(this BarUniformlyDistribute } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarVaryingDistributedLoad.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarVaryingDistributedLoad.cs index 5e5d25ff..5e6b2af2 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarVaryingDistributedLoad.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromBarVaryingDistributedLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -67,3 +67,4 @@ public static string FromBarVaryingDistributedLoad(this BarVaryingDistributedLoa } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromGravityLoad.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromGravityLoad.cs index 21b00f9a..61800d45 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromGravityLoad.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromGravityLoad.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -47,3 +47,4 @@ public static List FromGravityLoad(this GravityLoad gravityLoad) } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadAxis.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadAxis.cs index 89d5801b..b434a2d7 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadAxis.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadAxis.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ public static string FromLoadAxis(LoadAxis bhomAxis) } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadCombination.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadCombination.cs index ebabca07..3811a912 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadCombination.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadCombination.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -69,3 +69,4 @@ public static List FromLoadCombination(this LoadCombination loadCombinat } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadGroup.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadGroup.cs index 7574b846..8bfdd2fa 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadGroup.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadGroup.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -43,3 +43,4 @@ public static string FromLoadGroup(this ILoad load) } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadProjection.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadProjection.cs index 8d761ac8..91833bf5 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadProjection.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadProjection.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ public static string FromLoadProjection(bool bhomProjection) } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadcase.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadcase.cs index 93428f9c..caa21a31 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadcase.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromLoadcase.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -71,3 +71,4 @@ private static void BhomLoadNatureConverter(LoadNature bhomNature, ref string na } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromPointForce.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromPointForce.cs index fdffd85d..7412b57d 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromPointForce.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromPointForce.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ public static string FromPointLoad(this PointLoad pointLoad, string assignedNode } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromVector.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromVector.cs index cf9ce42a..cf6cc193 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromVector.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromVector.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ public static string FromVector(Vector bhomVector) } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromVectorDirection.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromVectorDirection.cs index 0d73aac1..2240f66b 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromVectorDirection.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromVectorDirection.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ public static double FromVectorDirection(Vector bhomVector, string direction) } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromBarRelease.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromBarRelease.cs index a86297fa..e05386da 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromBarRelease.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromBarRelease.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ public static List FromBarRelease(this BarRelease barRelease, int groupC } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromDOFType.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromDOFType.cs index 233a88bd..a9a4eb11 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromDOFType.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromDOFType.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -49,3 +49,4 @@ public static string FromDOFType(DOFType fixity) } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromFixity.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromFixity.cs index 380a9971..0fdf5a26 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromFixity.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromFixity.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -58,3 +58,4 @@ internal static bool FromFixity(string number, bool release = false) + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromMaterial.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromMaterial.cs index 001faa80..0979de50 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromMaterial.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromMaterial.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -92,3 +92,4 @@ public static string FromMaterial(this IMaterialFragment material, string forceU } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromMetadata.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromMetadata.cs index 89aff9f2..e8db4be5 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromMetadata.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromMetadata.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -94,3 +94,4 @@ public static StringBuilder FromMetadata(Metadata metadata) } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSectionProperty.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSectionProperty.cs index 04d739af..25107791 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSectionProperty.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSectionProperty.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -1003,3 +1003,4 @@ private static void CalculateWidth(ref double width, List pts, ICurve cur } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSpring.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSpring.cs index bbd71390..8242b620 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSpring.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSpring.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -161,3 +161,4 @@ private static string SpringFixity(Constraint6DOF constraint6DOF, int groupChara } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSupport.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSupport.cs index 5dd851b3..3d093b4f 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSupport.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSupport.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -89,3 +89,4 @@ private static string SupportString(Constraint6DOF constraint6DOF, int groupChar } + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSurfaceProperty.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSurfaceProperty.cs index 0dda9650..f551a698 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSurfaceProperty.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromSurfaceProperty.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -112,3 +112,4 @@ private static string CreateSurfaceProfile(Waffle bhomSurfaceProperty, string le + diff --git a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromTag.cs b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromTag.cs index 729c916b..9e1055d7 100644 --- a/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromTag.cs +++ b/MidasCivil_Adapter/Convert/ToMidasCivil/Properties/FromTag.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -41,3 +41,4 @@ public static string FromTag(string name) } + diff --git a/MidasCivil_Adapter/Convert/Units/AreaFromSI.cs b/MidasCivil_Adapter/Convert/Units/AreaFromSI.cs index be71b600..1c9b56f5 100644 --- a/MidasCivil_Adapter/Convert/Units/AreaFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/AreaFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ public static double AreaFromSI(this double area, string lengthUnit) + diff --git a/MidasCivil_Adapter/Convert/Units/AreaMomentOfInertiaFromSI.cs b/MidasCivil_Adapter/Convert/Units/AreaMomentOfInertiaFromSI.cs index a278994b..c117b967 100644 --- a/MidasCivil_Adapter/Convert/Units/AreaMomentOfInertiaFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/AreaMomentOfInertiaFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ public static double AreaMomentOfInertiaFromSI(this double areaMomentOfInertia, + diff --git a/MidasCivil_Adapter/Convert/Units/AreaMomentOfInertiaToSI.cs b/MidasCivil_Adapter/Convert/Units/AreaMomentOfInertiaToSI.cs index 834903da..d4923520 100644 --- a/MidasCivil_Adapter/Convert/Units/AreaMomentOfInertiaToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/AreaMomentOfInertiaToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ public static double AreaMomentOfInertiaToSI(this double areaMomentOfInertia, st + diff --git a/MidasCivil_Adapter/Convert/Units/AreaToSI.cs b/MidasCivil_Adapter/Convert/Units/AreaToSI.cs index fdec7cc3..2ccc2d14 100644 --- a/MidasCivil_Adapter/Convert/Units/AreaToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/AreaToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ public static double AreaToSI(this double area, string lengthUnit) + diff --git a/MidasCivil_Adapter/Convert/Units/DeltaTemperatureFromSI.cs b/MidasCivil_Adapter/Convert/Units/DeltaTemperatureFromSI.cs index cda1382d..ce5fa652 100644 --- a/MidasCivil_Adapter/Convert/Units/DeltaTemperatureFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/DeltaTemperatureFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ public static double DeltaTemperatureFromSI(this double deltaTemperature, string + diff --git a/MidasCivil_Adapter/Convert/Units/DeltaTemperatureToSI.cs b/MidasCivil_Adapter/Convert/Units/DeltaTemperatureToSI.cs index e0cc9db3..4aae3013 100644 --- a/MidasCivil_Adapter/Convert/Units/DeltaTemperatureToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/DeltaTemperatureToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ public static double DeltaTemperatureToSI(this double deltaTemperature, string t + diff --git a/MidasCivil_Adapter/Convert/Units/DensityFromSI.cs b/MidasCivil_Adapter/Convert/Units/DensityFromSI.cs index b7eccdea..0f38168c 100644 --- a/MidasCivil_Adapter/Convert/Units/DensityFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/DensityFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -169,3 +169,4 @@ public static double DensityFromSI(this double density, string forceUnit, string + diff --git a/MidasCivil_Adapter/Convert/Units/DensityToSI.cs b/MidasCivil_Adapter/Convert/Units/DensityToSI.cs index 2f93511c..75d5bd2d 100644 --- a/MidasCivil_Adapter/Convert/Units/DensityToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/DensityToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -169,3 +169,4 @@ public static double DensityToSI(this double density, string forceUnit, string l + diff --git a/MidasCivil_Adapter/Convert/Units/ForceFromSI.cs b/MidasCivil_Adapter/Convert/Units/ForceFromSI.cs index 834ee6c6..5c413761 100644 --- a/MidasCivil_Adapter/Convert/Units/ForceFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/ForceFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ public static double ForceFromSI(this double force, string forceUnit) + diff --git a/MidasCivil_Adapter/Convert/Units/ForcePerLengthFromSI.cs b/MidasCivil_Adapter/Convert/Units/ForcePerLengthFromSI.cs index f5b11075..00724127 100644 --- a/MidasCivil_Adapter/Convert/Units/ForcePerLengthFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/ForcePerLengthFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -161,3 +161,4 @@ public static double ForcePerLengthFromSI(this double forcePerLength, string for + diff --git a/MidasCivil_Adapter/Convert/Units/ForcePerLengthToSI.cs b/MidasCivil_Adapter/Convert/Units/ForcePerLengthToSI.cs index 2c1dd4e7..c686dac6 100644 --- a/MidasCivil_Adapter/Convert/Units/ForcePerLengthToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/ForcePerLengthToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -161,3 +161,4 @@ public static double ForcePerLengthToSI(this double forcePerLength, string force + diff --git a/MidasCivil_Adapter/Convert/Units/ForceToSI.cs b/MidasCivil_Adapter/Convert/Units/ForceToSI.cs index cdf93dcc..50297bcd 100644 --- a/MidasCivil_Adapter/Convert/Units/ForceToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/ForceToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -68,3 +68,4 @@ public static double ForceToSI(this double force, string forceUnit) + diff --git a/MidasCivil_Adapter/Convert/Units/InverseDeltaTemperatureFromSI.cs b/MidasCivil_Adapter/Convert/Units/InverseDeltaTemperatureFromSI.cs index 0de11248..33ef7b1b 100644 --- a/MidasCivil_Adapter/Convert/Units/InverseDeltaTemperatureFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/InverseDeltaTemperatureFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ public static double InverseDeltaTemperatureFromSI(this double coefficientOfTher + diff --git a/MidasCivil_Adapter/Convert/Units/InverseDeltaTemperatureToSI.cs b/MidasCivil_Adapter/Convert/Units/InverseDeltaTemperatureToSI.cs index b6efb721..cc29741a 100644 --- a/MidasCivil_Adapter/Convert/Units/InverseDeltaTemperatureToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/InverseDeltaTemperatureToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ public static double InverseDeltaTemperatureToSI(this double coefficientOfTherma + diff --git a/MidasCivil_Adapter/Convert/Units/LengthFromSI.cs b/MidasCivil_Adapter/Convert/Units/LengthFromSI.cs index 996cd676..1e9a29e7 100644 --- a/MidasCivil_Adapter/Convert/Units/LengthFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/LengthFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ public static double LengthFromSI(this double length, string lengthUnit) + diff --git a/MidasCivil_Adapter/Convert/Units/LengthToSI.cs b/MidasCivil_Adapter/Convert/Units/LengthToSI.cs index c0b63b5d..42803039 100644 --- a/MidasCivil_Adapter/Convert/Units/LengthToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/LengthToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ public static double LengthToSI(this double length, string lengthUnit) + diff --git a/MidasCivil_Adapter/Convert/Units/MomentFromSI.cs b/MidasCivil_Adapter/Convert/Units/MomentFromSI.cs index 7b772adf..5ca4a8fa 100644 --- a/MidasCivil_Adapter/Convert/Units/MomentFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/MomentFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -161,3 +161,4 @@ public static double MomentFromSI(this double moment, string forceUnit, string l + diff --git a/MidasCivil_Adapter/Convert/Units/MomentPerLengthFromSI.cs b/MidasCivil_Adapter/Convert/Units/MomentPerLengthFromSI.cs index c843ea39..4f4edf0a 100644 --- a/MidasCivil_Adapter/Convert/Units/MomentPerLengthFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/MomentPerLengthFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -161,3 +161,4 @@ public static double MomentPerLengthFromSI(this double momentPerLength, string f + diff --git a/MidasCivil_Adapter/Convert/Units/MomentPerLengthToSI.cs b/MidasCivil_Adapter/Convert/Units/MomentPerLengthToSI.cs index 2914db55..f5ca7330 100644 --- a/MidasCivil_Adapter/Convert/Units/MomentPerLengthToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/MomentPerLengthToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -161,3 +161,4 @@ public static double MomentPerLengthToSI(this double momentPerLength, string for + diff --git a/MidasCivil_Adapter/Convert/Units/MomentToSI.cs b/MidasCivil_Adapter/Convert/Units/MomentToSI.cs index b0084200..bc8d435f 100644 --- a/MidasCivil_Adapter/Convert/Units/MomentToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/MomentToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -161,3 +161,4 @@ public static double MomentToSI(this double moment, string forceUnit, string len + diff --git a/MidasCivil_Adapter/Convert/Units/PressureFromSI.cs b/MidasCivil_Adapter/Convert/Units/PressureFromSI.cs index f959b294..2f5ec73d 100644 --- a/MidasCivil_Adapter/Convert/Units/PressureFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/PressureFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -161,3 +161,4 @@ public static double PressureFromSI(this double pressure, string forceUnit, stri + diff --git a/MidasCivil_Adapter/Convert/Units/PressureToSI.cs b/MidasCivil_Adapter/Convert/Units/PressureToSI.cs index 04ea5d42..df524ec1 100644 --- a/MidasCivil_Adapter/Convert/Units/PressureToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/PressureToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -162,3 +162,4 @@ public static double PressureToSI(this double pressure, string forceUnit, string + diff --git a/MidasCivil_Adapter/Convert/Units/TemperatureFromSI.cs b/MidasCivil_Adapter/Convert/Units/TemperatureFromSI.cs index 14bba0d1..e4c4577c 100644 --- a/MidasCivil_Adapter/Convert/Units/TemperatureFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/TemperatureFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ public static double TemperatureFromSI(this double temperature, string temperatu + diff --git a/MidasCivil_Adapter/Convert/Units/TemperatureToSI.cs b/MidasCivil_Adapter/Convert/Units/TemperatureToSI.cs index 5a713c9f..5d927865 100644 --- a/MidasCivil_Adapter/Convert/Units/TemperatureToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/TemperatureToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ public static double TemperatureToSI(this double temperature, string temperature + diff --git a/MidasCivil_Adapter/Convert/Units/VolumeFromSI.cs b/MidasCivil_Adapter/Convert/Units/VolumeFromSI.cs index 8a090f25..5532fd93 100644 --- a/MidasCivil_Adapter/Convert/Units/VolumeFromSI.cs +++ b/MidasCivil_Adapter/Convert/Units/VolumeFromSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ public static double VolumeFromSI(this double length, string lengthUnit) + diff --git a/MidasCivil_Adapter/Convert/Units/VolumeToSI.cs b/MidasCivil_Adapter/Convert/Units/VolumeToSI.cs index dd97abf8..cfdda8bc 100644 --- a/MidasCivil_Adapter/Convert/Units/VolumeToSI.cs +++ b/MidasCivil_Adapter/Convert/Units/VolumeToSI.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -66,3 +66,4 @@ public static double VolumeToSI(this double length, string lengthUnit) + diff --git a/MidasCivil_Adapter/MidasCivilAdapter.cs b/MidasCivil_Adapter/MidasCivilAdapter.cs index cdc2d8ae..6e04d6de 100644 --- a/MidasCivil_Adapter/MidasCivilAdapter.cs +++ b/MidasCivil_Adapter/MidasCivilAdapter.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -49,7 +49,6 @@ public partial class MidasCivilAdapter : BHoMAdapter /***************************************************/ //Add any applicable constructors here, such as linking to a specific file or anything else as well as linking to that file through the (if existing) com link via the API - [PreviousVersion("7.0", "BH.Adapter.MidasCivil.MidasCivilAdapter(System.String, System.Boolean, System.String)")] [Description("Adapter to create a .mct file to be used in Midas Civil command shell.")] [Input("filePath", "Path to the .mcb file. It is recommended to save your .mcb file in a separate folder before using the adapter.")] [Input("midasCivilSettings", "General settings that are applicable to all actions performed by this adapter, e.g. version of Midas Civil to be used.")] @@ -136,3 +135,4 @@ public static bool IsApplicationRunning() + diff --git a/MidasCivil_Adapter/PrivateHelpers/AssignBarRelease.cs b/MidasCivil_Adapter/PrivateHelpers/AssignBarRelease.cs index 2ed8c08a..821ce6ae 100644 --- a/MidasCivil_Adapter/PrivateHelpers/AssignBarRelease.cs +++ b/MidasCivil_Adapter/PrivateHelpers/AssignBarRelease.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,7 +38,7 @@ private void AssignBarRelease(string bhomID, string propertyName, string section List propertyText = File.ReadAllLines(path).ToList(); - int index = propertyText.FindIndex(x => x.Contains(propertyName)) - 1; + int index = propertyText.FindIndex(x => x.Contains("," + propertyName)) - 1; //"," added to prevent any partial matches string constraint = propertyText[index]; @@ -88,7 +88,4 @@ private void AssignBarRelease(string bhomID, string propertyName, string section /***************************************************/ } -} - - - +} \ No newline at end of file diff --git a/MidasCivil_Adapter/PrivateHelpers/AssignProperty.cs b/MidasCivil_Adapter/PrivateHelpers/AssignProperty.cs index 9f4e1573..c4649881 100644 --- a/MidasCivil_Adapter/PrivateHelpers/AssignProperty.cs +++ b/MidasCivil_Adapter/PrivateHelpers/AssignProperty.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -91,3 +91,4 @@ private void AssignProperty(string bhomID, string propertyName, string section) + diff --git a/MidasCivil_Adapter/PrivateHelpers/CombineLoads.cs b/MidasCivil_Adapter/PrivateHelpers/CombineLoads.cs index d8930523..2b3f1b2a 100644 --- a/MidasCivil_Adapter/PrivateHelpers/CombineLoads.cs +++ b/MidasCivil_Adapter/PrivateHelpers/CombineLoads.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -171,3 +171,4 @@ private static List CombineLoads(List loads, + diff --git a/MidasCivil_Adapter/PrivateHelpers/CompareGroup.cs b/MidasCivil_Adapter/PrivateHelpers/CompareGroup.cs index 21e830b0..3c4c06fe 100644 --- a/MidasCivil_Adapter/PrivateHelpers/CompareGroup.cs +++ b/MidasCivil_Adapter/PrivateHelpers/CompareGroup.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ private void CompareGroup(string group, string path) + diff --git a/MidasCivil_Adapter/PrivateHelpers/CompareLoadGroup.cs b/MidasCivil_Adapter/PrivateHelpers/CompareLoadGroup.cs index 77272f94..f7fc4711 100644 --- a/MidasCivil_Adapter/PrivateHelpers/CompareLoadGroup.cs +++ b/MidasCivil_Adapter/PrivateHelpers/CompareLoadGroup.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -55,3 +55,4 @@ private void CompareLoadGroup(string loadGroup, string path) + diff --git a/MidasCivil_Adapter/PrivateHelpers/CreateAssignmentString.cs b/MidasCivil_Adapter/PrivateHelpers/CreateAssignmentString.cs index 1c68e975..748960c9 100644 --- a/MidasCivil_Adapter/PrivateHelpers/CreateAssignmentString.cs +++ b/MidasCivil_Adapter/PrivateHelpers/CreateAssignmentString.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -51,3 +51,4 @@ private static string CreateAssignmentString(List assignmentIndexes) + diff --git a/MidasCivil_Adapter/PrivateHelpers/CreateGroups.cs b/MidasCivil_Adapter/PrivateHelpers/CreateGroups.cs index 0717b339..a2760919 100644 --- a/MidasCivil_Adapter/PrivateHelpers/CreateGroups.cs +++ b/MidasCivil_Adapter/PrivateHelpers/CreateGroups.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -303,3 +303,4 @@ private void CreateGroups(IEnumerable meshes) + diff --git a/MidasCivil_Adapter/PrivateHelpers/CreateSectionText.cs b/MidasCivil_Adapter/PrivateHelpers/CreateSectionText.cs index 06bc30ac..3ff0d710 100644 --- a/MidasCivil_Adapter/PrivateHelpers/CreateSectionText.cs +++ b/MidasCivil_Adapter/PrivateHelpers/CreateSectionText.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -83,3 +83,4 @@ private string CreateSectionFile(string section) } + diff --git a/MidasCivil_Adapter/PrivateHelpers/ExistsSection.cs b/MidasCivil_Adapter/PrivateHelpers/ExistsSection.cs index 1169f4bd..32acb56b 100644 --- a/MidasCivil_Adapter/PrivateHelpers/ExistsSection.cs +++ b/MidasCivil_Adapter/PrivateHelpers/ExistsSection.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -48,3 +48,4 @@ private bool ExistsSection(string section) } + diff --git a/MidasCivil_Adapter/PrivateHelpers/GetAssignmentIds.cs b/MidasCivil_Adapter/PrivateHelpers/GetAssignmentIds.cs index 35d43988..fba3f6cf 100644 --- a/MidasCivil_Adapter/PrivateHelpers/GetAssignmentIds.cs +++ b/MidasCivil_Adapter/PrivateHelpers/GetAssignmentIds.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -94,3 +94,4 @@ private static List RangeBySplit(string text, string split1, string split2) + diff --git a/MidasCivil_Adapter/PrivateHelpers/GetBarReleaseAssignments.cs b/MidasCivil_Adapter/PrivateHelpers/GetBarReleaseAssignments.cs index 05b9faf0..6351c35b 100644 --- a/MidasCivil_Adapter/PrivateHelpers/GetBarReleaseAssignments.cs +++ b/MidasCivil_Adapter/PrivateHelpers/GetBarReleaseAssignments.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -79,3 +79,4 @@ private Dictionary> GetBarReleaseAssignments(string section, s + diff --git a/MidasCivil_Adapter/PrivateHelpers/GetGroupAssignments.cs b/MidasCivil_Adapter/PrivateHelpers/GetGroupAssignments.cs index a28494f3..34f49fa8 100644 --- a/MidasCivil_Adapter/PrivateHelpers/GetGroupAssignments.cs +++ b/MidasCivil_Adapter/PrivateHelpers/GetGroupAssignments.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ private HashSet GetGroupAssignments(Dictionary> dictio + diff --git a/MidasCivil_Adapter/PrivateHelpers/GetMaxID.cs b/MidasCivil_Adapter/PrivateHelpers/GetMaxID.cs index 3182383c..e41bf5ca 100644 --- a/MidasCivil_Adapter/PrivateHelpers/GetMaxID.cs +++ b/MidasCivil_Adapter/PrivateHelpers/GetMaxID.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -69,3 +69,4 @@ private int GetMaxId(string section) + diff --git a/MidasCivil_Adapter/PrivateHelpers/GetPropertyAssignments.cs b/MidasCivil_Adapter/PrivateHelpers/GetPropertyAssignments.cs index bc698223..aa13a60c 100644 --- a/MidasCivil_Adapter/PrivateHelpers/GetPropertyAssignments.cs +++ b/MidasCivil_Adapter/PrivateHelpers/GetPropertyAssignments.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -106,3 +106,4 @@ private Dictionary> GetPropertyAssignments(string section, str + diff --git a/MidasCivil_Adapter/PrivateHelpers/GetSectionMaterialCombinations.cs b/MidasCivil_Adapter/PrivateHelpers/GetSectionMaterialCombinations.cs index 179f7ab8..d70d2c3d 100644 --- a/MidasCivil_Adapter/PrivateHelpers/GetSectionMaterialCombinations.cs +++ b/MidasCivil_Adapter/PrivateHelpers/GetSectionMaterialCombinations.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -126,3 +126,4 @@ private static Dictionary GetSectionMaterialCombinatio + diff --git a/MidasCivil_Adapter/PrivateHelpers/GetSectionText.cs b/MidasCivil_Adapter/PrivateHelpers/GetSectionText.cs index 9e13eac6..86f471e7 100644 --- a/MidasCivil_Adapter/PrivateHelpers/GetSectionText.cs +++ b/MidasCivil_Adapter/PrivateHelpers/GetSectionText.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -94,3 +94,4 @@ private static void CleanString(ref List sectionText) + diff --git a/MidasCivil_Adapter/PrivateHelpers/GetStiffnessVectorModulus.cs b/MidasCivil_Adapter/PrivateHelpers/GetStiffnessVectorModulus.cs index fcd6d392..05457db6 100644 --- a/MidasCivil_Adapter/PrivateHelpers/GetStiffnessVectorModulus.cs +++ b/MidasCivil_Adapter/PrivateHelpers/GetStiffnessVectorModulus.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -69,3 +69,4 @@ private static double Modulus(Vector vector) + diff --git a/MidasCivil_Adapter/PrivateHelpers/GetSupportedDOFType.cs b/MidasCivil_Adapter/PrivateHelpers/GetSupportedDOFType.cs index 5f129a63..cabf1212 100644 --- a/MidasCivil_Adapter/PrivateHelpers/GetSupportedDOFType.cs +++ b/MidasCivil_Adapter/PrivateHelpers/GetSupportedDOFType.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -50,3 +50,4 @@ internal static bool GetSupportedDOFType(DOFType freedom) } + diff --git a/MidasCivil_Adapter/PrivateHelpers/GetTags.cs b/MidasCivil_Adapter/PrivateHelpers/GetTags.cs index a0ab832d..7ac48cec 100644 --- a/MidasCivil_Adapter/PrivateHelpers/GetTags.cs +++ b/MidasCivil_Adapter/PrivateHelpers/GetTags.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ public Dictionary> GetTags(string section, int position) + diff --git a/MidasCivil_Adapter/PrivateHelpers/RemoveEndOfDataString.cs b/MidasCivil_Adapter/PrivateHelpers/RemoveEndOfDataString.cs index 3125111d..1ee0a809 100644 --- a/MidasCivil_Adapter/PrivateHelpers/RemoveEndOfDataString.cs +++ b/MidasCivil_Adapter/PrivateHelpers/RemoveEndOfDataString.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -54,3 +54,4 @@ private void RemoveEndOfDataString(string path) + diff --git a/MidasCivil_Adapter/PrivateHelpers/SetSectionText.cs b/MidasCivil_Adapter/PrivateHelpers/SetSectionText.cs index 1ae5083b..d6166fb4 100644 --- a/MidasCivil_Adapter/PrivateHelpers/SetSectionText.cs +++ b/MidasCivil_Adapter/PrivateHelpers/SetSectionText.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -124,3 +124,4 @@ private static string SectionName(string text) } + diff --git a/MidasCivil_Adapter/PrivateHelpers/SetUnits.cs b/MidasCivil_Adapter/PrivateHelpers/SetUnits.cs index 98addd69..4fa30a98 100644 --- a/MidasCivil_Adapter/PrivateHelpers/SetUnits.cs +++ b/MidasCivil_Adapter/PrivateHelpers/SetUnits.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -90,3 +90,4 @@ private bool SetUnits(string length = "M", string force = "N", string temperatur } + diff --git a/MidasCivil_Adapter/PrivateHelpers/SetVersion.cs b/MidasCivil_Adapter/PrivateHelpers/SetVersion.cs index e01fc7d0..13e690fd 100644 --- a/MidasCivil_Adapter/PrivateHelpers/SetVersion.cs +++ b/MidasCivil_Adapter/PrivateHelpers/SetVersion.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -47,3 +47,4 @@ private bool SetVersion(string version) } + diff --git a/MidasCivil_Adapter/PrivateHelpers/WriteSectionText.cs b/MidasCivil_Adapter/PrivateHelpers/WriteSectionText.cs index 88dc2c09..2af95e77 100644 --- a/MidasCivil_Adapter/PrivateHelpers/WriteSectionText.cs +++ b/MidasCivil_Adapter/PrivateHelpers/WriteSectionText.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -81,3 +81,4 @@ private void WriteSectionText(List sectionText, string section, string s + diff --git a/MidasCivil_Adapter/Properties/AssemblyInfo.cs b/MidasCivil_Adapter/Properties/AssemblyInfo.cs index 1cc7c3c3..437e7f03 100644 --- a/MidasCivil_Adapter/Properties/AssemblyInfo.cs +++ b/MidasCivil_Adapter/Properties/AssemblyInfo.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -55,7 +55,8 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("7.0.0.0")] -[assembly: AssemblyFileVersion("7.0.0.0")] +[assembly: AssemblyFileVersion("7.1.0.0")] + diff --git a/MidasCivil_Adapter/Type/NextFreeId.cs b/MidasCivil_Adapter/Type/NextFreeId.cs index efb383e9..2ceb095e 100644 --- a/MidasCivil_Adapter/Type/NextFreeId.cs +++ b/MidasCivil_Adapter/Type/NextFreeId.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -186,3 +186,4 @@ protected override object NextFreeId(Type type, bool refresh = false) + diff --git a/MidasCivil_Engine/Compute/CombineTextFiles.cs b/MidasCivil_Engine/Compute/CombineTextFiles.cs index 1a2e48a1..d1bd0d57 100644 --- a/MidasCivil_Engine/Compute/CombineTextFiles.cs +++ b/MidasCivil_Engine/Compute/CombineTextFiles.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -35,10 +35,10 @@ public static partial class Compute /**** Public Methods ****/ /***************************************************/ - [Description("Combines all text files specified by type in to a single MidasCivilText (MCT) to be loaded in to MidasCivil")] - [Input("filePath", "The same filepath used for the adapter (pointing to an mcb file)")] + [Description("Combines all text files specified by type in to a single MidasCivilText (MCT) to be loaded in to MidasCivil.")] + [Input("filePath", "The same filepath used for the adapter (pointing to an mcb file).")] [Input("types", "BHoM object types to specify the text files to be combined. A null value will combine all text files.")] - [Input("active", "Execute the method")] + [Input("active", "Execute the method.")] [Output("success", "Was the execution successful?")] public static bool CombineTextFiles(string filePath, List types = null, bool active = false) @@ -124,6 +124,7 @@ public static bool CombineTextFiles(string filePath, List types = null, bo } independents.Insert(0, "REBAR-MATL-CODE"); + independents.Insert(1, "STRUCTYPE"); independents.Add("LOAD-GROUP"); independents.Add("LOADCOMB"); @@ -307,3 +308,4 @@ private static string ToType(string type) } + diff --git a/MidasCivil_Engine/Compute/FEMeshToPanel.cs b/MidasCivil_Engine/Compute/FEMeshToPanel.cs index 0cbe8e9b..7de84cf8 100644 --- a/MidasCivil_Engine/Compute/FEMeshToPanel.cs +++ b/MidasCivil_Engine/Compute/FEMeshToPanel.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -26,6 +26,7 @@ using BH.oM.Geometry; using System.Collections.Generic; using System.Linq; +using BH.oM.Base.Attributes; namespace BH.Engine.Adapters.MidasCivil { @@ -35,6 +36,7 @@ public static partial class Compute /**** Public Methods ****/ /***************************************************/ + [ToBeRemoved("4.2","Method was replaced in 4.2 by BH.Engine.Structure.Convert.FEMeshToPanel.")] public static Panel FEMeshToPanel(FEMesh mesh) { List polylines = new List(); @@ -64,3 +66,4 @@ public static Panel FEMeshToPanel(FEMesh mesh) + diff --git a/MidasCivil_Engine/Convert/Date.cs b/MidasCivil_Engine/Convert/Date.cs index b268eef0..2d86b8cf 100644 --- a/MidasCivil_Engine/Convert/Date.cs +++ b/MidasCivil_Engine/Convert/Date.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -70,3 +70,4 @@ public static DateTime Date(this string date) + diff --git a/MidasCivil_Engine/Create/Metadata.cs b/MidasCivil_Engine/Create/Metadata.cs index 707896dd..673164a0 100644 --- a/MidasCivil_Engine/Create/Metadata.cs +++ b/MidasCivil_Engine/Create/Metadata.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -37,10 +37,18 @@ public static partial class Create /***************************************************/ [Description("Creates a Metadata object from a variety of inputs.")] + [Input("projectNumber", "Unique number for the project.")] + [Input("projectName", "The name of the project.")] [Input("location", "Where the project is based.")] - [Input("description", "A short description of the project and model.")] - [Input("discipline", "The discipline responsible for the model.")] + [Input("client", "Unique identifier for the client.")] + [Input("designStage", "The design stage for the project.")] + [Input("projectLead", "The project leader for the project.")] + [Input("revision", "The revision for the model.")] + [Input("author", "The model author/creator.")] [Input("creationDate", "The creation date of the model inputted as yyyy-MM-dd. This will default to the current date if no date is provided.")] + [Input("email", "Contact email for the project.")] + [Input("description", "Brief description for the project and the model.")] + [Input("discipline", "The discipline responsible for the model.")] [Input("reviews", "A list of reviews containing reviewers, their comments and the date of review.")] [Output("A summary of relevant information for the model.")] public static Metadata Metadata(string projectNumber = "", string projectName = "", string location = "", string client = "", @@ -80,3 +88,4 @@ public static Metadata Metadata(string projectNumber = "", string projectName = } + diff --git a/MidasCivil_Engine/Create/MidasCivilSettings.cs b/MidasCivil_Engine/Create/MidasCivilSettings.cs index 03a3de86..a3c18667 100644 --- a/MidasCivil_Engine/Create/MidasCivilSettings.cs +++ b/MidasCivil_Engine/Create/MidasCivilSettings.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -45,4 +45,4 @@ public static MidasCivilSettings MidasCivilSettings(string version = "") } /***************************************************/ } -} \ No newline at end of file +} diff --git a/MidasCivil_Engine/Create/Review.cs b/MidasCivil_Engine/Create/Review.cs index d4c346b7..3214a00a 100644 --- a/MidasCivil_Engine/Create/Review.cs +++ b/MidasCivil_Engine/Create/Review.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -62,3 +62,4 @@ public static Review Review(string reviewer = null, DateTime? reviewDate = null, } + diff --git a/MidasCivil_Engine/Objects/AdapterIdName.cs b/MidasCivil_Engine/Objects/AdapterIdName.cs index eebec894..176e9dff 100644 --- a/MidasCivil_Engine/Objects/AdapterIdName.cs +++ b/MidasCivil_Engine/Objects/AdapterIdName.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ public static partial class Convert + diff --git a/MidasCivil_Engine/Objects/ArrayComparer.cs b/MidasCivil_Engine/Objects/ArrayComparer.cs index f4dfe361..6f46384d 100644 --- a/MidasCivil_Engine/Objects/ArrayComparer.cs +++ b/MidasCivil_Engine/Objects/ArrayComparer.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -60,3 +60,4 @@ public int GetHashCode(double[] obj) + diff --git a/MidasCivil_Engine/Objects/MeshCentreComparer.cs b/MidasCivil_Engine/Objects/MeshCentreComparer.cs index bb7b9f87..7d6be476 100644 --- a/MidasCivil_Engine/Objects/MeshCentreComparer.cs +++ b/MidasCivil_Engine/Objects/MeshCentreComparer.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -88,3 +88,4 @@ public int GetHashCode(FEMesh mesh) + diff --git a/MidasCivil_Engine/Properties/AssemblyInfo.cs b/MidasCivil_Engine/Properties/AssemblyInfo.cs index 0a1ff5de..8919bcd5 100644 --- a/MidasCivil_Engine/Properties/AssemblyInfo.cs +++ b/MidasCivil_Engine/Properties/AssemblyInfo.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -55,7 +55,8 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("7.0.0.0")] -[assembly: AssemblyFileVersion("7.0.0.0")] +[assembly: AssemblyFileVersion("7.1.0.0")] + diff --git a/MidasCivil_oM/Fragments/MidasCivilId.cs b/MidasCivil_oM/Fragments/MidasCivilId.cs index 3856d7bb..3fbd2284 100644 --- a/MidasCivil_oM/Fragments/MidasCivilId.cs +++ b/MidasCivil_oM/Fragments/MidasCivilId.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -40,3 +40,4 @@ public class MidasCivilId : IAdapterId } + diff --git a/MidasCivil_oM/Properties/AssemblyInfo.cs b/MidasCivil_oM/Properties/AssemblyInfo.cs index 49720f2f..0406d37a 100644 --- a/MidasCivil_oM/Properties/AssemblyInfo.cs +++ b/MidasCivil_oM/Properties/AssemblyInfo.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -55,7 +55,8 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("7.0.0.0")] -[assembly: AssemblyFileVersion("7.0.0.0")] +[assembly: AssemblyFileVersion("7.1.0.0")] + diff --git a/MidasCivil_oM/Settings/Metadata.cs b/MidasCivil_oM/Settings/Metadata.cs index 086a94d3..aceaeb85 100644 --- a/MidasCivil_oM/Settings/Metadata.cs +++ b/MidasCivil_oM/Settings/Metadata.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -74,3 +74,4 @@ public class Metadata : BHoMObject + diff --git a/MidasCivil_oM/Settings/MidasCivilSettings.cs b/MidasCivil_oM/Settings/MidasCivilSettings.cs index 6ddbebfa..0e95e7e7 100644 --- a/MidasCivil_oM/Settings/MidasCivilSettings.cs +++ b/MidasCivil_oM/Settings/MidasCivilSettings.cs @@ -1,6 +1,6 @@ -/* +/* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -36,4 +36,4 @@ public class MidasCivilSettings : AdapterSettings /***************************************************/ } -} \ No newline at end of file +} diff --git a/MidasCivil_oM/Settings/Review.cs b/MidasCivil_oM/Settings/Review.cs index 48327a31..21ce9584 100644 --- a/MidasCivil_oM/Settings/Review.cs +++ b/MidasCivil_oM/Settings/Review.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -45,3 +45,4 @@ public class Review : BHoMObject } + diff --git a/MidasCivil_oM/eNum/ForceUnit.cs b/MidasCivil_oM/eNum/ForceUnit.cs index a2aabda2..3f4398ff 100644 --- a/MidasCivil_oM/eNum/ForceUnit.cs +++ b/MidasCivil_oM/eNum/ForceUnit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ public enum ForceUnit + diff --git a/MidasCivil_oM/eNum/HeatUnit.cs b/MidasCivil_oM/eNum/HeatUnit.cs index 621f7f65..8fdb08b8 100644 --- a/MidasCivil_oM/eNum/HeatUnit.cs +++ b/MidasCivil_oM/eNum/HeatUnit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ public enum HeatUnit + diff --git a/MidasCivil_oM/eNum/LengthUnit.cs b/MidasCivil_oM/eNum/LengthUnit.cs index 433b472b..9a1a0288 100644 --- a/MidasCivil_oM/eNum/LengthUnit.cs +++ b/MidasCivil_oM/eNum/LengthUnit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ public enum LengthUnit + diff --git a/MidasCivil_oM/eNum/TemperatureUnit.cs b/MidasCivil_oM/eNum/TemperatureUnit.cs index 110bdf5a..81e99957 100644 --- a/MidasCivil_oM/eNum/TemperatureUnit.cs +++ b/MidasCivil_oM/eNum/TemperatureUnit.cs @@ -1,6 +1,6 @@ /* * This file is part of the Buildings and Habitats object Model (BHoM) - * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. + * Copyright (c) 2015 - 2024, the respective contributors. All rights reserved. * * Each contributor holds copyright over their respective contributions. * The project versioning (Git) records all such contribution source information. @@ -38,3 +38,4 @@ public enum TemperatureUnit + diff --git a/README.md b/README.md index a01e7ae5..aa1cec60 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Grab the [latest installer](https://bhom.xyz/) and a selection of [sample script ## Getting Started for Developers 🤖 If you want to build the BHoM and the Toolkits from source, it's hopefully easy! 😄 -Do take a look at our specific wiki pages here: [Getting Started for Developers](https://bhom.xyz/documentation/Contributing/Getting-started-for-developers/) +Do take a look at our specific wiki pages here: [Getting Started for Developers](https://bhom.xyz/documentation/Guides-and-Tutorials/Coding-with-BHoM/) ## Want to Contribute? ##