Skip to content

Commit 566d401

Browse files
8.0 Deployment (#392)
2 parents c082458 + 504211b commit 566d401

File tree

10 files changed

+26
-36
lines changed

10 files changed

+26
-36
lines changed

MidasCivil_Adapter/Convert/ToBHoM/Elements/ToRigidLink.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ public static RigidLink ToRigidLink(string rigidLink, Dictionary<string, Node> n
5252
case "9.0.5":
5353
case "9.1.0":
5454
case "9.4.0":
55+
case "9.4.5":
56+
case "9.5.0":
5557
primaryId = delimitted[0].Trim();
5658
fixity = delimitted[1].Replace(" ", "");
5759
secondaryIds = delimitted[2].Split(' ').Where(m => !string.IsNullOrWhiteSpace(m)).ToList();

MidasCivil_Adapter/Convert/ToMidasCivil/Elements/FromRigidLink.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ public static string FromRigidLink(this RigidLink link, string version)
5656
case "9.0.5":
5757
case "9.1.0":
5858
case "9.4.0":
59+
case "9.4.5":
60+
case "9.5.0":
5961
midasLink = primaryId + "," + fixity + "," + secondaryId + "," + link.Name;
6062
break;
6163
default:

MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromAreaUniformlyDistributedLoad.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ public static string FromAreaUniformlyDistributedLoad(this AreaUniformlyDistribu
4646
{
4747
case "9.4.0":
4848
case "9.1.0":
49+
case "9.4.5":
50+
case "9.5.0":
4951
midasFEMeshLoad = assignedFEMesh + ", PRES, PLATE, FACE, " + FromLoadAxis(femeshLoad.Axis) + direction +
5052
", 0, 0, 0, " + FromLoadProjection(femeshLoad.Projected) + ", " +
5153
FromVectorDirection(femeshLoad.Pressure, direction).PressureFromSI(forceUnit, lengthUnit).ToString() +

MidasCivil_Adapter/Convert/ToMidasCivil/Loads/FromPointForce.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ public static string FromPointLoad(this PointLoad pointLoad, string assignedNode
3939
{
4040
case "9.4.0":
4141
case "9.1.0":
42+
case "9.4.5":
43+
case "9.5.0":
4244
midasPointLoad = assignedNode + "," + pointLoad.Force.X.ForceFromSI(forceUnit).ToString() +
4345
"," + pointLoad.Force.Y.ForceFromSI(forceUnit).ToString() +
4446
"," + pointLoad.Force.Z.ForceFromSI(forceUnit).ToString() +

MidasCivil_Adapter/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
// You can specify all the values or you can default the Build and Revision Numbers
5555
// by using the '*' as shown below:
5656
// [assembly: AssemblyVersion("1.0.*")]
57-
[assembly: AssemblyVersion("7.0.0.0")]
58-
[assembly: AssemblyFileVersion("7.3.0.0")]
57+
[assembly: AssemblyVersion("8.0.0.0")]
58+
[assembly: AssemblyFileVersion("8.0.0.0")]
5959

6060

6161

MidasCivil_Engine/MidasCivil_Engine.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="14.0" DefaultTarget="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
@@ -113,7 +113,6 @@
113113
<ItemGroup />
114114
<ItemGroup>
115115
<None Include="packages.config" />
116-
<None Include="Versioning_73.json" />
117116
</ItemGroup>
118117
<ItemGroup>
119118
<ProjectReference Include="..\MidasCivil_oM\MidasCivil_oM.csproj">
@@ -127,4 +126,4 @@
127126
xcopy "$(TargetDir)$(TargetFileName)" "C:\ProgramData\BHoM\Assemblies" /Y
128127
</PostBuildEvent>
129128
</PropertyGroup>
130-
</Project>
129+
</Project>

MidasCivil_Engine/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
// You can specify all the values or you can default the Build and Revision Numbers
5555
// by using the '*' as shown below:
5656
// [assembly: AssemblyVersion("1.0.*")]
57-
[assembly: AssemblyVersion("7.0.0.0")]
58-
[assembly: AssemblyFileVersion("7.3.0.0")]
57+
[assembly: AssemblyVersion("8.0.0.0")]
58+
[assembly: AssemblyFileVersion("8.0.0.0")]
5959

6060

6161

MidasCivil_Engine/Versioning_73.json

Lines changed: 0 additions & 26 deletions
This file was deleted.

MidasCivil_oM/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
// You can specify all the values or you can default the Build and Revision Numbers
5555
// by using the '*' as shown below:
5656
// [assembly: AssemblyVersion("1.0.*")]
57-
[assembly: AssemblyVersion("7.0.0.0")]
58-
[assembly: AssemblyFileVersion("7.3.0.0")]
57+
[assembly: AssemblyVersion("8.0.0.0")]
58+
[assembly: AssemblyFileVersion("8.0.0.0")]
5959

6060

6161

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,23 @@
44

55
This toolkit allows interoperability between the BHoM and MidasCivil. It enables creation, manipulation and reading of structural finite element analysis models and analysis results. Please see the [BHoM MidasCivil Object Relations](https://github.com/BHoM/MidasCivil_Toolkit/wiki/BHoM-MidasCivil-Object-Relations) for a comprehensive list of supported BHoM objects.
66

7-
https://en.midasuser.com/product/civil_overview.asp
87

98
### Known Versions of Software Supported
109

10+
MidasCivil 2018 (v1.1)
11+
1112
MidasCivil 2019 (v1.1, v2.2)
1213

1314
MidasCivil 2020 (v1.1, 1.2, 2.1, 3.1)
1415

16+
MidasCivil 2021 (v1.1, 1.2)
17+
18+
MidasCivil 2022 (v1.1, 1.2)
19+
20+
MidasCivil 2023 (v1.1)
21+
22+
MidasCivil 2024 (v1.1, v2.1)
23+
1524
### Documentation
1625
For more information about functionality see the [MidasCivil_Toolkit Wiki](https://github.com/BHoM/MidasCivil_Toolkit/wiki)
1726

0 commit comments

Comments
 (0)