Index: dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.SellmeijerVNKCalculator/Deltares.DamPiping.SellmeijerVNKCalculator.csproj =================================================================== diff -u --- dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.SellmeijerVNKCalculator/Deltares.DamPiping.SellmeijerVNKCalculator.csproj (revision 0) +++ dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.SellmeijerVNKCalculator/Deltares.DamPiping.SellmeijerVNKCalculator.csproj (revision 366) @@ -0,0 +1,63 @@ + + + + + Debug + AnyCPU + {9A4A09AC-0284-40A9-9141-0864BFE0207A} + Library + Properties + Deltares.DamPiping.SellmeijerVNKCalculator + Deltares.DamPiping.SellmeijerVNKCalculator + v4.5 + 512 + + + true + ..\bin\Debug\ + DEBUG;TRACE + full + x86 + prompt + MinimumRecommendedRules.ruleset + + + ..\bin\Release\ + TRACE + true + pdbonly + x86 + prompt + MinimumRecommendedRules.ruleset + + + + + + + + + + + + + + Properties\GlobalAssemblyInfo.cs + + + + + + + + + "$(ProjectDir)..\..\utils\svn_insert_version.cmd" "$(ProjectDir)Properties" + + + \ No newline at end of file Index: dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.SellmeijerVNKCalculator/PipingCalculatorSellmeijerVNK.cs =================================================================== diff -u --- dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.SellmeijerVNKCalculator/PipingCalculatorSellmeijerVNK.cs (revision 0) +++ dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.SellmeijerVNKCalculator/PipingCalculatorSellmeijerVNK.cs (revision 366) @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Deltares.DamPiping.SellmeijerVNKCalculator +{ + public class PipingCalculatorSellmeijerVNK + { + } +} Index: dam failuremechanisms/damPiping/trunk/src/Tests/Deltares.DamPiping.SellmeijerVNKCalculatorTests/Properties/AssemblyInfo.cs =================================================================== diff -u --- dam failuremechanisms/damPiping/trunk/src/Tests/Deltares.DamPiping.SellmeijerVNKCalculatorTests/Properties/AssemblyInfo.cs (revision 0) +++ dam failuremechanisms/damPiping/trunk/src/Tests/Deltares.DamPiping.SellmeijerVNKCalculatorTests/Properties/AssemblyInfo.cs (revision 366) @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Deltares.DamPiping.SellmeijerVNKCalculatorTests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Deltares.DamPiping.SellmeijerVNKCalculatorTests")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("2fe63b67-6c02-4f65-bd00-775a90a9f7e9")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] Index: dam failuremechanisms/damPiping/trunk/src/Tests/Deltares.DamPiping.SellmeijerVNKCalculatorTests/PipingCalculatorSellmeijerVNKTest.cs =================================================================== diff -u --- dam failuremechanisms/damPiping/trunk/src/Tests/Deltares.DamPiping.SellmeijerVNKCalculatorTests/PipingCalculatorSellmeijerVNKTest.cs (revision 0) +++ dam failuremechanisms/damPiping/trunk/src/Tests/Deltares.DamPiping.SellmeijerVNKCalculatorTests/PipingCalculatorSellmeijerVNKTest.cs (revision 366) @@ -0,0 +1,21 @@ +using Deltares.DamPiping.SellmeijerVNKCalculator; +using NUnit.Framework; + +namespace Deltares.DamPiping.SellmeijerVNKCalculatorTests +{ + [TestFixture] + public class PipingCalculatorSellmeijerVNKTest + { + [Test] + public void TestCalculationDefault() + { + var bc = new PipingCalculatorSellmeijerVNK + { +// HRiver = 1 + }; +// bc.Calculate(); +// Assert.AreEqual(0, bc.FoSp); +// Assert.AreEqual(double.NaN, bc.Hc); + } + } +} Index: dam failuremechanisms/damPiping/trunk/src/DamPiping.sln =================================================================== diff -u -r336 -r366 --- dam failuremechanisms/damPiping/trunk/src/DamPiping.sln (.../DamPiping.sln) (revision 336) +++ dam failuremechanisms/damPiping/trunk/src/DamPiping.sln (.../DamPiping.sln) (revision 366) @@ -34,6 +34,13 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.DamPiping.Sellmeijer4ForcesCalculatorTests", "Tests\Deltares.DamPiping.Sellmeijer4ForcesCalculatorTests\Deltares.DamPiping.Sellmeijer4ForcesCalculatorTests.csproj", "{7154C6BE-FD10-4BCD-A014-A46BA551971E}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.DamPiping.SellmeijerVNKCalculatorTests", "Tests\Deltares.DamPiping.SellmeijerVNKCalculatorTests\Deltares.DamPiping.SellmeijerVNKCalculatorTests.csproj", "{2FE63B67-6C02-4F65-BD00-775A90A9F7E9}" + ProjectSection(ProjectDependencies) = postProject + {9A4A09AC-0284-40A9-9141-0864BFE0207A} = {9A4A09AC-0284-40A9-9141-0864BFE0207A} + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.DamPiping.SellmeijerVNKCalculator", "Deltares.DamPiping.SellmeijerVNKCalculator\Deltares.DamPiping.SellmeijerVNKCalculator.csproj", "{9A4A09AC-0284-40A9-9141-0864BFE0207A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x86 = Debug|x86 @@ -80,6 +87,14 @@ {7154C6BE-FD10-4BCD-A014-A46BA551971E}.Debug|x86.Build.0 = Debug|x86 {7154C6BE-FD10-4BCD-A014-A46BA551971E}.Release|x86.ActiveCfg = Release|x86 {7154C6BE-FD10-4BCD-A014-A46BA551971E}.Release|x86.Build.0 = Release|x86 + {2FE63B67-6C02-4F65-BD00-775A90A9F7E9}.Debug|x86.ActiveCfg = Debug|x86 + {2FE63B67-6C02-4F65-BD00-775A90A9F7E9}.Debug|x86.Build.0 = Debug|x86 + {2FE63B67-6C02-4F65-BD00-775A90A9F7E9}.Release|x86.ActiveCfg = Release|x86 + {2FE63B67-6C02-4F65-BD00-775A90A9F7E9}.Release|x86.Build.0 = Release|x86 + {9A4A09AC-0284-40A9-9141-0864BFE0207A}.Debug|x86.ActiveCfg = Debug|x86 + {9A4A09AC-0284-40A9-9141-0864BFE0207A}.Debug|x86.Build.0 = Debug|x86 + {9A4A09AC-0284-40A9-9141-0864BFE0207A}.Release|x86.ActiveCfg = Release|x86 + {9A4A09AC-0284-40A9-9141-0864BFE0207A}.Release|x86.Build.0 = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -90,5 +105,6 @@ {D3CC9C90-ADF8-425C-8245-9CD0DF84D6A2} = {B8D0FE36-7979-498D-85B9-D8776EAE10BF} {F6D70668-2CAB-4D07-85B0-B4295D230A6A} = {B8D0FE36-7979-498D-85B9-D8776EAE10BF} {7154C6BE-FD10-4BCD-A014-A46BA551971E} = {B8D0FE36-7979-498D-85B9-D8776EAE10BF} + {2FE63B67-6C02-4F65-BD00-775A90A9F7E9} = {B8D0FE36-7979-498D-85B9-D8776EAE10BF} EndGlobalSection EndGlobal Index: dam failuremechanisms/damPiping/trunk/src/Tests/Deltares.DamPiping.SellmeijerVNKCalculatorTests/Deltares.DamPiping.SellmeijerVNKCalculatorTests.csproj =================================================================== diff -u --- dam failuremechanisms/damPiping/trunk/src/Tests/Deltares.DamPiping.SellmeijerVNKCalculatorTests/Deltares.DamPiping.SellmeijerVNKCalculatorTests.csproj (revision 0) +++ dam failuremechanisms/damPiping/trunk/src/Tests/Deltares.DamPiping.SellmeijerVNKCalculatorTests/Deltares.DamPiping.SellmeijerVNKCalculatorTests.csproj (revision 366) @@ -0,0 +1,64 @@ + + + + + Debug + AnyCPU + {2FE63B67-6C02-4F65-BD00-775A90A9F7E9} + Library + Properties + Deltares.DamPiping.SellmeijerVNKCalculatorTests + Deltares.DamPiping.SellmeijerVNKCalculatorTests + v4.5 + 512 + + + true + ..\..\bin\Debug\ + DEBUG;TRACE + full + x86 + prompt + MinimumRecommendedRules.ruleset + + + ..\..\bin\Release\ + TRACE + true + pdbonly + x86 + prompt + MinimumRecommendedRules.ruleset + + + + ..\..\..\lib\NUnit\nunit.framework.dll + + + + + + + + + + + + + + + + + {9A4A09AC-0284-40A9-9141-0864BFE0207A} + Deltares.DamPiping.SellmeijerVNKCalculator + + + + + \ No newline at end of file Index: dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.SellmeijerVNKCalculator/Properties/AssemblyInfo.cs.svn =================================================================== diff -u --- dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.SellmeijerVNKCalculator/Properties/AssemblyInfo.cs.svn (revision 0) +++ dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.SellmeijerVNKCalculator/Properties/AssemblyInfo.cs.svn (revision 366) @@ -0,0 +1,11 @@ +using System.Reflection; +using System.Runtime.InteropServices; +using System.Runtime.CompilerServices; + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("9a4a09ac-0284-40a9-9141-0864bfe0207a")] + +[assembly: AssemblyVersion("17.1.0.SVNREV")] +[assembly: AssemblyFileVersion("17.1.0.SVNREV")] +[assembly: InternalsVisibleTo("Deltares.DamPiping.SellmeijerVNKCalculatorTests")] +