From 286926872732562a5fe04e7ef2eb4365bd9d3b2b Mon Sep 17 00:00:00 2001 From: "M. Salehi" Date: Fri, 28 Feb 2020 14:00:44 +0330 Subject: [PATCH] OpenSeesNETCore --- .../Test Tcl Interp/TestTclInterp/Program.cs | 6 + SRC/domain/domain/Domain.cpp | 42 +- SRC/domain/domain/Domain.h | 12 + SRC/domain/node/NodalLoad.h | 5 + SRC/tcl/commands.cpp | 18 + Win64/OpenSees.sln | 55 +- Win64/bin/Debug/OpenSees.NET.x64.dll.metagen | 3878 ---------------- Win64/bin/OpenSees.NET.x64.dll.metagen | 3886 ----------------- Win64/bin/OpenSees.NET.x64.exp | Bin 887 -> 887 bytes Win64/bin/OpenSees.exp | Bin 785 -> 868 bytes Win64/bin/OpenSeesNETCore.deps.json | 23 + Win64/bin/OpenSeesNETCore.runtimeconfig.json | 9 + Win64/proj/OpenSeesNET/OpenSeesNET.vcxproj | 4 + .../OpenSeesNET/domains/domain/DomainEvent.h | 130 +- .../domains/domain/DomainWrapper.cpp | 28 +- .../domains/domain/DomainWrapper.h | 92 + .../OpenSeesNET/domains/loads/LoadWrapper.h | 14 + .../domains/patterns/LoadPatternWrapper.h | 6 +- .../OpenSeesNET/elements/ElementWrapper.h | 4 + .../OpenSeesNET/handlers/HandlerWrapper.h | 9 + .../materials/ndmaterial/NDMaterialWrapper.h | 7 +- .../section/SectionForceDeformationWrapper.h | 9 + .../uniaxial/UniaxialMaterialWrapper.h | 8 +- .../OpenSeesNET/recorders/RecorderWrapper.h | 9 + .../OpenSeesNET/x64/Debug/OpenSeesNET.log | 41 +- .../Debug/OpenSeesNET.tlog/CL.command.1.tlog | Bin 1853710 -> 1859902 bytes .../x64/Debug/OpenSeesNET.tlog/CL.read.1.tlog | Bin 2990406 -> 2977144 bytes .../Debug/OpenSeesNET.tlog/CL.write.1.tlog | Bin 157308 -> 203892 bytes .../OpenSeesNET.lastbuildstate | 2 +- ...OpenSeesNET.vcxprojAssemblyReference.cache | Bin 424 -> 1106 bytes Win64/proj/OpenSeesNETCore/AssemblyInfo.cpp | 23 + .../OpenSeesNETCore/OpenSeesNETCore.vcxproj | 486 +++ .../OpenSeesNETCore.vcxproj.filters | 862 ++++ Win64/proj/OpenSeesNETCore/Resource.h | 3 + Win64/proj/OpenSeesNETCore/app.ico | Bin 0 -> 41395 bytes Win64/proj/OpenSeesNETCore/app.rc | Bin 0 -> 2558 bytes Win64/proj/OpenSeesNETCore/pch.h | 12 + Win64/proj/OpenSeesNETCore/stdafx.cpp | 4 + Win64/proj/OpenSeesNETCore/stdafx.h | Bin 0 -> 82 bytes ...oreApp,Version=v3.1.AssemblyAttributes.asm | 4 + ...SeesNETCore.vcxprojAssemblyReference.cache | Bin 0 -> 424 bytes .../proj/OpenSeesNETCore/x64/Release/app.res | Bin 0 -> 41732 bytes 42 files changed, 1841 insertions(+), 7850 deletions(-) delete mode 100644 Win64/bin/Debug/OpenSees.NET.x64.dll.metagen delete mode 100644 Win64/bin/OpenSees.NET.x64.dll.metagen create mode 100644 Win64/bin/OpenSeesNETCore.deps.json create mode 100644 Win64/bin/OpenSeesNETCore.runtimeconfig.json create mode 100644 Win64/proj/OpenSeesNETCore/AssemblyInfo.cpp create mode 100644 Win64/proj/OpenSeesNETCore/OpenSeesNETCore.vcxproj create mode 100644 Win64/proj/OpenSeesNETCore/OpenSeesNETCore.vcxproj.filters create mode 100644 Win64/proj/OpenSeesNETCore/Resource.h create mode 100644 Win64/proj/OpenSeesNETCore/app.ico create mode 100644 Win64/proj/OpenSeesNETCore/app.rc create mode 100644 Win64/proj/OpenSeesNETCore/pch.h create mode 100644 Win64/proj/OpenSeesNETCore/stdafx.cpp create mode 100644 Win64/proj/OpenSeesNETCore/stdafx.h create mode 100644 Win64/proj/OpenSeesNETCore/x64/Release/.NETCoreApp,Version=v3.1.AssemblyAttributes.asm create mode 100644 Win64/proj/OpenSeesNETCore/x64/Release/OpenSeesNETCore.vcxprojAssemblyReference.cache create mode 100644 Win64/proj/OpenSeesNETCore/x64/Release/app.res diff --git a/EXAMPLES/OpenSees.NET Examples/Test Tcl Interp/TestTclInterp/Program.cs b/EXAMPLES/OpenSees.NET Examples/Test Tcl Interp/TestTclInterp/Program.cs index 649b2ef027..3be9fd9b52 100644 --- a/EXAMPLES/OpenSees.NET Examples/Test Tcl Interp/TestTclInterp/Program.cs +++ b/EXAMPLES/OpenSees.NET Examples/Test Tcl Interp/TestTclInterp/Program.cs @@ -65,6 +65,7 @@ static void Main(string[] args) tclInterp1.ClearAllUniaxialMaterialEventHandler += TclInterp1_ClearAllUniaxialMaterialEventHandler; domain.AddNodeEventHandler += Domain_AddNodeEventHandler1; domain.AddElementEventHandler += Domain_AddElementEventHandler; + domain.AddLoadPatternEventHandler += Domain_AddLoadPatternEventHandler; var ret = tclInterp1.Execute("source ../m2.txt"); var disp = domain.GetNode(1).GetCommitDisp(); var resp = domain.GetElement(1).GetDoubleResponse(40); @@ -109,6 +110,11 @@ static void Main(string[] args) #endregion } + private static void Domain_AddLoadPatternEventHandler(object sender, OpenSees.Components.DomainAddLoadPatternEventArgs e) + { + var nodalloads = e.LoadPattern.GetNodalLoads(); + } + private static void TclInterp1_ClearAllUniaxialMaterialEventHandler(object sender, OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllUniaxialMaterialArgs e) { Console.WriteLine("clear all mats"); diff --git a/SRC/domain/domain/Domain.cpp b/SRC/domain/domain/Domain.cpp index 87e924f6f9..73662fd842 100644 --- a/SRC/domain/domain/Domain.cpp +++ b/SRC/domain/domain/Domain.cpp @@ -882,8 +882,11 @@ Domain::addSP_Constraint(SP_Constraint* spConstraint, int pattern) } spConstraint->setDomain(this); +#if _DLL + if (this->_DomainEvent_AddSP_Constraint) + this->_DomainEvent_AddSP_Constraint(spConstraint, pattern); +#endif this->domainChange(); - return true; } @@ -917,7 +920,10 @@ Domain::addNodalLoad(NodalLoad* load, int pattern) load->setDomain(this); // done in LoadPattern::addNodalLoad() this->domainChange(); - +#if _DLL + if (this->_DomainEvent_AddNodalLoad) + this->_DomainEvent_AddNodalLoad(load, pattern); +#endif return result; } @@ -941,7 +947,10 @@ Domain::addElementalLoad(ElementalLoad* load, int pattern) return false; } - +#if _DLL + if (this->_DomainEvent_AddElementalLoad) + this->_DomainEvent_AddElementalLoad(load, pattern); +#endif // load->setDomain(this); // done in LoadPattern::addElementalLoad() this->domainChange(); return result; @@ -1340,16 +1349,17 @@ Domain::removeLoadPattern(int tag) // theSP_Constraint->setDomain(0); } +#if _DLL + if (this->_DomainEvent_RemoveLoadPattern) + this->_DomainEvent_RemoveLoadPattern(result); +#endif + // mark the domain has having changed if numSPs > 0 // as the constraint handlers have to be redone if (numSPs > 0) this->domainChange(); // finally return the load pattern -#if _DLL - if (this->_DomainEvent_RemoveLoadPattern) - this->_DomainEvent_RemoveLoadPattern(result); -#endif return result; } @@ -1367,8 +1377,13 @@ Domain::removeNodalLoad(int tag, int loadPattern) // if not there return 0 if (theLoadPattern == 0) return 0; + NodalLoad* removedItem = theLoadPattern->removeNodalLoad(tag); +#if _DLL + if (this->_DomainEvent_RemoveNodalLoad) + this->_DomainEvent_RemoveNodalLoad(removedItem); +#endif - return theLoadPattern->removeNodalLoad(tag); + return removedItem; } @@ -1382,7 +1397,12 @@ Domain::removeElementalLoad(int tag, int loadPattern) if (theLoadPattern == 0) return 0; - return theLoadPattern->removeElementalLoad(tag); + ElementalLoad* removedItem = theLoadPattern->removeElementalLoad(tag); +#if _DLL + if (this->_DomainEvent_RemoveElementalLoad) + this->_DomainEvent_RemoveElementalLoad(removedItem); +#endif + return removedItem; } @@ -1397,6 +1417,10 @@ Domain::removeSP_Constraint(int tag, int loadPattern) return 0; SP_Constraint* theSP = theLoadPattern->removeSP_Constraint(tag); +#if _DLL + if (this->_DomainEvent_RemoveSP_Constraint) + this->_DomainEvent_RemoveSP_Constraint(theSP); +#endif if (theSP != 0) this->domainChange(); diff --git a/SRC/domain/domain/Domain.h b/SRC/domain/domain/Domain.h index 5307901df0..0a7eda0987 100644 --- a/SRC/domain/domain/Domain.h +++ b/SRC/domain/domain/Domain.h @@ -88,6 +88,12 @@ typedef int(__stdcall* DomainEvent_AddLoadPattern) (LoadPattern* lp); typedef int(__stdcall* DomainEvent_RemoveLoadPattern) (LoadPattern* lp); typedef int(__stdcall* DomainEvent_AddRecorder) (Recorder* rec); typedef int(__stdcall* DomainEvent_RemoveRecorder) (Recorder* rec); +typedef int(__stdcall* DomainEvent_AddNodalLoad) (NodalLoad* nl,int pat); +typedef int(__stdcall* DomainEvent_RemoveNodalLoad) (NodalLoad* nl); +typedef int(__stdcall* DomainEvent_AddElementalLoad) (ElementalLoad* el,int pat); +typedef int(__stdcall* DomainEvent_RemoveElementalLoad) (ElementalLoad* el); +typedef int(__stdcall* DomainEvent_AddSP_Constraint) (SP_Constraint* sp, int pat); +typedef int(__stdcall* DomainEvent_RemoveSP_Constraint) (SP_Constraint* rec); typedef int(__stdcall* DomainEvent_ClearAll) (); class Domain @@ -262,6 +268,12 @@ class Domain DomainEvent_AddRecorder _DomainEvent_AddRecorder; DomainEvent_RemoveRecorder _DomainEvent_RemoveRecorder; DomainEvent_ClearAll _DomainEvent_ClearAll; + DomainEvent_AddNodalLoad _DomainEvent_AddNodalLoad; + DomainEvent_RemoveNodalLoad _DomainEvent_RemoveNodalLoad; + DomainEvent_AddElementalLoad _DomainEvent_AddElementalLoad; + DomainEvent_RemoveElementalLoad _DomainEvent_RemoveElementalLoad; + DomainEvent_AddSP_Constraint _DomainEvent_AddSP_Constraint; + DomainEvent_RemoveSP_Constraint _DomainEvent_RemoveSP_Constraint; Recorder** theRecorders; int numRecorders; #endif diff --git a/SRC/domain/node/NodalLoad.h b/SRC/domain/node/NodalLoad.h index a7ce50baef..f9dcf38dfc 100644 --- a/SRC/domain/node/NodalLoad.h +++ b/SRC/domain/node/NodalLoad.h @@ -67,6 +67,11 @@ class NodalLoad : public Load virtual void applyLoad(Vector& loadFactors); virtual const Vector &getData(int& type); //Change made by Liming for NodalThermalAction [SIF] +#if _DLL + virtual inline Vector* getLoadVector() { + return load; + }; +#endif protected: diff --git a/SRC/tcl/commands.cpp b/SRC/tcl/commands.cpp index 832fe5ee21..5510bcbcca 100644 --- a/SRC/tcl/commands.cpp +++ b/SRC/tcl/commands.cpp @@ -171,6 +171,7 @@ OPS_Stream *opserrPtr = &sserr; #include #include #include +#include #include #include //Abbas @@ -4320,6 +4321,23 @@ specifyIntegrator(ClientData clientData, Tcl_Interp *interp, int argc, if (theStaticAnalysis != 0) theStaticAnalysis->setIntegrator(*theStaticIntegrator); } + else if (strcmp(argv[1], "eqpath") == 0) { + double arcLength; + int method; + if (argc != 4) { + opserr << "WARNING integrator eqpath arcLength method \n"; + return TCL_ERROR; + } + if (Tcl_GetDouble(interp, argv[2], &arcLength) != TCL_OK) + return TCL_ERROR; + if (Tcl_GetInt(interp, argv[3], &method) != TCL_OK) + return TCL_ERROR; + theStaticIntegrator = new EQPath(arcLength, method); + + // if the analysis exists - we want to change the Integrator + if (theStaticAnalysis != 0) + theStaticAnalysis->setIntegrator(*theStaticIntegrator); + } /************************added for HSConstraint*************************************/ else if (strcmp(argv[1],"HSConstraint") == 0) { diff --git a/Win64/OpenSees.sln b/Win64/OpenSees.sln index 1264c6e6a5..04a99db955 100644 --- a/Win64/OpenSees.sln +++ b/Win64/OpenSees.sln @@ -89,6 +89,35 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OpenSeesNET", "proj\OpenSee EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestTclInterp", "..\EXAMPLES\OpenSees.NET Examples\Test Tcl Interp\TestTclInterp\TestTclInterp.csproj", "{DB461C73-9C14-4A8E-912B-AD69C1AA2863}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OpenSeesNETCore", "proj\OpenSeesNETCore\OpenSeesNETCore.vcxproj", "{486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}" + ProjectSection(ProjectDependencies) = postProject + {767A7605-A645-C010-DCDD-F981DD6E0A61} = {767A7605-A645-C010-DCDD-F981DD6E0A61} + {8062B50D-A609-33D0-8223-81D898DE05D5} = {8062B50D-A609-33D0-8223-81D898DE05D5} + {5BB0E918-CE81-7129-15F5-2A3470E92427} = {5BB0E918-CE81-7129-15F5-2A3470E92427} + {63511522-EBEF-1468-AD6B-0F365CA756A9} = {63511522-EBEF-1468-AD6B-0F365CA756A9} + {A2422B53-1A88-CBC2-AAA3-3A727C91E852} = {A2422B53-1A88-CBC2-AAA3-3A727C91E852} + {10BE1D68-585D-6B54-0C7F-0CF2962C52F1} = {10BE1D68-585D-6B54-0C7F-0CF2962C52F1} + {72CEB368-613B-3977-7BE6-0155A5F1DDBC} = {72CEB368-613B-3977-7BE6-0155A5F1DDBC} + {0384B869-E55C-43F9-919C-9DB5E9F1D2D4} = {0384B869-E55C-43F9-919C-9DB5E9F1D2D4} + {D4304671-12AD-A3AB-E4C8-90005C96311C} = {D4304671-12AD-A3AB-E4C8-90005C96311C} + {C7780C72-E360-AB77-79D6-F5CEB52C2F00} = {C7780C72-E360-AB77-79D6-F5CEB52C2F00} + {D1C15272-E650-4BE0-9DAF-B79F984D623D} = {D1C15272-E650-4BE0-9DAF-B79F984D623D} + {A6947A93-DFD1-060E-F426-AE10230F7861} = {A6947A93-DFD1-060E-F426-AE10230F7861} + {2B908396-B6B4-C511-D0E2-87620530AAA2} = {2B908396-B6B4-C511-D0E2-87620530AAA2} + {B3B28EAB-160F-635A-CD8A-4C4BAA55CF78} = {B3B28EAB-160F-635A-CD8A-4C4BAA55CF78} + {71832CB0-ED48-1CAF-ECB3-B9AD954D38E5} = {71832CB0-ED48-1CAF-ECB3-B9AD954D38E5} + {0775A4B2-93D2-4440-83B7-C1DF58021602} = {0775A4B2-93D2-4440-83B7-C1DF58021602} + {771CF0B5-A9ED-0CBA-DCC2-94EE2FF499E8} = {771CF0B5-A9ED-0CBA-DCC2-94EE2FF499E8} + {B4F48ABB-2789-4753-AA82-7E2C1954D31A} = {B4F48ABB-2789-4753-AA82-7E2C1954D31A} + {D9026BC0-B5BF-3BE9-E9CB-3491638F2C38} = {D9026BC0-B5BF-3BE9-E9CB-3491638F2C38} + {542B4EC8-400F-4BE5-A0A1-A53E8830606C} = {542B4EC8-400F-4BE5-A0A1-A53E8830606C} + {E68180C9-479C-A9C1-3832-CEF06B7F9D8C} = {E68180C9-479C-A9C1-3832-CEF06B7F9D8C} + {931A4DE5-3AF2-18C7-6370-37E5DEDA392A} = {931A4DE5-3AF2-18C7-6370-37E5DEDA392A} + {3285D0EF-7169-F5BE-C3AC-3752AAEBB765} = {3285D0EF-7169-F5BE-C3AC-3752AAEBB765} + {85F9E3F0-A6E0-6A77-9683-7150B4BE5A09} = {85F9E3F0-A6E0-6A77-9683-7150B4BE5A09} + {310DC5FA-1613-D953-4008-15056952E467} = {310DC5FA-1613-D953-4008-15056952E467} + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug.DLL|Any CPU = Debug.DLL|Any CPU @@ -558,8 +587,8 @@ Global {0384B869-E55C-43F9-919C-9DB5E9F1D2D4}.Release|x86.ActiveCfg = Release|Win32 {0384B869-E55C-43F9-919C-9DB5E9F1D2D4}.Release|x86.Build.0 = Release|Win32 {AEE65078-1C94-4379-8A03-E6E820239F51}.Debug.DLL|Any CPU.ActiveCfg = Debug.DLL|Win32 - {AEE65078-1C94-4379-8A03-E6E820239F51}.Debug.DLL|x64.ActiveCfg = Debug|x64 - {AEE65078-1C94-4379-8A03-E6E820239F51}.Debug.DLL|x64.Build.0 = Debug|x64 + {AEE65078-1C94-4379-8A03-E6E820239F51}.Debug.DLL|x64.ActiveCfg = Debug.DLL|x64 + {AEE65078-1C94-4379-8A03-E6E820239F51}.Debug.DLL|x64.Build.0 = Debug.DLL|x64 {AEE65078-1C94-4379-8A03-E6E820239F51}.Debug.DLL|x86.ActiveCfg = Debug|Win32 {AEE65078-1C94-4379-8A03-E6E820239F51}.Debug.DLL|x86.Build.0 = Debug|Win32 {AEE65078-1C94-4379-8A03-E6E820239F51}.Debug|Any CPU.ActiveCfg = Debug|Win32 @@ -601,6 +630,28 @@ Global {DB461C73-9C14-4A8E-912B-AD69C1AA2863}.Release|x64.Build.0 = Release|x64 {DB461C73-9C14-4A8E-912B-AD69C1AA2863}.Release|x86.ActiveCfg = Release|Any CPU {DB461C73-9C14-4A8E-912B-AD69C1AA2863}.Release|x86.Build.0 = Release|Any CPU + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Debug.DLL|Any CPU.ActiveCfg = Release|x64 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Debug.DLL|Any CPU.Build.0 = Release|x64 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Debug.DLL|x64.ActiveCfg = Debug.DLL|x64 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Debug.DLL|x64.Build.0 = Debug.DLL|x64 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Debug.DLL|x86.ActiveCfg = Debug|Win32 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Debug.DLL|x86.Build.0 = Debug|Win32 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Debug|Any CPU.ActiveCfg = Debug|Win32 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Debug|x64.ActiveCfg = Debug|x64 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Debug|x64.Build.0 = Debug|x64 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Debug|x86.ActiveCfg = Debug|Win32 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Debug|x86.Build.0 = Debug|Win32 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Release.DLL|Any CPU.ActiveCfg = Release|x64 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Release.DLL|Any CPU.Build.0 = Release|x64 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Release.DLL|x64.ActiveCfg = Release.DLL|x64 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Release.DLL|x64.Build.0 = Release.DLL|x64 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Release.DLL|x86.ActiveCfg = Release|Win32 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Release.DLL|x86.Build.0 = Release|Win32 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Release|Any CPU.ActiveCfg = Release|Win32 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Release|x64.ActiveCfg = Release|x64 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Release|x64.Build.0 = Release|x64 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Release|x86.ActiveCfg = Release|Win32 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA}.Release|x86.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Win64/bin/Debug/OpenSees.NET.x64.dll.metagen b/Win64/bin/Debug/OpenSees.NET.x64.dll.metagen deleted file mode 100644 index 96076eb312..0000000000 --- a/Win64/bin/Debug/OpenSees.NET.x64.dll.metagen +++ /dev/null @@ -1,3878 +0,0 @@ -ImageRuntimeVersion: v4.0.30319 -Assembly OpenSees.NET.x64, Version=1.0.*, Culture=Invariant Language (Invariant Country): - hash=SHA1, flags=PublicKey -Assembly mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089: - hash=None, flags=None -Assembly System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089: - hash=None, flags=None -Assembly System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089: - hash=None, flags=None -Assembly System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089: - hash=None, flags=None -Interface OpenSees.IMovableObjectWrapper: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, BeforeFieldInit -Class OpenSees.Algorithms.Accelerators.AcceleratorWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Algorithms.Accelerators.DifferenceAccelerator2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.KrylovAcceleratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.KrylovAccelerator2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.MillerAcceleratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.PeriodicAcceleratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.RaphsonAcceleratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.SecantAccelerator1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.SecantAccelerator2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.SecantAccelerator3Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.LineSearchs.LineSearchWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Algorithms.LineSearchs.BisectionLineSearchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.LineSearchs.LineSearchWrapper - Void .ctor(Double, Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.LineSearchs.InitialInterpolatedLineSearchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.LineSearchs.LineSearchWrapper - Void .ctor(Double, Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.LineSearchs.SecantLineSearchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.LineSearchs.LineSearchWrapper - Void .ctor(Double, Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.LineSearchs.RegulaFalsiLineSearchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.LineSearchs.LineSearchWrapper - Void .ctor(Double, Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.ConvergenceTestWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - GetNorms(): PrivateScope, Public, HideBySig - GetNumTests(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.ConvergenceTests.CTestEnergyIncrWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestFixedNumIterWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestNormDispIncrWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestNormUnbalanceWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestPFEMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestRelativeEnergyIncrWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestRelativeNormDispIncrWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestRelativeNormUnbalanceWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestRelativeTotalNormDispIncrWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.NormDispAndUnbalanceWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Double, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.NormDispOrUnbalanceWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Double, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.SolutionAlgorithmWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Algorithms.EquiSolnAlgoWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Algorithms.SolutionAlgorithmWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - SetConvergenceTest(ConvergenceTestWrapper): PrivateScope, Public, HideBySig - GetTotalTimeCPU(): PrivateScope, Public, HideBySig - GetTotalTimeReal(): PrivateScope, Public, HideBySig - GetSolveTimeCPU(): PrivateScope, Public, HideBySig - GetSolveTimeReal(): PrivateScope, Public, HideBySig - GetAccelTimeReal(): PrivateScope, Public, HideBySig - GetNumIterations(): PrivateScope, Public, HideBySig - GetNumFactorizations(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Algorithms.LinearWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.NewtonRaphsonWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.AcceleratedNewtonWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, OpenSees.Algorithms.Accelerators.AcceleratorWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.BFGSWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.BroydenWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.KrylovNewtonWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.ModifiedNewtonWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.NewtonHallMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(Double, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.NewtonLineSearchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, OpenSees.Algorithms.LineSearchs.LineSearchWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.PeriodicNewtonWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.BaseDomainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.TaggedObjectWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - GetTag(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask - PrintSelf(Int32): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.DomainComponentWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Elements.BaseElementWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.DomainComponentWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.IDWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Properties: - Int32 Item [Int32] 'get set' : - Methods: - ToArray(): PrivateScope, Public, HideBySig - Size(): PrivateScope, Public, HideBySig - Zero(): PrivateScope, Public, HideBySig - Get(Int32): PrivateScope, Public, HideBySig - Set(Int32, Int32): PrivateScope, Public, HideBySig - get_Item(Int32): PrivateScope, Public, HideBySig, SpecialName - set_Item(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName - SetData(Int32[], Int32, Int32): PrivateScope, Public, HideBySig - GetArray(IDWrapper): PrivateScope, Public, Static, HideBySig - Print(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.VectorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Properties: - Double Item [Int32] 'get set' : - Methods: - ToArray(): PrivateScope, Public, HideBySig - Size(): PrivateScope, Public, HideBySig - Get(Int32): PrivateScope, Public, HideBySig - Set(Int32, Double): PrivateScope, Public, HideBySig - get_Item(Int32): PrivateScope, Public, HideBySig, SpecialName - set_Item(Int32, Double): PrivateScope, Public, HideBySig, SpecialName - Zero(): PrivateScope, Public, HideBySig - Add(Double, VectorWrapper, Double): PrivateScope, Public, HideBySig - SetData(Double[], Double, Double): PrivateScope, Public, HideBySig - op_AdditionAssignment(VectorWrapper, VectorWrapper): PrivateScope, Public, Static, HideBySig, SpecialName - op_SubtractionAssignment(VectorWrapper, VectorWrapper): PrivateScope, Public, Static, HideBySig, SpecialName - op_Multiply(VectorWrapper, Double): PrivateScope, Public, Static, HideBySig, SpecialName - GetArray(VectorWrapper): PrivateScope, Public, Static, HideBySig - Print(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.MatrixWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double[,]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Properties: - Double Item [Int32, Int32] 'get set' : - Methods: - Zero(): PrivateScope, Public, HideBySig - noRows(): PrivateScope, Public, HideBySig - noCols(): PrivateScope, Public, HideBySig - Solve(MatrixWrapper): PrivateScope, Public, HideBySig - Solve(VectorWrapper): PrivateScope, Public, HideBySig - Invert(): PrivateScope, Public, HideBySig - Get(Int32, Int32): PrivateScope, Public, HideBySig - Set(Int32, Int32, Double): PrivateScope, Public, HideBySig - SetData(Double[,], Double, Double): PrivateScope, Public, HideBySig - get_Item(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName - set_Item(Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName - GetArray(MatrixWrapper): PrivateScope, Public, Static, HideBySig - Add(Double, MatrixWrapper, Double): PrivateScope, Public, HideBySig - Print(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Materials.MaterialWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.OPS: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Properties: - System.Object Null 'get ' : - Methods: - get_Null(): PrivateScope, Public, Static, HideBySig, SpecialName -Class OpenSees.Handlers.OPS_StreamWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - SetFile(String, Int32, Boolean(HasFieldMarshal)): PrivateScope, Public, HideBySig - SetPrecision(Int32): PrivateScope, Public, HideBySig - SetFloatField(Int32): PrivateScope, Public, HideBySig - Precision(Int32): PrivateScope, Public, HideBySig - Width(Int32): PrivateScope, Public, HideBySig - Tag(String, String): PrivateScope, Public, HideBySig - Tag(String): PrivateScope, Public, HideBySig - EndTag(): PrivateScope, Public, HideBySig - Attr(String, String): PrivateScope, Public, HideBySig - Attr(String, Double): PrivateScope, Public, HideBySig - Attr(String, Int32): PrivateScope, Public, HideBySig - Write(VectorWrapper): PrivateScope, Public, HideBySig - GetStreamHeader(): PrivateScope, Public, HideBySig - CloseStreamHeader(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Handlers.DataFileStreamWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.OPS_StreamWrapper - Void .ctor(System.String, Int32, Int32, Int32, Boolean, Int32, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(System.String): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.BinaryFileStreamWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.OPS_StreamWrapper - Void .ctor(System.String, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(System.String): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.XmlFileStreamWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.OPS_StreamWrapper - Void .ctor(System.String, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.TCP_StreamWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.OPS_StreamWrapper - Void .ctor(UInt32, System.String, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.RedirectStreamWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.OPS_StreamWrapper - Void .ctor(System.IO.TextWriter): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.ResponseWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Recorders.InformationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(OpenSees.IDWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Properties: - System.String String 'get ' : - OpenSees.MatrixWrapper Matrix 'get ' : - OpenSees.VectorWrapper Vector 'get ' : - OpenSees.IDWrapper Id 'get ' : - Double Double 'get ' : - Int32 Int 'get ' : - System.Enum Type 'get ' InfoTypeWrapper IsBoxed : - Methods: - SetInt(Int32): PrivateScope, Public, HideBySig - SetDouble(Double): PrivateScope, Public, HideBySig - SetID(IDWrapper): PrivateScope, Public, HideBySig - SetVector(VectorWrapper): PrivateScope, Public, HideBySig - SetMatrix(MatrixWrapper): PrivateScope, Public, HideBySig - SetString(String): PrivateScope, Public, HideBySig - Print(): PrivateScope, Public, HideBySig - get_Type(): PrivateScope, Public, HideBySig, SpecialName - get_Int(): PrivateScope, Public, HideBySig, SpecialName - get_Double(): PrivateScope, Public, HideBySig, SpecialName - get_Id(): PrivateScope, Public, HideBySig, SpecialName - get_Vector(): PrivateScope, Public, HideBySig, SpecialName - get_Matrix(): PrivateScope, Public, HideBySig, SpecialName - get_String(): PrivateScope, Public, HideBySig, SpecialName - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.MaterialWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetCopy(): PrivateScope, Public, HideBySig - GetTag(): PrivateScope, Public, Virtual, HideBySig - GetStrain(): PrivateScope, Public, HideBySig - GetStrainRate(): PrivateScope, Public, HideBySig - GetStress(): PrivateScope, Public, HideBySig - GetTangent(): PrivateScope, Public, HideBySig - GetInitialTangent(): PrivateScope, Public, HideBySig - GetDampTangent(): PrivateScope, Public, HideBySig - GetRho(): PrivateScope, Public, HideBySig - CommitState(): PrivateScope, Public, HideBySig - RevertToLastCommit(): PrivateScope, Public, HideBySig - RevertToStart(): PrivateScope, Public, HideBySig - GetType(): PrivateScope, Public, HideBySig - GetTypeTag(): PrivateScope, Public, HideBySig - SetResponse(String[], OPS_StreamWrapper): PrivateScope, Public, HideBySig - GetResponse(Int32, InformationWrapper): PrivateScope, Public, HideBySig -Class OpenSees.Components.NodeWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DomainComponentWrapper - Void .ctor(Int32, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetNumberDOF(): PrivateScope, Public, HideBySig - GetTag(): PrivateScope, Public, Virtual, HideBySig - GetCrdsVector(): PrivateScope, Public, HideBySig - GetCrds(): PrivateScope, Public, HideBySig - GetCommitDispVector(): PrivateScope, Public, HideBySig - GetCommitDisp(): PrivateScope, Public, HideBySig - GetCommitVelVector(): PrivateScope, Public, HideBySig - GetCommitVel(): PrivateScope, Public, HideBySig - GetCommitAccelVector(): PrivateScope, Public, HideBySig - GetCommitAccel(): PrivateScope, Public, HideBySig - GetTrialDispVector(): PrivateScope, Public, HideBySig - GetTrialDisp(): PrivateScope, Public, HideBySig - GetTrialVelVector(): PrivateScope, Public, HideBySig - GetTrialVel(): PrivateScope, Public, HideBySig - GetTrialAccelVector(): PrivateScope, Public, HideBySig - GetTrialAccel(): PrivateScope, Public, HideBySig - GetIncrDispVector(): PrivateScope, Public, HideBySig - GetIncrDisp(): PrivateScope, Public, HideBySig - GetIncrDeltaDispVector(): PrivateScope, Public, HideBySig - GetIncrDeltaDisp(): PrivateScope, Public, HideBySig - GetRVVector(VectorWrapper): PrivateScope, Public, HideBySig - GetRV(VectorWrapper): PrivateScope, Public, HideBySig - GetIDWrapper(): PrivateScope, Public, HideBySig - GetIds(): PrivateScope, Public, HideBySig - GetReactionsVector(): PrivateScope, Public, HideBySig - GetReactions(): PrivateScope, Public, HideBySig - GetEigenvectorsMatrix(): PrivateScope, Public, HideBySig - GetEigenvectors(): PrivateScope, Public, HideBySig - CommitState(): PrivateScope, Public, HideBySig - RevertToLastCommit(): PrivateScope, Public, HideBySig - RevertToStart(): PrivateScope, Public, HideBySig - GetDisp(): PrivateScope, Public, HideBySig (Obsolete) - GetVel(): PrivateScope, Public, HideBySig (Obsolete) - GetAcc(): PrivateScope, Public, HideBySig (Obsolete) -Class OpenSees.Elements.ElementWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BaseElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetNodeTagsIDWrapper(): PrivateScope, Public, HideBySig - GetNodeTags(): PrivateScope, Public, HideBySig - GetTangentStiffMatrixWrapper(): PrivateScope, Public, HideBySig - GetTangentStiff(): PrivateScope, Public, HideBySig - GetMassMatrixWrapper(): PrivateScope, Public, HideBySig - GetMass(): PrivateScope, Public, HideBySig - GetDampMatrixWrapper(): PrivateScope, Public, HideBySig - GetDamp(): PrivateScope, Public, HideBySig - GetResistingForceVectorWrapper(): PrivateScope, Public, HideBySig - GetResistingForce(): PrivateScope, Public, HideBySig - GetResistingForceIncInertiaVectorWrapper(): PrivateScope, Public, HideBySig - GetResistingForceIncInertia(): PrivateScope, Public, HideBySig - GetRayleighDampingForcesVectorWrapper(): PrivateScope, Public, HideBySig - GetRayleighDampingForces(): PrivateScope, Public, HideBySig - GetTag(): PrivateScope, Public, Virtual, HideBySig - GetNumExternalNodes(): PrivateScope, Public, HideBySig - GetNumDOF(): PrivateScope, Public, HideBySig - GetNodes(): PrivateScope, Public, HideBySig - GetClassType(): PrivateScope, Public, HideBySig - GetResponse(Int32, InformationWrapper): PrivateScope, Public, HideBySig - GetStringResponse(Int32): PrivateScope, Public, HideBySig - GetDoubleResponse(Int32): PrivateScope, Public, HideBySig - GetVectorResponse(Int32, VectorWrapper&): PrivateScope, Public, HideBySig - GetMatrixResponse(Int32, MatrixWrapper&): PrivateScope, Public, HideBySig - GetIDResponse(Int32, IDWrapper&): PrivateScope, Public, HideBySig - GetIntResponse(Int32): PrivateScope, Public, HideBySig -Class OpenSees.Components.Timeseries.TimeSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - Methods: - GetFactor(Double): PrivateScope, Public, HideBySig -Class OpenSees.Components.Timeseries.PathTimeSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.PathSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(OpenSees.VectorWrapper, Double, Double, Boolean, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.LinearSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.ConstantSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.PathTimeSeriesThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(System.String, Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.PeerMotionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(System.String, System.String, System.String, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.PulseSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.RectangularSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.TriangleSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.TrigSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.TimeSeriesIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.Timeseries.TrapezoidalTimeSeriesIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.SimpsonTimeSeriesIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.DamageModels.DamageModelWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.DamageModels.HystereticEnergyWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DamageModels.DamageModelWrapper - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.DamageModels.KratzigWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DamageModels.DamageModelWrapper - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.DamageModels.MehannyWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DamageModels.DamageModelWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.DamageModels.NormalizedPeakWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DamageModels.DamageModelWrapper - Void .ctor(Int32, Double, Double, System.Enum): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.DamageModels.ParkAngWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DamageModels.DamageModelWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.RecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - Methods: - GetStreamHeader(): PrivateScope, Public, HideBySig - CloseOutputStreamHandler(): PrivateScope, Public, HideBySig - GetFilename(): PrivateScope, Public, HideBySig -Class OpenSees.Recorders.DamageRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(Int32, OpenSees.IDWrapper, Int32, OpenSees.DamageModels.DamageModelWrapper, OpenSees.Components.BaseDomainWrapper, Boolean, Double, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.NodeRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, OpenSees.IDWrapper, Int32, System.String, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.DriftRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, OpenSees.IDWrapper, Int32, Int32, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper, OpenSees.IDWrapper, Int32, Int32, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.ElementRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, System.String[], Boolean, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper, System.String[], Boolean, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Double, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.EnvelopeDriftRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, OpenSees.IDWrapper, Int32, Int32, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.EnvelopeElementRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, System.String[], OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper, System.String[], OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Double, Boolean, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.EnvelopeNodeRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, OpenSees.IDWrapper, System.String, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper, OpenSees.IDWrapper, System.String, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Double, Boolean, OpenSees.Components.Timeseries.TimeSeriesWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.MaxNodeDispRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(Int32, OpenSees.IDWrapper, OpenSees.Components.BaseDomainWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.NormElementRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, System.String[], Boolean, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper, System.String[], Boolean, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Double, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.NormEnvelopeElementRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, System.String[], OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper, System.String[], OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Double, Boolean, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.PatternRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(Int32, OpenSees.Components.BaseDomainWrapper, System.String, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Constraints.SP_ConstraintWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DomainComponentWrapper - Void .ctor(Int32, Int32, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetNodeTag(): PrivateScope, Public, HideBySig - GetDOF_Number(): PrivateScope, Public, HideBySig - GetValue(): PrivateScope, Public, HideBySig -Class OpenSees.Components.Constraints.ImposedMotionSPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Constraints.SP_ConstraintWrapper - Void .ctor(Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Constraints.ImposedMotionSP1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Constraints.SP_ConstraintWrapper - Void .ctor(Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Constraints.MP_ConstraintWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DomainComponentWrapper - Void .ctor(Int32, Int32, OpenSees.MatrixWrapper, OpenSees.IDWrapper, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.IDWrapper, OpenSees.IDWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.LoadWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.DomainComponentWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.NodalLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.LoadWrapper - Void .ctor(Int32, Int32, OpenSees.VectorWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetNodeTag(): PrivateScope, Public, HideBySig -Class OpenSees.Components.Loads.ElementalLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.LoadWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam2dPartialUniformLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam2dPointLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam2dTempLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam2dThermalActionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, OpenSees.Components.Timeseries.TimeSeriesWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam2dUniformLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam3dPointLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam3dThermalActionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, OpenSees.Components.Timeseries.TimeSeriesWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam3dUniformLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.BrickSelfWeightWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.ShellThermalActionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, OpenSees.Components.Timeseries.TimeSeriesWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.NodalThermalActionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.NodalLoadWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, OpenSees.Components.Timeseries.TimeSeriesWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.VectorWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.SelfWeightWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.SurfaceLoaderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.ThermalActionWrapperWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.GroundMotions.GroundMotionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(OpenSees.Components.Timeseries.TimeSeriesWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper, OpenSees.Components.Timeseries.TimeSeriesIntegratorWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - GetDuration(): PrivateScope, Public, HideBySig - GetPeakAccel(): PrivateScope, Public, HideBySig - GetPeakVel(): PrivateScope, Public, HideBySig - GetPeakDisp(): PrivateScope, Public, HideBySig - GetAccel(Double): PrivateScope, Public, HideBySig - GetVel(Double): PrivateScope, Public, HideBySig - GetDisp(Double): PrivateScope, Public, HideBySig - SetIntegrator(TimeSeriesIntegratorWrapper): PrivateScope, Public, HideBySig - Integrate(TimeSeriesWrapper, Double): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.GroundMotions.GroundMotionRecordWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.GroundMotions.GroundMotionWrapper - Void .ctor(System.String, System.String, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(System.String, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.GroundMotions.InterpolatedGroundMotionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.GroundMotions.GroundMotionWrapper - Void .ctor(OpenSees.Components.GroundMotions.GroundMotionWrapper[], OpenSees.VectorWrapper, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.LoadPatterns.LoadPatternWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DomainComponentWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - SetTimeSeries(TimeSeriesWrapper): PrivateScope, Public, HideBySig - AddMotion(GroundMotionWrapper, Int32): PrivateScope, Public, HideBySig - RemoveNodalLoad(Int32): PrivateScope, Public, HideBySig - GetNodalLoads(): PrivateScope, Public, HideBySig - RemoveElementalLoad(Int32): PrivateScope, Public, HideBySig - GetElementalLoads(): PrivateScope, Public, HideBySig - ClearAll(): PrivateScope, Public, HideBySig -Class OpenSees.Components.LoadPatterns.EarthquakePatternWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Components.LoadPatterns.LoadPatternWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.LoadPatterns.UniformExcitationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.LoadPatterns.EarthquakePatternWrapper - Void .ctor(Int32, OpenSees.Components.GroundMotions.GroundMotionWrapper, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.LoadPatterns.FireLoadPatternWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.LoadPatterns.LoadPatternWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - SetFireTimeSeries(TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper): PrivateScope, Public, HideBySig -Class OpenSees.Components.LoadPatterns.MultiSupportPatternWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.LoadPatterns.LoadPatternWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.DomainClearAllArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainAddNodeEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.NodeWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.NodeWrapper Node : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainRemoveNodeEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.NodeWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.NodeWrapper Node : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainAddElementEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Elements.ElementWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Elements.ElementWrapper Element : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainRemoveElementEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Elements.ElementWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Elements.ElementWrapper Element : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainAddSPEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.Constraints.SP_ConstraintWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.Constraints.SP_ConstraintWrapper sp : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainRemoveSPEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.Constraints.SP_ConstraintWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.Constraints.SP_ConstraintWrapper sp : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainAddMPEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.Constraints.MP_ConstraintWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.Constraints.MP_ConstraintWrapper mp : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainRemoveMPEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.Constraints.MP_ConstraintWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.Constraints.MP_ConstraintWrapper mp : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainAddLoadPatternEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.LoadPatterns.LoadPatternWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.LoadPatterns.LoadPatternWrapper mp : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainRemoveLoadPatternEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.LoadPatterns.LoadPatternWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.LoadPatterns.LoadPatternWrapper mp : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainAddRecorderEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Recorders.RecorderWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Recorders.RecorderWrapper rec : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainRemoveRecorderEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Recorders.RecorderWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Recorders.RecorderWrapper rec : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.BaseDomainWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Events: - System.EventHandler`1[OpenSees.Components.DomainClearAllArgs] ClearAllHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainRemoveRecorderEventArgs] RemoveRecorderEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainAddRecorderEventArgs] AddRecorderEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainRemoveLoadPatternEventArgs] RemoveLoadPatternEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainAddLoadPatternEventArgs] AddLoadPatternEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainRemoveMPEventArgs] RemoveMPEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainAddMPEventArgs] AddMPEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainRemoveSPEventArgs] RemoveSPEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainAddSPEventArgs] AddSPEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainRemoveElementEventArgs] RemoveElementEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainAddElementEventArgs] AddElementEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainRemoveNodeEventArgs] RemoveNodeEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainAddNodeEventArgs] AddNodeEventHandler: SpecialName - Methods: - add_ClearAllHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_ClearAllHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - AddNode(NodeWrapper): PrivateScope, Public, HideBySig - AddNode(NodeWrapper[]): PrivateScope, Public, HideBySig - AddElement(ElementWrapper): PrivateScope, Public, HideBySig - AddElement(ElementWrapper[]): PrivateScope, Public, HideBySig - AddSP_Constraint(SP_ConstraintWrapper): PrivateScope, Public, HideBySig - AddSP_Constraint(SP_ConstraintWrapper[]): PrivateScope, Public, HideBySig - AddMP_Constraint(MP_ConstraintWrapper): PrivateScope, Public, HideBySig - AddMP_Constraint(MP_ConstraintWrapper[]): PrivateScope, Public, HideBySig - AddLoadPattern(LoadPatternWrapper): PrivateScope, Public, HideBySig - AddNodalLoad(NodalLoadWrapper[], Int32): PrivateScope, Public, HideBySig - AddNodalLoad(NodalLoadWrapper, Int32): PrivateScope, Public, HideBySig - AddElementLoad(ElementalLoadWrapper, Int32): PrivateScope, Public, HideBySig - AddRecorder(RecorderWrapper): PrivateScope, Public, HideBySig - RemoveRecorders(): PrivateScope, Public, HideBySig - GetPhysicalBounds(): PrivateScope, Public, HideBySig - ClearAll(): PrivateScope, Public, HideBySig - RemoveElement(Int32): PrivateScope, Public, HideBySig - RemoveNode(Int32): PrivateScope, Public, HideBySig - RemoveLoadPattern(Int32): PrivateScope, Public, HideBySig - GetNode(Int32): PrivateScope, Public, HideBySig - GetElement(Int32): PrivateScope, Public, HideBySig - GetLoadPattern(Int32): PrivateScope, Public, HideBySig - GetNumNodes(): PrivateScope, Public, HideBySig - GetNodes(): PrivateScope, Public, HideBySig - GetRecorders(): PrivateScope, Public, HideBySig - GetNumElements(): PrivateScope, Public, HideBySig - GetElements(): PrivateScope, Public, HideBySig - GetNumLoadPatterns(): PrivateScope, Public, HideBySig - GetLoadPatterns(): PrivateScope, Public, HideBySig - RevertToStart(): PrivateScope, Public, HideBySig - RevertToLastCommit(): PrivateScope, Public, HideBySig - GetSPs(): PrivateScope, Public, HideBySig - GetMPs(): PrivateScope, Public, HideBySig - CreateRigidDiaphragm(Int32, IDWrapper, Int32): PrivateScope, Public, HideBySig - CreateRigidBeam(Int32, Int32): PrivateScope, Public, HideBySig - CreateRigidRod(Int32, Int32): PrivateScope, Public, HideBySig - Print(Int32): PrivateScope, Public, HideBySig - CalculateNodalReactions(Int32): PrivateScope, Public, HideBySig - SetLoadConst(): PrivateScope, Public, HideBySig - SetCurrentTime(Double): PrivateScope, Public, HideBySig - SetCommittedTime(Double): PrivateScope, Public, HideBySig - SetMass(Int32[], MatrixWrapper): PrivateScope, Public, HideBySig - SetMass(Int32, MatrixWrapper): PrivateScope, Public, HideBySig - SetRayleighDampingFactors(Double, Double, Double, Double): PrivateScope, Public, HideBySig - GetTime(): PrivateScope, Public, HideBySig - GetEigenValues(): PrivateScope, Public, HideBySig - add_AddNodeEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddNodeEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveNodeEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveNodeEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddElementEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddElementEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveElementEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveElementEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddSPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddSPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveSPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveSPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddMPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddMPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveMPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveMPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddLoadPatternEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddLoadPatternEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveLoadPatternEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveLoadPatternEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddRecorderEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddRecorderEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveRecorderEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveRecorderEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName -Class OpenSees.Handlers.ConstraintHandlerWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Handlers.PlainHandlerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.ConstraintHandlerWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.TransformationConstraintHandlerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.ConstraintHandlerWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.LagrangeConstraintHandlerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.ConstraintHandlerWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.PenaltyConstraintHandlerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.ConstraintHandlerWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.GraphNumberers.GraphNumbererWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.GraphNumberers.RCMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.GraphNumberers.GraphNumbererWrapper - Void .ctor(Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Numberers.DOF_NumbererWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(OpenSees.GraphNumberers.GraphNumbererWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Numberers.PlainNumbererWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Numberers.DOF_NumbererWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.AnalysisModelWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - GetNumEqn(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Systems.Linears.SystemOfEqnWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Systems.Linears.LinearSOEWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.SystemOfEqnWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Eigens.EigenSOEWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.IntegratorWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.IncrementalIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.IntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.StaticIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.IncrementalIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.LoadControlWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Double, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.DisplacementControlWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Int32, Int32, Double, OpenSees.Components.DomainWrapper, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.ArcLengthWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.ArcLength1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.HSConstraintWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.LoadPathWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.MinUnbalDispNormWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Double, Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.QuadraticMethodWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.TransientIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.IncrementalIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.NewmarkWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Boolean, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.AlphaOSWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.AlphaOS_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.AlphaOSGeneralizedWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.AlphaOSGeneralized_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.BackwardEulerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CentralDifferenceWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CentralDifferenceAlternativeWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CentralDifferenceNoDampingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CollocationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CollocationHSFixedNumIterWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CollocationHSIncrLimitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CollocationHSIncrReductWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.GeneralizedAlphaWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHT_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTExplicitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTExplicit_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTGeneralizedWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTGeneralized_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTGeneralizedExplicitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTGeneralizedExplicit_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTHSFixedNumIterWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Int32, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Int32, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTHSFixedNumIter_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Int32, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Int32, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTHSIncrLimitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTHSIncrLimit_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTHSIncrReductWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HouboltWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.KRAlphaExplicitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.KRAlphaExplicit_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.Newmark1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.NewmarkExplicitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.NewmarkHSFixedNumIterWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Int32, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.NewmarkHSIncrLimitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.NewmarkHSIncrReductWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.ParkLMS3Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.PFEMIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.TRBDF2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.TRBDF3Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.WilsonThetaWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Analysis.AnalysisWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Analysis.StaticAnalysisWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Analysis.AnalysisWrapper - Void .ctor(OpenSees.Components.DomainWrapper, OpenSees.Handlers.ConstraintHandlerWrapper, OpenSees.Numberers.DOF_NumbererWrapper, OpenSees.AnalysisModelWrapper, OpenSees.Algorithms.EquiSolnAlgoWrapper, OpenSees.Systems.Linears.LinearSOEWrapper, OpenSees.Integrators.Static.StaticIntegratorWrapper, OpenSees.ConvergenceTests.ConvergenceTestWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - Analyze(Int32): PrivateScope, Public, HideBySig - SetEigenSOE(EigenSOEWrapper): PrivateScope, Public, HideBySig - SetIntegrator(StaticIntegratorWrapper): PrivateScope, Public, HideBySig - SetAlgorithm(EquiSolnAlgoWrapper): PrivateScope, Public, HideBySig - SetConvergenceTest(ConvergenceTestWrapper): PrivateScope, Public, HideBySig - SetLinearSOE(LinearSOEWrapper): PrivateScope, Public, HideBySig - SeNumberer(DOF_NumbererWrapper): PrivateScope, Public, HideBySig - Eigen(Int32, Boolean(HasFieldMarshal), Boolean(HasFieldMarshal)): PrivateScope, Public, HideBySig - Wipe(): PrivateScope, Public, HideBySig (Obsolete) - ClearAll(): PrivateScope, Public, HideBySig -Class OpenSees.Analysis.TransientAnalysisWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Analysis.AnalysisWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - Analyze(Int32, Double): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask -Class OpenSees.Analysis.DirectIntegrationAnalysisWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Analysis.TransientAnalysisWrapper - Void .ctor(OpenSees.Components.DomainWrapper, OpenSees.Handlers.ConstraintHandlerWrapper, OpenSees.Numberers.DOF_NumbererWrapper, OpenSees.AnalysisModelWrapper, OpenSees.Algorithms.EquiSolnAlgoWrapper, OpenSees.Systems.Linears.LinearSOEWrapper, OpenSees.Integrators.Transient.TransientIntegratorWrapper, OpenSees.ConvergenceTests.ConvergenceTestWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - SetEigenSOE(EigenSOEWrapper): PrivateScope, Public, HideBySig - Analyze(Int32, Double): PrivateScope, Public, Virtual, HideBySig - Eigen(Int32, Boolean(HasFieldMarshal), Boolean(HasFieldMarshal)): PrivateScope, Public, HideBySig - SetIntegrator(TransientIntegratorWrapper): PrivateScope, Public, HideBySig - SetAlgorithm(EquiSolnAlgoWrapper): PrivateScope, Public, HideBySig - SetConvergenceTest(ConvergenceTestWrapper): PrivateScope, Public, HideBySig - SetLinearSOE(LinearSOEWrapper): PrivateScope, Public, HideBySig - SeNumberer(DOF_NumbererWrapper): PrivateScope, Public, HideBySig - Wipe(): PrivateScope, Public, HideBySig (Obsolete) - ClearAll(): PrivateScope, Public, HideBySig -Class OpenSees.Analysis.PFEMAnalysisAnalysisWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Analysis.TransientAnalysisWrapper - Void .ctor(OpenSees.Components.DomainWrapper, OpenSees.Handlers.ConstraintHandlerWrapper, OpenSees.Numberers.DOF_NumbererWrapper, OpenSees.AnalysisModelWrapper, OpenSees.Algorithms.EquiSolnAlgoWrapper, OpenSees.Systems.Linears.LinearSOEWrapper, OpenSees.Integrators.Transient.TransientIntegratorWrapper, OpenSees.ConvergenceTests.ConvergenceTestWrapper, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - Analyze(): PrivateScope, Public, Virtual, HideBySig - Wipe(): PrivateScope, Public, HideBySig -Class OpenSees.Analysis.VariableTimeStepDirectIntegrationAnalysisWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Analysis.TransientAnalysisWrapper - Void .ctor(OpenSees.Components.DomainWrapper, OpenSees.Handlers.ConstraintHandlerWrapper, OpenSees.Numberers.DOF_NumbererWrapper, OpenSees.AnalysisModelWrapper, OpenSees.Algorithms.EquiSolnAlgoWrapper, OpenSees.Systems.Linears.LinearSOEWrapper, OpenSees.Integrators.Transient.TransientIntegratorWrapper, OpenSees.ConvergenceTests.ConvergenceTestWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - Analyze(Int32, Double, Double, Double, Int32): PrivateScope, Public, Virtual, HideBySig - Wipe(): PrivateScope, Public, HideBySig -Struct OpenSees.Handlers.OpenModeWrapper: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Handlers.OpenModeWrapper OVERWRITE = 0 : Public, Static, Literal, HasDefault - OpenSees.Handlers.OpenModeWrapper APPEND = 1 : Public, Static, Literal, HasDefault -Struct OpenSees.Handlers.FloatFieldWrapper: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Handlers.FloatFieldWrapper FIXEDD = 0 : Public, Static, Literal, HasDefault - OpenSees.Handlers.FloatFieldWrapper SCIENTIFIC = 1 : Public, Static, Literal, HasDefault -Struct OpenSees.Recorders.InfoTypeWrapper: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Recorders.InfoTypeWrapper UnknownType = 0 : Public, Static, Literal, HasDefault - OpenSees.Recorders.InfoTypeWrapper IntType = 1 : Public, Static, Literal, HasDefault - OpenSees.Recorders.InfoTypeWrapper DoubleType = 2 : Public, Static, Literal, HasDefault - OpenSees.Recorders.InfoTypeWrapper IdType = 3 : Public, Static, Literal, HasDefault - OpenSees.Recorders.InfoTypeWrapper VectorType = 4 : Public, Static, Literal, HasDefault - OpenSees.Recorders.InfoTypeWrapper MatrixType = 5 : Public, Static, Literal, HasDefault -Struct OpenSees.DamageModels.DamageTypeWrapper: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.DamageModels.DamageTypeWrapper Force = 0 : Public, Static, Literal, HasDefault - OpenSees.DamageModels.DamageTypeWrapper Deformation = 1 : Public, Static, Literal, HasDefault - OpenSees.DamageModels.DamageTypeWrapper PlasticDefo = 2 : Public, Static, Literal, HasDefault - OpenSees.DamageModels.DamageTypeWrapper TotalEnergy = 3 : Public, Static, Literal, HasDefault - OpenSees.DamageModels.DamageTypeWrapper PlasticEnergy = 4 : Public, Static, Literal, HasDefault -Class OpenSees.Materials.Uniaxials.LimitCurveWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Materials.Uniaxials.AxialCurveWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.LimitCurveWrapper - Void .ctor(Int32, Int32, OpenSees.Components.BaseDomainWrapper, Double, Double, Double, Int32, Int32, Int32, Int32, Int32, Int32, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.RotationShearCurveWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.LimitCurveWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, Double, Double, Double, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.Components.BaseDomainWrapper, OpenSees.Elements.BaseElementWrapper, OpenSees.Components.NodeWrapper, OpenSees.Components.NodeWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ThreePointCurveWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.LimitCurveWrapper - Void .ctor(Int32, Int32, OpenSees.Components.BaseDomainWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.HystereticBackboneWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Materials.Uniaxials.ArctangentBackboneWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ManderBackboneWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.RaynorBackboneWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ReeseSandBackboneWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ReeseSoftClayBackboneWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ReeseStiffClayBelowWSWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.TrilinearBackboneWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BackboneMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.HystereticBackboneWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DrainMaterialWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Int32, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DrainBilinearMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.DrainMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DrainClough1MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.DrainMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DrainClough2MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.DrainMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DrainHardeningMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.DrainMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DrainPinch1MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.DrainMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasMaterialWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasBond1MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasBond2MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasConcr1MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasConcr2MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasConcr3MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasHardeningMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasHyster1MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasHyster2MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasSteel1MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasSteel2MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PlasticDamageMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.LimitStateMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.Materials.Uniaxials.LimitCurveWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PinchingLimitStateMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.Components.BaseDomainWrapper, OpenSees.Components.NodeWrapper, OpenSees.Components.NodeWrapper, OpenSees.Materials.Uniaxials.LimitCurveWrapper, OpenSees.Elements.BaseElementWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PySimple1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PySimple2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PySimple3Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.QzSimple1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.QzSimple2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.TzSimple1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.TzSimple2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.TzLiq1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.TzSimple1Wrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Components.BaseDomainWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Int32, Int32, OpenSees.Components.BaseDomainWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PyLiq1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.PySimple1Wrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, OpenSees.Components.BaseDomainWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Int32, Int32, OpenSees.Components.BaseDomainWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BilinWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Bilin02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BilinearWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CloughWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CloughDamageWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CloughHenryWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PinchingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PinchingDamageWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.AxialSpWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.AxialSpHDWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BarSlipMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BilinearOilDamperWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Bond_SP01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BoucWenMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BoucWenOriginalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CableMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CastWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CFSSSWPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CFSWSWPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete01WithSITCWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete02ThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete04Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete06Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete07Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcreteCMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcreteDWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcreteECThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcreteSakaiKawashimaWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcretewBetaWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConfinedConcrete01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Int32, Double, Double, Int32, Double, Double, Int32, Int32, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DamperMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Dodd_RestrepoWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ECC01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Elastic2MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ElasticBilinWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ElasticMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ElasticMultiLinearWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ElasticPPMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ENTMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.EPPGapMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FatigueMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FRPConfinedConcreteWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FRPConfinedConcrete02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.HardeningMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.HookGapWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.HyperbolicGapMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.HystereticMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ImpactMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.InitStrainMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.InitStressMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.KikuchiAikenHDRWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.KikuchiAikenLRBWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.MaxwellWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.MinMaxMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ModIMKPeakOrientedWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ModIMKPeakOriented02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ModIMKPinchingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ModIMKPinching02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.MultiLinearWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.NewUniaxialMaterialWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.OriginCenteredWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ParallelMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PathIndependentMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Pinching4MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.pyUCLAWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.RambergOsgoodSteelWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ReinforcingSteelWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ResilienceLowWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ResilienceMaterialHRWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SAWSMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SelfCenteringMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SeriesMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ShearPanelMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SimpleFractureMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SmoothPSConcreteWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.StainlessECThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel01ThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel02ThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel03Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel4Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SteelBRBWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SteelECThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SteelMPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SteelMPFWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.UniaxialJ2PlasticityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ViscousDamperWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ViscousMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcreteL01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcreteZ01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SteelZ01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.TendonL01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.MDSetTrialStrain: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(Double, Double): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(Double, Double, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetStress: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetTangent: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetInitialTangent: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetStrain: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetDampTangent: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetStrainRate: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetRho: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDCommitState: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDRevertToLastCommit: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDRevertToStart: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetCopy: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDPrint: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.ExternalUniaxialMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - SetLinks(MDSetTrialStrain, MDGetStress, MDGetTangent, MDGetInitialTangent, MDGetDampTangent, MDGetStrain, MDGetStrainRate, MDGetRho, MDCommitState, MDRevertToLastCommit, MDRevertToStart, MDGetCopy, MDPrint): PrivateScope, Public, HideBySig -Class OpenSees.Materials.NDMaterials.NDMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.MaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetTag(): PrivateScope, Public, Virtual, HideBySig - GetTangent(): PrivateScope, Public, HideBySig - GetTangentMatrixWrapper(): PrivateScope, Public, HideBySig - GetInitialTangent(): PrivateScope, Public, HideBySig - GetInitialTangentMatrixWrapper(): PrivateScope, Public, HideBySig - GetStress(): PrivateScope, Public, HideBySig - GetStressVectorWrapper(): PrivateScope, Public, HideBySig - GetStrain(): PrivateScope, Public, HideBySig - GetStrainVectorWrapper(): PrivateScope, Public, HideBySig - GetType(): PrivateScope, Public, HideBySig - GetTypeTag(): PrivateScope, Public, HideBySig - GetOrder(): PrivateScope, Public, HideBySig - CommitState(): PrivateScope, Public, HideBySig - RevertToLastCommit(): PrivateScope, Public, HideBySig - RevertToStart(): PrivateScope, Public, HideBySig - SetResponse(String[], OPS_StreamWrapper): PrivateScope, Public, HideBySig - GetResponse(Int32, InformationWrapper): PrivateScope, Public, HideBySig -Class OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticityWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticity3DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticityAxiSymmWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticityPlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicMaterialThermalWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropic3DThermalWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ElasticIsotropicMaterialThermalWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicAxiSymmWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicBeamFiberWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicBeamFiber2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicPlaneStress2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicPlaneStrain2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicPlateFiberWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicThreeDimensionalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PressureDependentElastic3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FeapMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FeapMaterial01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FeapMaterial02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FeapMaterial03Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2PlasticityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2AxiSymmWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.J2PlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2BeamFiber2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2BeamFiber3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2CyclicBoundingSurfaceWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2PlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.J2PlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2PlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.J2PlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2PlasticityThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2PlateFiberWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.J2PlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2PlateFibreWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2ThreeDimensionalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.J2PlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2ThreeDimensionalThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.J2PlasticityThermalWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.MaterialCMMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FAFourSteelPCPlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FAFourSteelRCPlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FAPrestressedConcretePlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FAReinforcedConcretePlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PrestressedConcretePlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.RAFourSteelPCPlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.RAFourSteelRCPlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ReinforcedConcretePlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FluidSolidPorousMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.MultiYieldSurfaceClayWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PressureDependMultiYieldWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double[], Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PressureDependMultiYield02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double[], Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PressureIndependMultiYieldWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.BeamFiberMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.BeamFiberMaterial2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlaneStrainMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlaneStressLayeredMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double[], OpenSees.Materials.NDMaterials.NDMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlaneStressMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlaneStressRebarMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlaneStressSimplifiedJ2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlaneStressUserMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Int32, Double[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlateFiberMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlateFiberMaterialThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlateFromPlaneStressMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlateFromPlaneStressMaterialThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlateRebarMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlateRebarMaterialThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.AcousticMediumWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.BoundingCamClayWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.BoundingCamClay3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.BoundingCamClayPlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.DruckerPragerThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.DruckerPragerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.DruckerPrager3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.DruckerPragerWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CycLiqCPSPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CycLiqCPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CycLiqCPSP3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.CycLiqCPSPWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CycLiqCPPlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.CycLiqCPWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CycLiqCP3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.CycLiqCPWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ContactMaterial3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ContactMaterial2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ConcreteSWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CapPlasticityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CycLiqCPSPPlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.CycLiqCPSPWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.DruckerPrager3DThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.DruckerPragerPlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.DruckerPragerWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticOrthotropicMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.DruckerPragerWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticOrthotropicThreeDimensionalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ElasticOrthotropicMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FSAMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.InitialStateAnalysisWrapperWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.InitStressNDMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, OpenSees.VectorWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.LinearCapWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ManzariDafaliasWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ManzariDafalias3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ManzariDafaliasWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ManzariDafalias3DROWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ManzariDafaliasWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ManzariDafaliasPlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ManzariDafaliasWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ManzariDafaliasPlaneStrainROWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ManzariDafaliasWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ManzariDafaliasROWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ManzariDafaliasWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlasticDamageConcrete3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlasticDamageConcretePlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PM4SandWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PM4SiltWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.SimplifiedJ2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.NDMD_GetCopy: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetCopy_Type: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(String): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(String, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_Print: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(Int32): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(Int32, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetRho: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_SetTrialStrain_V: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(VectorWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(VectorWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_SetTrialStrain_VR: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(VectorWrapper, VectorWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(VectorWrapper, VectorWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_SetTrialStrainIncr_V: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(VectorWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(VectorWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_SetTrialStrainIncr_VR: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(VectorWrapper, VectorWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(VectorWrapper, VectorWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetTangent: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetInitialTangent: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetStress: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetStrain: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_RevertToStart: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_CommitState: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_RevertToLastCommit: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetType: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetOrder: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.ExternalNDMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - SetLinks(NDMD_SetTrialStrain_V, NDMD_SetTrialStrain_VR, NDMD_SetTrialStrainIncr_V, NDMD_SetTrialStrainIncr_VR, NDMD_GetTangent, NDMD_GetInitialTangent, NDMD_GetStress, NDMD_GetStrain, NDMD_RevertToStart, NDMD_CommitState, NDMD_RevertToLastCommit, NDMD_GetType, NDMD_GetOrder, NDMD_GetCopy, NDMD_GetCopy_Type, NDMD_Print, NDMD_GetRho): PrivateScope, Public, HideBySig -Class OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Materials.YieldSurfaces.YS_Evolution2DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.MaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper - Void .ctor(Int32, Int32, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.ExponReducingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.MultiLinearKpWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.NullPlasticMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.Attalla2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper - Void .ctor(Int32, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.ElTawil2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper - Void .ctor(Int32, Double, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.ElTawil2DUnSymWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.Hajjar2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper - Void .ctor(Int32, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.NullYS2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.Orbison2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper - Void .ctor(Int32, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.BkStressLimSurface2DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YS_Evolution2DWrapper - Void .ctor(Int32, Int32, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.BoundingSurface2DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YS_Evolution2DWrapper - Void .ctor(Int32, Int32, Double, Double, Double, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.PlasticHardening2DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YS_Evolution2DWrapper - Void .ctor(Int32, Int32, Double, Double, Double, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.CombinedIsoKin2D01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardening2DWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.CombinedIsoKin2D02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.BkStressLimSurface2DWrapper - Void .ctor(Int32, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Boolean, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.Isotropic2D01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardening2DWrapper - Void .ctor(Int32, Double, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.Kinematic2D01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardening2DWrapper - Void .ctor(Int32, Double, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.Kinematic2D02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.BkStressLimSurface2DWrapper - Void .ctor(Int32, Double, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.NullEvolutionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.PeakOriented2D01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardening2DWrapper - Void .ctor(Int32, Double, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.PeakOriented2D02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.BkStressLimSurface2DWrapper - Void .ctor(Int32, Double, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.FiberWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - Methods: - GetFiberStressResultants(): PrivateScope, Public, HideBySig - GetFiberTangentStiffContr(): PrivateScope, Public, HideBySig - GetArea(): PrivateScope, Public, HideBySig - GetFiberLocation(): PrivateScope, Public, HideBySig - GetMaterial(): PrivateScope, Public, HideBySig - GetNDMaterial(): PrivateScope, Public, HideBySig -Class OpenSees.Materials.Sections.Repres.UniaxialFiber2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.FiberWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.NDFiber2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.FiberWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.UniaxialFiber3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.FiberWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.NDFiber3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.FiberWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.PatchWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Materials.Sections.Repres.QuadPatchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.PatchWrapper - Void .ctor(Int32, Int32, Int32, OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.CircPatchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.PatchWrapper - Void .ctor(Int32, Int32, Int32, OpenSees.VectorWrapper, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.ReinfLayerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Materials.Sections.Repres.StraightReinfLayerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.ReinfLayerWrapper - Void .ctor(Int32, Int32, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.CircReinfLayerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.ReinfLayerWrapper - Void .ctor(Int32, Int32, Double, OpenSees.VectorWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.SectionRepresWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.FiberSectionReprWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.SectionRepresWrapper - Void .ctor(Int32, OpenSees.Materials.Sections.Repres.PatchWrapper[], OpenSees.Materials.Sections.Repres.ReinfLayerWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.SectionForceDeformationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.MaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetTag(): PrivateScope, Public, Virtual, HideBySig - GetSectionDeformation(): PrivateScope, Public, HideBySig - GetStressResultant(): PrivateScope, Public, HideBySig - GetSectionTangent(): PrivateScope, Public, HideBySig - GetInitialTangent(): PrivateScope, Public, HideBySig - GetSectionFlexibility(): PrivateScope, Public, HideBySig - GetInitialFlexibility(): PrivateScope, Public, HideBySig - GetRho(): PrivateScope, Public, HideBySig -Class OpenSees.Materials.Sections.YieldSurfaceSection2dWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.YS_Section2D01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.YieldSurfaceSection2dWrapper - Void .ctor(Int32, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.YS_Section2D02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.YieldSurfaceSection2dWrapper - Void .ctor(Int32, Double, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.BidirectionalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticMembranePlateSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticPlateSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticSection2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticSection3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticShearSection2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticShearSection3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticTubeSection3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticWarpingShearSection2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Elliptical2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSection2dThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSection3dThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSectionGJWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSectionGJThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.GenericSection1dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Isolator2springWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.LayeredShellFiberSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, Double[], OpenSees.Materials.NDMaterials.NDMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.LayeredShellFiberSectionThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, Double[], OpenSees.Materials.NDMaterials.NDMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.MembranePlateFiberSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.MembranePlateFiberSectionThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.NDFiberSection2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.NDFiberSection3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.NDFiberSectionWarping2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ParallelSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.SectionAggregatorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSection3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, OpenSees.Materials.Sections.Repres.FiberSectionReprWrapper, System.Collections.Generic.Dictionary`2[System.Int32,OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper], OpenSees.Materials.Sections.Repres.UniaxialFiber3dWrapper[], OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSection2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, OpenSees.Materials.Sections.Repres.FiberSectionReprWrapper, System.Collections.Generic.Dictionary`2[System.Int32,OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper], OpenSees.Materials.Sections.Repres.UniaxialFiber2dWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSection2dIntWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], OpenSees.Materials.Sections.Repres.FiberWrapper[], Int32, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(System.Enum): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - GetSectionPositions(Int32, Double): PrivateScope, Public, HideBySig - GetSectionWeights(Int32, Double): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Elements.BeamIntegrations.DistHingeIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Double, Double, OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.FixedLocationBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.HingeEndpointBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.HingeMidpointBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.HingeRadauBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.HingeRadauTwoBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.LowOrderBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.MidDistanceBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.RegularizedHingeIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.UserDefinedBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.UserDefinedHingeIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.AdapterWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.IDWrapper, OpenSees.IDWrapper, OpenSees.MatrixWrapper, Int32, Int32, OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ActuatorCorotWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ActuatorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Struct OpenSees.Elements.BeamIntegrations.BeamIntegrationType: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Elements.BeamIntegrations.BeamIntegrationType Lobatto = 0 : Public, Static, Literal, HasDefault - OpenSees.Elements.BeamIntegrations.BeamIntegrationType Legendre = 1 : Public, Static, Literal, HasDefault - OpenSees.Elements.BeamIntegrations.BeamIntegrationType Radau = 2 : Public, Static, Literal, HasDefault - OpenSees.Elements.BeamIntegrations.BeamIntegrationType CompositeSimpson = 3 : Public, Static, Literal, HasDefault - OpenSees.Elements.BeamIntegrations.BeamIntegrationType NewtonCotes = 4 : Public, Static, Literal, HasDefault - OpenSees.Elements.BeamIntegrations.BeamIntegrationType Trapezoidal = 5 : Public, Static, Literal, HasDefault -Class OpenSees.Elements.CrdTransfs.CrdTransfWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - Methods: - GetInitialLength(): PrivateScope, Public, HideBySig - GetDeformedLength(): PrivateScope, Public, HideBySig - GetLocalAxes(VectorWrapper, VectorWrapper, VectorWrapper): PrivateScope, Public, HideBySig - getBasicTrialDisp(): PrivateScope, Public, HideBySig - getBasicIncrDisp(): PrivateScope, Public, HideBySig - getBasicIncrDeltaDisp(): PrivateScope, Public, HideBySig - getBasicTrialVel(): PrivateScope, Public, HideBySig - getBasicTrialAccel(): PrivateScope, Public, HideBySig -Class OpenSees.Elements.CrdTransfs.PDeltaCrdTransf2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.LinearCrdTransf2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.CorotCrdTransf2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.LinearCrdTransf3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.CorotCrdTransf3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.PDeltaCrdTransf3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.CorotCrdTransfWarping2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.LinearCrdTransf2dIntWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Interface OpenSees.Elements.ISectionForceDeformationBeamColumnWrapper: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, BeforeFieldInit - Methods: - GetSections(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract - GetBeamIntegration(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract - GetCrdTransf(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract -Class OpenSees.Elements.AxEqDispBeamColumn2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.DispBeamColumn2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.Elements.ISectionForceDeformationBeamColumnWrapper - Methods: - GetSections(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetBeamIntegration(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetCrdTransf(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask -Class OpenSees.Elements.DispBeamColumn2dThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.DispBeamColumn2dWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.DispBeamColumn3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.Elements.ISectionForceDeformationBeamColumnWrapper - Methods: - GetSections(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetBeamIntegration(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetCrdTransf(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask -Class OpenSees.Elements.DispBeamColumn3dThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.DispBeamColumn3dWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.DispBeamColumn2dIntWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticBeam2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Int32, Int32, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticBeam3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Int32, Int32, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticTimoshenkoBeam2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticTimoshenkoBeam3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ModElasticBeam2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Int32, Int32, Double, Double, Double, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticForceBeamColumn2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticForceBeamColumn3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticForceBeamColumnWarping2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ForceBeamColumn2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.Elements.ISectionForceDeformationBeamColumnWrapper - Methods: - GetSections(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetBeamIntegration(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetCrdTransf(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask -Class OpenSees.Elements.ForceBeamColumn2dThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ForceBeamColumn3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.Elements.ISectionForceDeformationBeamColumnWrapper - Methods: - GetSections(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetBeamIntegration(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetCrdTransf(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask -Class OpenSees.Elements.ForceBeamColumnWarping2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ForceBeamColumnCBDI2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Boolean, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.MVLEMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], Double[], Double[], Double[], Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SFI_MVLEMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper[], Double[], Double[], Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericBearingBoucWen2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Double, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericBearingBoucWen3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Double, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericBearingBoucWenMod3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericBearingPlasticity2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericBearingPlasticity3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericBearingUFRP2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericXWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.HDRWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.LeadRubberXWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FrictionModelWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Elements.CoulombWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.FrictionModelWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.VelDependentWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.FrictionModelWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.VelDepMultiLinearWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.FrictionModelWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.VelNormalFrcDepWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.FrictionModelWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.VelPressureDepWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.FrictionModelWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FlatSliderSimple2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FlatSliderSimple3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FPBearingPTVWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Int32, Double, Int32, Double, Double, Int32, Double, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Double, Int32, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Int32, Double, Int32, Double, Double, Int32, Double, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.MultiFP2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.RJWatsonEQS2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Double, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.RJWatsonEQS3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Double, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SingleFPSimple2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Int32, Double, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SingleFPSimple3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Int32, Double, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TFP_BearingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double[], Double[], Double[], Double[], Double[], Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TFP_Bearing2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double[], Double[], Double[], Double[], Double[], Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TPB1DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double[], Double[], Double[], Double[], Double[], Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TripleFrictionPendulumWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper[], OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.KikuchiBearingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, Double, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Boolean, Boolean, Double, Double, Boolean, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.MultipleNormalSpringWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, Double, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.MultipleShearSpringWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], Int32, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.YamamotoBiaxialHDRWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, Double, Double, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BbarBrickWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BbarBrickWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BrickWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Twenty_Node_BrickWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CatenaryCableWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.DEle_GetClassType: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetNumExternalNodes: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetExternalNodes: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetNodePtrs: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetNumDOF: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_SetDomain: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(DomainWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(DomainWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_CommitState: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_RevertToLastCommit: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_RevertToStart: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_Update: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetTangentStiff: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetInitialStiff: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetDamp: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetMass: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_ZeroLoad: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_AddLoad: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(ElementalLoadWrapper, Double): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(ElementalLoadWrapper, Double, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_AddInertiaLoadToUnbalance: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(VectorWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(VectorWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetResistingForce: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetResistingForceIncInertia: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_Print: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(Int32): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(Int32, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_SetResponse: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(String[], OPS_StreamWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(String[], OPS_StreamWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetResponse: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(Int32, InformationWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(Int32, InformationWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.ExternalElementWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - SetLinks(DEle_GetClassType, DEle_GetNumExternalNodes, DEle_GetNodePtrs, DEle_GetExternalNodes, DEle_GetNumDOF, DEle_SetDomain, DEle_CommitState, DEle_RevertToLastCommit, DEle_RevertToStart, DEle_Update, DEle_GetTangentStiff, DEle_GetInitialStiff, DEle_GetDamp, DEle_GetMass, DEle_ZeroLoad, DEle_AddLoad, DEle_AddInertiaLoadToUnbalance, DEle_GetResistingForce, DEle_GetResistingForceIncInertia, DEle_Print, DEle_SetResponse, DEle_GetResponse): PrivateScope, Public, HideBySig - GetBaseElementDamp(): PrivateScope, Public, HideBySig -Class OpenSees.Elements.GenericClientWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.IDWrapper, OpenSees.IDWrapper, Int32, System.String, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.IDWrapper, OpenSees.IDWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.GenericCopyWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.IDWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.MP_Joint2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Constraints.MP_ConstraintWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Components.DomainWrapper, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.MP_Joint3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Constraints.MP_ConstraintWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Components.DomainWrapper, Int32, Int32, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamColumnJoint2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamColumnJoint3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticTubularJointWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Joint2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Components.DomainWrapper, Int32, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Components.DomainWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Joint3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Components.DomainWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.PY_Macro2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FourNodeTetrahedronWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Tri31Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TwoNodeLinkWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.IDWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.IDWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BBarBrickUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BBarFourNodeQuadUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BrickUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FourNodeQuadUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.NineFourNodeQuadUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamContact2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamContact2DpWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamContact3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Double, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamContact3DpWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamEndContact3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamEndContact3DpWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Brick8FiberOverlayWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.PileToe3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.QuadBeamEmbedContactWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SimpleContact2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SimpleContact3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SSPbrickWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SSPbrickUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SSPquadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SSPquadUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.AC3D8HexWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ASI3D8QuadWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.AV3D4QuadWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.VS3D4QuadWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Struct OpenSees.Elements.PlaneElementType: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Elements.PlaneElementType PlaneStrain = 0 : Public, Static, Literal, HasDefault - OpenSees.Elements.PlaneElementType PlaneStress = 1 : Public, Static, Literal, HasDefault -Class OpenSees.Elements.Quad4FiberOverlayWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SurfaceLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TriSurfaceLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ConstantPressureVolumeQuadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.EnhancedQuadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FourNodeQuadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FourNodeQuadWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FourNodeQuad3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.NineNodeMixedQuadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Struct OpenSees.Elements.FourNodeQuadType: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Elements.FourNodeQuadType PlaneStrain = 0 : Public, Static, Literal, HasDefault - OpenSees.Elements.FourNodeQuadType PlaneStress = 1 : Public, Static, Literal, HasDefault -Class OpenSees.Elements.ShellANDeSWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellDKGQWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellDKGTWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellMITC4Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellMITC4ThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellMITC9Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellNLDKGQWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellNLDKGQThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellNLDKGTWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CorotTrussWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CorotTruss2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CorotTrussSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.N4BiaxialTrussWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TrussWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Truss2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TrussSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CyclicModelWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Elements.BilinearCyclicWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.CyclicModelWrapper - Void .ctor(Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.LinearCyclicWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.CyclicModelWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.QuadraticCyclicWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.CyclicModelWrapper - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.UpdatedLagrangianBeam2DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.InelasticYS2DGNLWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.UpdatedLagrangianBeam2DWrapper - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Elastic2dGNLWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.UpdatedLagrangianBeam2DWrapper - Void .ctor(Int32, Double, Double, Double, Int32, Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Inelastic2DYS01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.InelasticYS2DGNLWrapper - Void .ctor(Int32, Double, Double, Double, Int32, Int32, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Inelastic2DYS02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.InelasticYS2DGNLWrapper - Void .ctor(Int32, Double, Double, Double, Int32, Int32, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Elements.CyclicModelWrapper, Double, Double, Double, Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Inelastic2DYS03Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.InelasticYS2DGNLWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Int32, Int32, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CoupledZeroLengthWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.IDWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.IDWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthContact2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthContact3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthContactNTS2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.IDWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthImpact3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthInterface2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.IDWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthNDWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.Materials.NDMaterials.NDMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthRockingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.Materials.Sections.SectionForceDeformationWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Integrations.SectionIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Materials.Sections.Integrations.RCSectionIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Integrations.SectionIntegrationWrapper - Void .ctor(Double, Double, Double, Double, Double, Double, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Integrations.RCTBeamSectionIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Integrations.SectionIntegrationWrapper - Void .ctor(Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Integrations.WideFlangeSectionIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Integrations.SectionIntegrationWrapper - Void .ctor(Double, Double, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.ElementResponseWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.ResponseWrapper - Void .ctor(OpenSees.Elements.ElementWrapper, Int32, OpenSees.VectorWrapper, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Elements.ElementWrapper, Int32, OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Elements.ElementWrapper, Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Elements.ElementWrapper, Int32, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Elements.ElementWrapper, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Elements.ElementWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Elements.ElementWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.FiberResponseWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.ResponseWrapper - Void .ctor(OpenSees.Materials.Sections.Repres.FiberWrapper, Int32, OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Sections.Repres.FiberWrapper, Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Sections.Repres.FiberWrapper, Int32, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Sections.Repres.FiberWrapper, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Sections.Repres.FiberWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Sections.Repres.FiberWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.NDMaterialResponseWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.ResponseWrapper - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32, OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.UniaxialMaterialResponseWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.ResponseWrapper - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Eigens.ArpackSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Eigens.EigenSOEWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Systems.Linears.LinearSOESolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.SolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.BandGenLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.BandGenLinLapackSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.BandGenLinSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.BandGenLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.BandGenLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DistributedBandGenLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.BandGenLinSOEWrapper - Void .ctor(OpenSees.Systems.Linears.BandGenLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.BandSPDLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.BandSPDLinLapackSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.BandSPDLinSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.BandSPDLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.BandSPDLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DistributedBandSPDLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.BandSPDLinSOEWrapper - Void .ctor(OpenSees.Systems.Linears.BandSPDLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DiagonalSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DiagonalDirectSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.DiagonalSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DiagonalSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.DiagonalSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DistributedDiagonalSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DistributedDiagonalSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.DiagonalSOEWrapper - Void .ctor(OpenSees.Systems.Linears.DistributedDiagonalSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Eigens.EigenSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Systems.Eigens.FullGenEigenSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Eigens.EigenSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Eigens.FullGenEigenSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Eigens.EigenSOEWrapper - Void .ctor(OpenSees.Systems.Eigens.FullGenEigenSolverWrapper, OpenSees.AnalysisModelWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.FullGenLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.FullGenLinLapackSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.FullGenLinSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.FullGenLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(Int32, OpenSees.Systems.Linears.FullGenLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Systems.Linears.FullGenLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.ProfileSPDLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SProfileSPDLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.ProfileSPDLinDirectSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.ProfileSPDLinSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.ProfileSPDLinSubstrSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.ProfileSPDLinSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.ProfileSPDLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.ProfileSPDLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SProfileSPDLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.SProfileSPDLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DistributedProfileSPDLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.ProfileSPDLinSOEWrapper - Void .ctor(OpenSees.Systems.Linears.ProfileSPDLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SparseGenColLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SuperLUWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.SparseGenColLinSolverWrapper - Void .ctor(Int32, Double, Int32, Int32, SByte): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SparseGenRowLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SparseGenColLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.SparseGenColLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SparseGenRowLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.SparseGenRowLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SymSparseLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SymSparseLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.SymSparseLinSolverWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Eigens.SymBandEigenSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Eigens.EigenSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Eigens.SymBandEigenSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Eigens.EigenSOEWrapper - Void .ctor(OpenSees.Systems.Eigens.SymBandEigenSolverWrapper, OpenSees.AnalysisModelWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.UmfpackGenLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.UmfpackGenLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.UmfpackGenLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Tcl.ModelBuilder.ModelBuilderAddUniaxialMaterialArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper theMaterial : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderRemoveUniaxialMaterialArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - Int32 tag : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllUniaxialMaterialArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderAddSectionArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Materials.Sections.SectionForceDeformationWrapper theSection : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderRemoveSectionArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - Int32 tag : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllSectionArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderAddNDMaterialArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Materials.NDMaterials.NDMaterialWrapper theNDMaterial : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderRemoveNDMaterialArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - Int32 tag : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllNDMaterialArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.TclExecutionResult: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(OpenSees.Tcl.TclExecutionStatus): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - Int32 ExecutionStatus : Public - System.String Result : Public - System.String ErrorMessage : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.TclWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(OpenSees.Handlers.RedirectStreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Events: - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllNDMaterialArgs] ClearAllNDMaterialEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderRemoveNDMaterialArgs] RemoveNDMaterialEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderAddNDMaterialArgs] AddNDMaterialEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllSectionArgs] ClearAllSectionEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderRemoveSectionArgs] RemoveSectionEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderAddSectionArgs] AddSectionEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllUniaxialMaterialArgs] ClearAllUniaxialMaterialEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderRemoveUniaxialMaterialArgs] RemoveUniaxialMaterialEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderAddUniaxialMaterialArgs] AddUniaxialMaterialEventHandler: SpecialName - Methods: - SetOutputStream(RedirectStreamWrapper): PrivateScope, Public, HideBySig - Init(): PrivateScope, Public, HideBySig - Execute(String): PrivateScope, Public, HideBySig - TclEvalFile(String): PrivateScope, Public, HideBySig - TclEval(String): PrivateScope, Public, HideBySig - GetActiveDomain(): PrivateScope, Public, HideBySig - add_AddUniaxialMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddUniaxialMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveUniaxialMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveUniaxialMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_ClearAllUniaxialMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_ClearAllUniaxialMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddSectionEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddSectionEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveSectionEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveSectionEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_ClearAllSectionEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_ClearAllSectionEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddNDMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddNDMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveNDMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveNDMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_ClearAllNDMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_ClearAllNDMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Struct OpenSees.Tcl.TclExecutionStatus: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Tcl.TclExecutionStatus Init = 0 : Public, Static, Literal, HasDefault - OpenSees.Tcl.TclExecutionStatus Success = 1 : Public, Static, Literal, HasDefault - OpenSees.Tcl.TclExecutionStatus Failed = 2 : Public, Static, Literal, HasDefault - OpenSees.Tcl.TclExecutionStatus Partial = 3 : Public, Static, Literal, HasDefault - OpenSees.Tcl.TclExecutionStatus Empty = 4 : Public, Static, Literal, HasDefault diff --git a/Win64/bin/OpenSees.NET.x64.dll.metagen b/Win64/bin/OpenSees.NET.x64.dll.metagen deleted file mode 100644 index d1e04083de..0000000000 --- a/Win64/bin/OpenSees.NET.x64.dll.metagen +++ /dev/null @@ -1,3886 +0,0 @@ -ImageRuntimeVersion: v4.0.30319 -Assembly OpenSees.NET.x64, Version=1.0.*, Culture=Invariant Language (Invariant Country): - hash=SHA1, flags=PublicKey -Assembly mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089: - hash=None, flags=None -Assembly System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089: - hash=None, flags=None -Assembly System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089: - hash=None, flags=None -Assembly System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089: - hash=None, flags=None -Interface OpenSees.IMovableObjectWrapper: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, BeforeFieldInit -Class OpenSees.Algorithms.Accelerators.AcceleratorWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Algorithms.Accelerators.DifferenceAccelerator2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.KrylovAcceleratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.KrylovAccelerator2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.MillerAcceleratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.PeriodicAcceleratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.RaphsonAcceleratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.SecantAccelerator1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.SecantAccelerator2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.Accelerators.SecantAccelerator3Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.Accelerators.AcceleratorWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.LineSearchs.LineSearchWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Algorithms.LineSearchs.BisectionLineSearchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.LineSearchs.LineSearchWrapper - Void .ctor(Double, Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.LineSearchs.InitialInterpolatedLineSearchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.LineSearchs.LineSearchWrapper - Void .ctor(Double, Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.LineSearchs.SecantLineSearchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.LineSearchs.LineSearchWrapper - Void .ctor(Double, Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.LineSearchs.RegulaFalsiLineSearchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.LineSearchs.LineSearchWrapper - Void .ctor(Double, Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.ConvergenceTestWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - GetNorms(): PrivateScope, Public, HideBySig - GetNumTests(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.ConvergenceTests.CTestEnergyIncrWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestFixedNumIterWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestNormDispIncrWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestNormUnbalanceWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestPFEMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestRelativeEnergyIncrWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestRelativeNormDispIncrWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestRelativeNormUnbalanceWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.CTestRelativeTotalNormDispIncrWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.NormDispAndUnbalanceWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Double, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.ConvergenceTests.NormDispOrUnbalanceWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.ConvergenceTests.ConvergenceTestWrapper - Void .ctor(Double, Double, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.SolutionAlgorithmWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Algorithms.EquiSolnAlgoWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Algorithms.SolutionAlgorithmWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - SetConvergenceTest(ConvergenceTestWrapper): PrivateScope, Public, HideBySig - GetTotalTimeCPU(): PrivateScope, Public, HideBySig - GetTotalTimeReal(): PrivateScope, Public, HideBySig - GetSolveTimeCPU(): PrivateScope, Public, HideBySig - GetSolveTimeReal(): PrivateScope, Public, HideBySig - GetAccelTimeReal(): PrivateScope, Public, HideBySig - GetNumIterations(): PrivateScope, Public, HideBySig - GetNumFactorizations(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Algorithms.LinearWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.NewtonRaphsonWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.AcceleratedNewtonWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, OpenSees.Algorithms.Accelerators.AcceleratorWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.BFGSWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.BroydenWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.KrylovNewtonWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.ModifiedNewtonWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.NewtonHallMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(Double, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.NewtonLineSearchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, OpenSees.Algorithms.LineSearchs.LineSearchWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Algorithms.PeriodicNewtonWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Algorithms.EquiSolnAlgoWrapper - Void .ctor(OpenSees.ConvergenceTests.ConvergenceTestWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.BaseDomainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.TaggedObjectWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - GetTag(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask - PrintSelf(Int32): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.DomainComponentWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Elements.BaseElementWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.DomainComponentWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.IDWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Properties: - Int32 Item [Int32] 'get set' : - Methods: - ToArray(): PrivateScope, Public, HideBySig - Size(): PrivateScope, Public, HideBySig - Zero(): PrivateScope, Public, HideBySig - Get(Int32): PrivateScope, Public, HideBySig - Set(Int32, Int32): PrivateScope, Public, HideBySig - get_Item(Int32): PrivateScope, Public, HideBySig, SpecialName - set_Item(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName - SetData(Int32[], Int32, Int32): PrivateScope, Public, HideBySig - GetArray(IDWrapper): PrivateScope, Public, Static, HideBySig - Print(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.VectorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Properties: - Double Item [Int32] 'get set' : - Methods: - ToArray(): PrivateScope, Public, HideBySig - Size(): PrivateScope, Public, HideBySig - Get(Int32): PrivateScope, Public, HideBySig - Set(Int32, Double): PrivateScope, Public, HideBySig - get_Item(Int32): PrivateScope, Public, HideBySig, SpecialName - set_Item(Int32, Double): PrivateScope, Public, HideBySig, SpecialName - Zero(): PrivateScope, Public, HideBySig - Add(Double, VectorWrapper, Double): PrivateScope, Public, HideBySig - SetData(Double[], Double, Double): PrivateScope, Public, HideBySig - op_AdditionAssignment(VectorWrapper, VectorWrapper): PrivateScope, Public, Static, HideBySig, SpecialName - op_SubtractionAssignment(VectorWrapper, VectorWrapper): PrivateScope, Public, Static, HideBySig, SpecialName - op_Multiply(VectorWrapper, Double): PrivateScope, Public, Static, HideBySig, SpecialName - GetArray(VectorWrapper): PrivateScope, Public, Static, HideBySig - Print(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.MatrixWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double[,]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Properties: - Double Item [Int32, Int32] 'get set' : - Methods: - Zero(): PrivateScope, Public, HideBySig - noRows(): PrivateScope, Public, HideBySig - noCols(): PrivateScope, Public, HideBySig - Solve(MatrixWrapper): PrivateScope, Public, HideBySig - Solve(VectorWrapper): PrivateScope, Public, HideBySig - Invert(): PrivateScope, Public, HideBySig - Get(Int32, Int32): PrivateScope, Public, HideBySig - Set(Int32, Int32, Double): PrivateScope, Public, HideBySig - SetData(Double[,], Double, Double): PrivateScope, Public, HideBySig - get_Item(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName - set_Item(Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName - GetArray(MatrixWrapper): PrivateScope, Public, Static, HideBySig - Add(Double, MatrixWrapper, Double): PrivateScope, Public, HideBySig - Print(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Materials.MaterialWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.OPS: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Properties: - System.Object Null 'get ' : - Methods: - get_Null(): PrivateScope, Public, Static, HideBySig, SpecialName -Class OpenSees.Handlers.OPS_StreamWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - SetFile(String, Int32, Boolean(HasFieldMarshal)): PrivateScope, Public, HideBySig - SetPrecision(Int32): PrivateScope, Public, HideBySig - SetFloatField(Int32): PrivateScope, Public, HideBySig - Precision(Int32): PrivateScope, Public, HideBySig - Width(Int32): PrivateScope, Public, HideBySig - Tag(String, String): PrivateScope, Public, HideBySig - Tag(String): PrivateScope, Public, HideBySig - EndTag(): PrivateScope, Public, HideBySig - Attr(String, String): PrivateScope, Public, HideBySig - Attr(String, Double): PrivateScope, Public, HideBySig - Attr(String, Int32): PrivateScope, Public, HideBySig - Write(VectorWrapper): PrivateScope, Public, HideBySig - GetStreamHeader(): PrivateScope, Public, HideBySig - CloseStreamHeader(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Handlers.DataFileStreamWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.OPS_StreamWrapper - Void .ctor(System.String, Int32, Int32, Int32, Boolean, Int32, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(System.String): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.BinaryFileStreamWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.OPS_StreamWrapper - Void .ctor(System.String, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(System.String): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.XmlFileStreamWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.OPS_StreamWrapper - Void .ctor(System.String, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.TCP_StreamWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.OPS_StreamWrapper - Void .ctor(UInt32, System.String, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.RedirectStreamWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.OPS_StreamWrapper - Void .ctor(System.IO.TextWriter): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.ResponseWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Recorders.InformationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(OpenSees.IDWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Properties: - System.String String 'get ' : - OpenSees.MatrixWrapper Matrix 'get ' : - OpenSees.VectorWrapper Vector 'get ' : - OpenSees.IDWrapper Id 'get ' : - Double Double 'get ' : - Int32 Int 'get ' : - System.Enum Type 'get ' InfoTypeWrapper IsBoxed : - Methods: - SetInt(Int32): PrivateScope, Public, HideBySig - SetDouble(Double): PrivateScope, Public, HideBySig - SetID(IDWrapper): PrivateScope, Public, HideBySig - SetVector(VectorWrapper): PrivateScope, Public, HideBySig - SetMatrix(MatrixWrapper): PrivateScope, Public, HideBySig - SetString(String): PrivateScope, Public, HideBySig - Print(): PrivateScope, Public, HideBySig - get_Type(): PrivateScope, Public, HideBySig, SpecialName - get_Int(): PrivateScope, Public, HideBySig, SpecialName - get_Double(): PrivateScope, Public, HideBySig, SpecialName - get_Id(): PrivateScope, Public, HideBySig, SpecialName - get_Vector(): PrivateScope, Public, HideBySig, SpecialName - get_Matrix(): PrivateScope, Public, HideBySig, SpecialName - get_String(): PrivateScope, Public, HideBySig, SpecialName - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.MaterialWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetCopy(): PrivateScope, Public, HideBySig - GetTag(): PrivateScope, Public, Virtual, HideBySig - GetStrain(): PrivateScope, Public, HideBySig - GetStrainRate(): PrivateScope, Public, HideBySig - GetStress(): PrivateScope, Public, HideBySig - GetTangent(): PrivateScope, Public, HideBySig - GetInitialTangent(): PrivateScope, Public, HideBySig - GetDampTangent(): PrivateScope, Public, HideBySig - GetRho(): PrivateScope, Public, HideBySig - CommitState(): PrivateScope, Public, HideBySig - RevertToLastCommit(): PrivateScope, Public, HideBySig - RevertToStart(): PrivateScope, Public, HideBySig - GetType(): PrivateScope, Public, HideBySig - GetTypeTag(): PrivateScope, Public, HideBySig - SetResponse(String[], OPS_StreamWrapper): PrivateScope, Public, HideBySig - GetResponse(Int32, InformationWrapper): PrivateScope, Public, HideBySig -Class OpenSees.Components.NodeWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DomainComponentWrapper - Void .ctor(Int32, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetNumberDOF(): PrivateScope, Public, HideBySig - GetTag(): PrivateScope, Public, Virtual, HideBySig - GetCrdsVector(): PrivateScope, Public, HideBySig - GetCrds(): PrivateScope, Public, HideBySig - GetCommitDispVector(): PrivateScope, Public, HideBySig - GetCommitDisp(): PrivateScope, Public, HideBySig - GetCommitVelVector(): PrivateScope, Public, HideBySig - GetCommitVel(): PrivateScope, Public, HideBySig - GetCommitAccelVector(): PrivateScope, Public, HideBySig - GetCommitAccel(): PrivateScope, Public, HideBySig - GetTrialDispVector(): PrivateScope, Public, HideBySig - GetTrialDisp(): PrivateScope, Public, HideBySig - GetTrialVelVector(): PrivateScope, Public, HideBySig - GetTrialVel(): PrivateScope, Public, HideBySig - GetTrialAccelVector(): PrivateScope, Public, HideBySig - GetTrialAccel(): PrivateScope, Public, HideBySig - GetIncrDispVector(): PrivateScope, Public, HideBySig - GetIncrDisp(): PrivateScope, Public, HideBySig - GetIncrDeltaDispVector(): PrivateScope, Public, HideBySig - GetIncrDeltaDisp(): PrivateScope, Public, HideBySig - GetRVVector(VectorWrapper): PrivateScope, Public, HideBySig - GetRV(VectorWrapper): PrivateScope, Public, HideBySig - GetIDWrapper(): PrivateScope, Public, HideBySig - GetIds(): PrivateScope, Public, HideBySig - GetReactionsVector(): PrivateScope, Public, HideBySig - GetReactions(): PrivateScope, Public, HideBySig - GetEigenvectorsMatrix(): PrivateScope, Public, HideBySig - GetEigenvectors(): PrivateScope, Public, HideBySig - CommitState(): PrivateScope, Public, HideBySig - RevertToLastCommit(): PrivateScope, Public, HideBySig - RevertToStart(): PrivateScope, Public, HideBySig - GetDisp(): PrivateScope, Public, HideBySig (Obsolete) - GetVel(): PrivateScope, Public, HideBySig (Obsolete) - GetAcc(): PrivateScope, Public, HideBySig (Obsolete) -Class OpenSees.Elements.ElementWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BaseElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetNodeTagsIDWrapper(): PrivateScope, Public, HideBySig - GetNodeTags(): PrivateScope, Public, HideBySig - GetTangentStiffMatrixWrapper(): PrivateScope, Public, HideBySig - GetTangentStiff(): PrivateScope, Public, HideBySig - GetMassMatrixWrapper(): PrivateScope, Public, HideBySig - GetMass(): PrivateScope, Public, HideBySig - GetDampMatrixWrapper(): PrivateScope, Public, HideBySig - GetDamp(): PrivateScope, Public, HideBySig - GetResistingForceVectorWrapper(): PrivateScope, Public, HideBySig - GetResistingForce(): PrivateScope, Public, HideBySig - GetResistingForceIncInertiaVectorWrapper(): PrivateScope, Public, HideBySig - GetResistingForceIncInertia(): PrivateScope, Public, HideBySig - GetRayleighDampingForcesVectorWrapper(): PrivateScope, Public, HideBySig - GetRayleighDampingForces(): PrivateScope, Public, HideBySig - GetTag(): PrivateScope, Public, Virtual, HideBySig - GetNumExternalNodes(): PrivateScope, Public, HideBySig - GetNumDOF(): PrivateScope, Public, HideBySig - GetNodes(): PrivateScope, Public, HideBySig - GetClassType(): PrivateScope, Public, HideBySig - GetResponse(Int32, InformationWrapper): PrivateScope, Public, HideBySig - GetStringResponse(Int32): PrivateScope, Public, HideBySig - GetDoubleResponse(Int32): PrivateScope, Public, HideBySig - GetVectorResponse(Int32, VectorWrapper&): PrivateScope, Public, HideBySig - GetMatrixResponse(Int32, MatrixWrapper&): PrivateScope, Public, HideBySig - GetIDResponse(Int32, IDWrapper&): PrivateScope, Public, HideBySig - GetIntResponse(Int32): PrivateScope, Public, HideBySig -Class OpenSees.Components.Timeseries.TimeSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - Methods: - GetFactor(Double): PrivateScope, Public, HideBySig -Class OpenSees.Components.Timeseries.PathTimeSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.PathSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(OpenSees.VectorWrapper, Double, Double, Boolean, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.LinearSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.ConstantSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.PathTimeSeriesThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(System.String, Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.PeerMotionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(System.String, System.String, System.String, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.PulseSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.RectangularSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.TriangleSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.TrigSeriesWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.TimeSeriesIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.Timeseries.TrapezoidalTimeSeriesIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Timeseries.SimpsonTimeSeriesIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Timeseries.TimeSeriesIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.DamageModels.DamageModelWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.DamageModels.HystereticEnergyWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DamageModels.DamageModelWrapper - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.DamageModels.KratzigWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DamageModels.DamageModelWrapper - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.DamageModels.MehannyWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DamageModels.DamageModelWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.DamageModels.NormalizedPeakWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DamageModels.DamageModelWrapper - Void .ctor(Int32, Double, Double, System.Enum): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.DamageModels.ParkAngWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DamageModels.DamageModelWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.RecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - Methods: - GetStreamHeader(): PrivateScope, Public, HideBySig - CloseOutputStreamHandler(): PrivateScope, Public, HideBySig - GetFilename(): PrivateScope, Public, HideBySig -Class OpenSees.Recorders.DamageRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(Int32, OpenSees.IDWrapper, Int32, OpenSees.DamageModels.DamageModelWrapper, OpenSees.Components.BaseDomainWrapper, Boolean, Double, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.NodeRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, OpenSees.IDWrapper, Int32, System.String, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.DriftRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, OpenSees.IDWrapper, Int32, Int32, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper, OpenSees.IDWrapper, Int32, Int32, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.ElementRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, System.String[], Boolean, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper, System.String[], Boolean, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Double, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.EnvelopeDriftRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, OpenSees.IDWrapper, Int32, Int32, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.EnvelopeElementRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, System.String[], OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper, System.String[], OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Double, Boolean, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.EnvelopeNodeRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, OpenSees.IDWrapper, System.String, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper, OpenSees.IDWrapper, System.String, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Double, Boolean, OpenSees.Components.Timeseries.TimeSeriesWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.MaxNodeDispRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(Int32, OpenSees.IDWrapper, OpenSees.Components.BaseDomainWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.NormElementRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, System.String[], Boolean, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper, System.String[], Boolean, OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Double, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.NormEnvelopeElementRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(OpenSees.IDWrapper, System.String[], OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.IDWrapper, System.String[], OpenSees.Components.BaseDomainWrapper, OpenSees.Handlers.OPS_StreamWrapper, Double, Boolean, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.PatternRecorderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.RecorderWrapper - Void .ctor(Int32, OpenSees.Components.BaseDomainWrapper, System.String, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Constraints.SP_ConstraintWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DomainComponentWrapper - Void .ctor(Int32, Int32, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetNodeTag(): PrivateScope, Public, HideBySig - GetDOF_Number(): PrivateScope, Public, HideBySig - GetValue(): PrivateScope, Public, HideBySig -Class OpenSees.Components.Constraints.ImposedMotionSPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Constraints.SP_ConstraintWrapper - Void .ctor(Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Constraints.ImposedMotionSP1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Constraints.SP_ConstraintWrapper - Void .ctor(Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Constraints.MP_ConstraintWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DomainComponentWrapper - Void .ctor(Int32, Int32, OpenSees.MatrixWrapper, OpenSees.IDWrapper, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.IDWrapper, OpenSees.IDWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.LoadWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.DomainComponentWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.NodalLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.LoadWrapper - Void .ctor(Int32, Int32, OpenSees.VectorWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetTag(): PrivateScope, Public, Virtual, HideBySig - GetNodeTag(): PrivateScope, Public, HideBySig -Class OpenSees.Components.Loads.ElementalLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.LoadWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetTag(): PrivateScope, Public, Virtual, HideBySig -Class OpenSees.Components.Loads.Beam2dPartialUniformLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam2dPointLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam2dTempLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam2dThermalActionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, OpenSees.Components.Timeseries.TimeSeriesWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam2dUniformLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam3dPointLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam3dThermalActionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, OpenSees.Components.Timeseries.TimeSeriesWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.Beam3dUniformLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.BrickSelfWeightWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.ShellThermalActionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, OpenSees.Components.Timeseries.TimeSeriesWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.NodalThermalActionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.NodalLoadWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, OpenSees.Components.Timeseries.TimeSeriesWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.VectorWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.SelfWeightWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.SurfaceLoaderWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.Loads.ThermalActionWrapperWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Loads.ElementalLoadWrapper - Void .ctor(Int32, Int32, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Components.Loads.NodalThermalActionWrapper, OpenSees.Components.Loads.NodalThermalActionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.GroundMotions.GroundMotionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(OpenSees.Components.Timeseries.TimeSeriesWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper, OpenSees.Components.Timeseries.TimeSeriesIntegratorWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - GetDuration(): PrivateScope, Public, HideBySig - GetPeakAccel(): PrivateScope, Public, HideBySig - GetPeakVel(): PrivateScope, Public, HideBySig - GetPeakDisp(): PrivateScope, Public, HideBySig - GetAccel(Double): PrivateScope, Public, HideBySig - GetVel(Double): PrivateScope, Public, HideBySig - GetDisp(Double): PrivateScope, Public, HideBySig - SetIntegrator(TimeSeriesIntegratorWrapper): PrivateScope, Public, HideBySig - Integrate(TimeSeriesWrapper, Double): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.GroundMotions.GroundMotionRecordWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.GroundMotions.GroundMotionWrapper - Void .ctor(System.String, System.String, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(System.String, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.GroundMotions.InterpolatedGroundMotionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.GroundMotions.GroundMotionWrapper - Void .ctor(OpenSees.Components.GroundMotions.GroundMotionWrapper[], OpenSees.VectorWrapper, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.LoadPatterns.LoadPatternWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.DomainComponentWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - SetTimeSeries(TimeSeriesWrapper): PrivateScope, Public, HideBySig - GetTimeSeries(): PrivateScope, Public, HideBySig - AddMotion(GroundMotionWrapper, Int32): PrivateScope, Public, HideBySig - GetTag(): PrivateScope, Public, Virtual, HideBySig - GetNodalLoads(): PrivateScope, Public, HideBySig - GetSPs(): PrivateScope, Public, HideBySig - GetElementalLoads(): PrivateScope, Public, HideBySig - RemoveNodalLoad(Int32): PrivateScope, Public, HideBySig - RemoveElementalLoad(Int32): PrivateScope, Public, HideBySig - RemoveSP_Constraint(Int32): PrivateScope, Public, HideBySig - GetLoadFactor(): PrivateScope, Public, HideBySig - ClearAll(): PrivateScope, Public, HideBySig -Class OpenSees.Components.LoadPatterns.EarthquakePatternWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Components.LoadPatterns.LoadPatternWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.LoadPatterns.UniformExcitationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.LoadPatterns.EarthquakePatternWrapper - Void .ctor(Int32, OpenSees.Components.GroundMotions.GroundMotionWrapper, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.LoadPatterns.FireLoadPatternWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.LoadPatterns.LoadPatternWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - SetFireTimeSeries(TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper, TimeSeriesWrapper): PrivateScope, Public, HideBySig -Class OpenSees.Components.LoadPatterns.MultiSupportPatternWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.LoadPatterns.LoadPatternWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Components.DomainClearAllArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainAddNodeEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.NodeWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.NodeWrapper Node : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainRemoveNodeEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.NodeWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.NodeWrapper Node : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainAddElementEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Elements.ElementWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Elements.ElementWrapper Element : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainRemoveElementEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Elements.ElementWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Elements.ElementWrapper Element : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainAddSPEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.Constraints.SP_ConstraintWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.Constraints.SP_ConstraintWrapper sp : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainRemoveSPEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.Constraints.SP_ConstraintWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.Constraints.SP_ConstraintWrapper sp : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainAddMPEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.Constraints.MP_ConstraintWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.Constraints.MP_ConstraintWrapper mp : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainRemoveMPEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.Constraints.MP_ConstraintWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.Constraints.MP_ConstraintWrapper mp : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainAddLoadPatternEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.LoadPatterns.LoadPatternWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.LoadPatterns.LoadPatternWrapper mp : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainRemoveLoadPatternEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Components.LoadPatterns.LoadPatternWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Components.LoadPatterns.LoadPatternWrapper mp : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainAddRecorderEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Recorders.RecorderWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Recorders.RecorderWrapper rec : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainRemoveRecorderEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Recorders.RecorderWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Recorders.RecorderWrapper rec : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Components.DomainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.BaseDomainWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Events: - System.EventHandler`1[OpenSees.Components.DomainClearAllArgs] ClearAllHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainRemoveRecorderEventArgs] RemoveRecorderEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainAddRecorderEventArgs] AddRecorderEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainRemoveLoadPatternEventArgs] RemoveLoadPatternEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainAddLoadPatternEventArgs] AddLoadPatternEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainRemoveMPEventArgs] RemoveMPEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainAddMPEventArgs] AddMPEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainRemoveSPEventArgs] RemoveSPEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainAddSPEventArgs] AddSPEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainRemoveElementEventArgs] RemoveElementEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainAddElementEventArgs] AddElementEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainRemoveNodeEventArgs] RemoveNodeEventHandler: SpecialName - System.EventHandler`1[OpenSees.Components.DomainAddNodeEventArgs] AddNodeEventHandler: SpecialName - Methods: - add_ClearAllHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_ClearAllHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - AddNode(NodeWrapper): PrivateScope, Public, HideBySig - AddNode(NodeWrapper[]): PrivateScope, Public, HideBySig - AddElement(ElementWrapper): PrivateScope, Public, HideBySig - AddElement(ElementWrapper[]): PrivateScope, Public, HideBySig - AddSP_Constraint(SP_ConstraintWrapper): PrivateScope, Public, HideBySig - AddSP_Constraint(SP_ConstraintWrapper[]): PrivateScope, Public, HideBySig - AddMP_Constraint(MP_ConstraintWrapper): PrivateScope, Public, HideBySig - AddMP_Constraint(MP_ConstraintWrapper[]): PrivateScope, Public, HideBySig - AddLoadPattern(LoadPatternWrapper): PrivateScope, Public, HideBySig - AddNodalLoad(NodalLoadWrapper[], Int32): PrivateScope, Public, HideBySig - AddNodalLoad(NodalLoadWrapper, Int32): PrivateScope, Public, HideBySig - AddElementLoad(ElementalLoadWrapper, Int32): PrivateScope, Public, HideBySig - AddRecorder(RecorderWrapper): PrivateScope, Public, HideBySig - RemoveRecorders(): PrivateScope, Public, HideBySig - GetPhysicalBounds(): PrivateScope, Public, HideBySig - ClearAll(): PrivateScope, Public, HideBySig - RemoveElement(Int32): PrivateScope, Public, HideBySig - RemoveNode(Int32): PrivateScope, Public, HideBySig - RemoveLoadPattern(Int32): PrivateScope, Public, HideBySig - GetNode(Int32): PrivateScope, Public, HideBySig - GetElement(Int32): PrivateScope, Public, HideBySig - GetLoadPattern(Int32): PrivateScope, Public, HideBySig - GetNumNodes(): PrivateScope, Public, HideBySig - GetNodes(): PrivateScope, Public, HideBySig - GetRecorders(): PrivateScope, Public, HideBySig - GetNumElements(): PrivateScope, Public, HideBySig - GetElements(): PrivateScope, Public, HideBySig - GetNumLoadPatterns(): PrivateScope, Public, HideBySig - GetLoadPatterns(): PrivateScope, Public, HideBySig - RevertToStart(): PrivateScope, Public, HideBySig - RevertToLastCommit(): PrivateScope, Public, HideBySig - GetSPs(): PrivateScope, Public, HideBySig - GetMPs(): PrivateScope, Public, HideBySig - CreateRigidDiaphragm(Int32, IDWrapper, Int32): PrivateScope, Public, HideBySig - CreateRigidBeam(Int32, Int32): PrivateScope, Public, HideBySig - CreateRigidRod(Int32, Int32): PrivateScope, Public, HideBySig - Print(Int32): PrivateScope, Public, HideBySig - CalculateNodalReactions(Int32): PrivateScope, Public, HideBySig - SetLoadConst(): PrivateScope, Public, HideBySig - SetCurrentTime(Double): PrivateScope, Public, HideBySig - SetCommittedTime(Double): PrivateScope, Public, HideBySig - SetMass(Int32[], MatrixWrapper): PrivateScope, Public, HideBySig - SetMass(Int32, MatrixWrapper): PrivateScope, Public, HideBySig - SetRayleighDampingFactors(Double, Double, Double, Double): PrivateScope, Public, HideBySig - GetTime(): PrivateScope, Public, HideBySig - GetEigenValues(): PrivateScope, Public, HideBySig - add_AddNodeEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddNodeEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveNodeEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveNodeEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddElementEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddElementEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveElementEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveElementEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddSPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddSPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveSPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveSPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddMPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddMPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveMPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveMPEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddLoadPatternEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddLoadPatternEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveLoadPatternEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveLoadPatternEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddRecorderEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddRecorderEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveRecorderEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveRecorderEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName -Class OpenSees.Handlers.ConstraintHandlerWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Handlers.PlainHandlerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.ConstraintHandlerWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.TransformationConstraintHandlerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.ConstraintHandlerWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.LagrangeConstraintHandlerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.ConstraintHandlerWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Handlers.PenaltyConstraintHandlerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Handlers.ConstraintHandlerWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.GraphNumberers.GraphNumbererWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.GraphNumberers.RCMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.GraphNumberers.GraphNumbererWrapper - Void .ctor(Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Numberers.DOF_NumbererWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(OpenSees.GraphNumberers.GraphNumbererWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Numberers.PlainNumbererWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Numberers.DOF_NumbererWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.AnalysisModelWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - GetNumEqn(): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Systems.Linears.SystemOfEqnWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Systems.Linears.LinearSOEWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.SystemOfEqnWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Eigens.EigenSOEWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.IntegratorWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.IncrementalIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.IntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.StaticIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.IncrementalIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.LoadControlWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Double, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.DisplacementControlWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Int32, Int32, Double, OpenSees.Components.DomainWrapper, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.ArcLengthWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.ArcLength1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.HSConstraintWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.LoadPathWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.MinUnbalDispNormWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Double, Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Static.QuadraticMethodWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Static.StaticIntegratorWrapper - Void .ctor(Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.TransientIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.IncrementalIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.NewmarkWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Boolean, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.AlphaOSWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.AlphaOS_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.AlphaOSGeneralizedWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.AlphaOSGeneralized_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.BackwardEulerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CentralDifferenceWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CentralDifferenceAlternativeWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CentralDifferenceNoDampingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CollocationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CollocationHSFixedNumIterWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CollocationHSIncrLimitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.CollocationHSIncrReductWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.GeneralizedAlphaWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHT_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTExplicitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTExplicit_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTGeneralizedWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTGeneralized_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTGeneralizedExplicitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTGeneralizedExplicit_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTHSFixedNumIterWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Int32, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Int32, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTHSFixedNumIter_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Int32, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Int32, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTHSIncrLimitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTHSIncrLimit_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HHTHSIncrReductWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.HouboltWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.KRAlphaExplicitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.KRAlphaExplicit_TPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.Newmark1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double, Double, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.NewmarkExplicitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.NewmarkHSFixedNumIterWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Int32, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.NewmarkHSIncrLimitWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.NewmarkHSIncrReductWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.ParkLMS3Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.PFEMIntegratorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.TRBDF2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.TRBDF3Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Integrators.Transient.WilsonThetaWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Integrators.Transient.TransientIntegratorWrapper - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Analysis.AnalysisWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Analysis.StaticAnalysisWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Analysis.AnalysisWrapper - Void .ctor(OpenSees.Components.DomainWrapper, OpenSees.Handlers.ConstraintHandlerWrapper, OpenSees.Numberers.DOF_NumbererWrapper, OpenSees.AnalysisModelWrapper, OpenSees.Algorithms.EquiSolnAlgoWrapper, OpenSees.Systems.Linears.LinearSOEWrapper, OpenSees.Integrators.Static.StaticIntegratorWrapper, OpenSees.ConvergenceTests.ConvergenceTestWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - Analyze(Int32): PrivateScope, Public, HideBySig - SetEigenSOE(EigenSOEWrapper): PrivateScope, Public, HideBySig - SetIntegrator(StaticIntegratorWrapper): PrivateScope, Public, HideBySig - SetAlgorithm(EquiSolnAlgoWrapper): PrivateScope, Public, HideBySig - SetConvergenceTest(ConvergenceTestWrapper): PrivateScope, Public, HideBySig - SetLinearSOE(LinearSOEWrapper): PrivateScope, Public, HideBySig - SeNumberer(DOF_NumbererWrapper): PrivateScope, Public, HideBySig - Eigen(Int32, Boolean(HasFieldMarshal), Boolean(HasFieldMarshal)): PrivateScope, Public, HideBySig - Wipe(): PrivateScope, Public, HideBySig (Obsolete) - ClearAll(): PrivateScope, Public, HideBySig -Class OpenSees.Analysis.TransientAnalysisWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Analysis.AnalysisWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - Analyze(Int32, Double): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask -Class OpenSees.Analysis.DirectIntegrationAnalysisWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Analysis.TransientAnalysisWrapper - Void .ctor(OpenSees.Components.DomainWrapper, OpenSees.Handlers.ConstraintHandlerWrapper, OpenSees.Numberers.DOF_NumbererWrapper, OpenSees.AnalysisModelWrapper, OpenSees.Algorithms.EquiSolnAlgoWrapper, OpenSees.Systems.Linears.LinearSOEWrapper, OpenSees.Integrators.Transient.TransientIntegratorWrapper, OpenSees.ConvergenceTests.ConvergenceTestWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - SetEigenSOE(EigenSOEWrapper): PrivateScope, Public, HideBySig - Analyze(Int32, Double): PrivateScope, Public, Virtual, HideBySig - Eigen(Int32, Boolean(HasFieldMarshal), Boolean(HasFieldMarshal)): PrivateScope, Public, HideBySig - SetIntegrator(TransientIntegratorWrapper): PrivateScope, Public, HideBySig - SetAlgorithm(EquiSolnAlgoWrapper): PrivateScope, Public, HideBySig - SetConvergenceTest(ConvergenceTestWrapper): PrivateScope, Public, HideBySig - SetLinearSOE(LinearSOEWrapper): PrivateScope, Public, HideBySig - SeNumberer(DOF_NumbererWrapper): PrivateScope, Public, HideBySig - Wipe(): PrivateScope, Public, HideBySig (Obsolete) - ClearAll(): PrivateScope, Public, HideBySig -Class OpenSees.Analysis.PFEMAnalysisAnalysisWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Analysis.TransientAnalysisWrapper - Void .ctor(OpenSees.Components.DomainWrapper, OpenSees.Handlers.ConstraintHandlerWrapper, OpenSees.Numberers.DOF_NumbererWrapper, OpenSees.AnalysisModelWrapper, OpenSees.Algorithms.EquiSolnAlgoWrapper, OpenSees.Systems.Linears.LinearSOEWrapper, OpenSees.Integrators.Transient.TransientIntegratorWrapper, OpenSees.ConvergenceTests.ConvergenceTestWrapper, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - Analyze(): PrivateScope, Public, Virtual, HideBySig - Wipe(): PrivateScope, Public, HideBySig -Class OpenSees.Analysis.VariableTimeStepDirectIntegrationAnalysisWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Analysis.TransientAnalysisWrapper - Void .ctor(OpenSees.Components.DomainWrapper, OpenSees.Handlers.ConstraintHandlerWrapper, OpenSees.Numberers.DOF_NumbererWrapper, OpenSees.AnalysisModelWrapper, OpenSees.Algorithms.EquiSolnAlgoWrapper, OpenSees.Systems.Linears.LinearSOEWrapper, OpenSees.Integrators.Transient.TransientIntegratorWrapper, OpenSees.ConvergenceTests.ConvergenceTestWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - Analyze(Int32, Double, Double, Double, Int32): PrivateScope, Public, Virtual, HideBySig - Wipe(): PrivateScope, Public, HideBySig -Struct OpenSees.Handlers.OpenModeWrapper: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Handlers.OpenModeWrapper OVERWRITE = 0 : Public, Static, Literal, HasDefault - OpenSees.Handlers.OpenModeWrapper APPEND = 1 : Public, Static, Literal, HasDefault -Struct OpenSees.Handlers.FloatFieldWrapper: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Handlers.FloatFieldWrapper FIXEDD = 0 : Public, Static, Literal, HasDefault - OpenSees.Handlers.FloatFieldWrapper SCIENTIFIC = 1 : Public, Static, Literal, HasDefault -Struct OpenSees.Recorders.InfoTypeWrapper: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Recorders.InfoTypeWrapper UnknownType = 0 : Public, Static, Literal, HasDefault - OpenSees.Recorders.InfoTypeWrapper IntType = 1 : Public, Static, Literal, HasDefault - OpenSees.Recorders.InfoTypeWrapper DoubleType = 2 : Public, Static, Literal, HasDefault - OpenSees.Recorders.InfoTypeWrapper IdType = 3 : Public, Static, Literal, HasDefault - OpenSees.Recorders.InfoTypeWrapper VectorType = 4 : Public, Static, Literal, HasDefault - OpenSees.Recorders.InfoTypeWrapper MatrixType = 5 : Public, Static, Literal, HasDefault -Struct OpenSees.DamageModels.DamageTypeWrapper: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.DamageModels.DamageTypeWrapper Force = 0 : Public, Static, Literal, HasDefault - OpenSees.DamageModels.DamageTypeWrapper Deformation = 1 : Public, Static, Literal, HasDefault - OpenSees.DamageModels.DamageTypeWrapper PlasticDefo = 2 : Public, Static, Literal, HasDefault - OpenSees.DamageModels.DamageTypeWrapper TotalEnergy = 3 : Public, Static, Literal, HasDefault - OpenSees.DamageModels.DamageTypeWrapper PlasticEnergy = 4 : Public, Static, Literal, HasDefault -Class OpenSees.Materials.Uniaxials.LimitCurveWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Materials.Uniaxials.AxialCurveWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.LimitCurveWrapper - Void .ctor(Int32, Int32, OpenSees.Components.BaseDomainWrapper, Double, Double, Double, Int32, Int32, Int32, Int32, Int32, Int32, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.RotationShearCurveWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.LimitCurveWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, Double, Double, Double, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.Components.BaseDomainWrapper, OpenSees.Elements.BaseElementWrapper, OpenSees.Components.NodeWrapper, OpenSees.Components.NodeWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ThreePointCurveWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.LimitCurveWrapper - Void .ctor(Int32, Int32, OpenSees.Components.BaseDomainWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.HystereticBackboneWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Materials.Uniaxials.ArctangentBackboneWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ManderBackboneWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.RaynorBackboneWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ReeseSandBackboneWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ReeseSoftClayBackboneWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ReeseStiffClayBelowWSWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.TrilinearBackboneWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.HystereticBackboneWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BackboneMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.HystereticBackboneWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DrainMaterialWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Int32, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DrainBilinearMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.DrainMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DrainClough1MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.DrainMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DrainClough2MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.DrainMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DrainHardeningMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.DrainMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DrainPinch1MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.DrainMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasMaterialWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasBond1MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasBond2MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasConcr1MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasConcr2MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasConcr3MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasHardeningMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasHyster1MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasHyster2MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasSteel1MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FedeasSteel2MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PlasticDamageMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.FedeasMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.LimitStateMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.Materials.Uniaxials.LimitCurveWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PinchingLimitStateMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.Components.BaseDomainWrapper, OpenSees.Components.NodeWrapper, OpenSees.Components.NodeWrapper, OpenSees.Materials.Uniaxials.LimitCurveWrapper, OpenSees.Elements.BaseElementWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PySimple1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PySimple2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PySimple3Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.QzSimple1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.QzSimple2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.TzSimple1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.TzSimple2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.TzLiq1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.TzSimple1Wrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Components.BaseDomainWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Int32, Int32, OpenSees.Components.BaseDomainWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PyLiq1Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.PySimple1Wrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, OpenSees.Components.BaseDomainWrapper, OpenSees.Components.Timeseries.TimeSeriesWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Int32, Int32, OpenSees.Components.BaseDomainWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BilinWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Bilin02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BilinearWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CloughWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CloughDamageWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CloughHenryWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PinchingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PinchingDamageWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.AxialSpWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.AxialSpHDWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BarSlipMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BilinearOilDamperWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Bond_SP01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BoucWenMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.BoucWenOriginalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CableMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CastWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CFSSSWPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.CFSWSWPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete01WithSITCWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete02ThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete04Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete06Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Concrete07Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcreteCMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcreteDWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcreteECThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcreteSakaiKawashimaWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcretewBetaWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConfinedConcrete01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Int32, Double, Double, Int32, Double, Double, Int32, Int32, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.DamperMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Dodd_RestrepoWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ECC01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Elastic2MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ElasticBilinWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ElasticMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ElasticMultiLinearWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ElasticPPMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ENTMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.EPPGapMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FatigueMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FRPConfinedConcreteWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.FRPConfinedConcrete02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.HardeningMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.HookGapWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.HyperbolicGapMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.HystereticMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ImpactMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.InitStrainMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.InitStressMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.KikuchiAikenHDRWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.KikuchiAikenLRBWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.MaxwellWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.MinMaxMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ModIMKPeakOrientedWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ModIMKPeakOriented02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ModIMKPinchingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ModIMKPinching02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.MultiLinearWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.NewUniaxialMaterialWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.OriginCenteredWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ParallelMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.PathIndependentMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Pinching4MaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.pyUCLAWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.RambergOsgoodSteelWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ReinforcingSteelWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ResilienceLowWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ResilienceMaterialHRWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SAWSMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SelfCenteringMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SeriesMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ShearPanelMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SimpleFractureMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SmoothPSConcreteWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.StainlessECThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel01ThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel02ThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel03Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.Steel4Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SteelBRBWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SteelECThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SteelMPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SteelMPFWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.UniaxialJ2PlasticityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ViscousDamperWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ViscousMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcreteL01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.ConcreteZ01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.SteelZ01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.TendonL01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Uniaxials.MDSetTrialStrain: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(Double, Double): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(Double, Double, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetStress: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetTangent: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetInitialTangent: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetStrain: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetDampTangent: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetStrainRate: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetRho: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDCommitState: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDRevertToLastCommit: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDRevertToStart: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDGetCopy: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.MDPrint: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.Uniaxials.ExternalUniaxialMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - SetLinks(MDSetTrialStrain, MDGetStress, MDGetTangent, MDGetInitialTangent, MDGetDampTangent, MDGetStrain, MDGetStrainRate, MDGetRho, MDCommitState, MDRevertToLastCommit, MDRevertToStart, MDGetCopy, MDPrint): PrivateScope, Public, HideBySig -Class OpenSees.Materials.NDMaterials.NDMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.MaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetTag(): PrivateScope, Public, Virtual, HideBySig - GetTangent(): PrivateScope, Public, HideBySig - GetTangentMatrixWrapper(): PrivateScope, Public, HideBySig - GetInitialTangent(): PrivateScope, Public, HideBySig - GetInitialTangentMatrixWrapper(): PrivateScope, Public, HideBySig - GetStress(): PrivateScope, Public, HideBySig - GetStressVectorWrapper(): PrivateScope, Public, HideBySig - GetStrain(): PrivateScope, Public, HideBySig - GetStrainVectorWrapper(): PrivateScope, Public, HideBySig - GetType(): PrivateScope, Public, HideBySig - GetTypeTag(): PrivateScope, Public, HideBySig - GetOrder(): PrivateScope, Public, HideBySig - CommitState(): PrivateScope, Public, HideBySig - RevertToLastCommit(): PrivateScope, Public, HideBySig - RevertToStart(): PrivateScope, Public, HideBySig - SetResponse(String[], OPS_StreamWrapper): PrivateScope, Public, HideBySig - GetResponse(Int32, InformationWrapper): PrivateScope, Public, HideBySig -Class OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticityWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticity3DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticityAxiSymmWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticityPlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.NDMaterials.MultiaxialCyclicPlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicMaterialThermalWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropic3DThermalWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ElasticIsotropicMaterialThermalWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicAxiSymmWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicBeamFiberWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicBeamFiber2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicPlaneStress2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicPlaneStrain2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicPlateFiberWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicThreeDimensionalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PressureDependentElastic3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FeapMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FeapMaterial01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FeapMaterial02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FeapMaterial03Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2PlasticityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2AxiSymmWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.J2PlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2BeamFiber2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2BeamFiber3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2CyclicBoundingSurfaceWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2PlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.J2PlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2PlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.J2PlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2PlasticityThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2PlateFiberWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.J2PlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2PlateFibreWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2ThreeDimensionalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.J2PlasticityWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.J2ThreeDimensionalThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.J2PlasticityThermalWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.MaterialCMMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FAFourSteelPCPlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FAFourSteelRCPlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FAPrestressedConcretePlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FAReinforcedConcretePlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PrestressedConcretePlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.RAFourSteelPCPlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.RAFourSteelRCPlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ReinforcedConcretePlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FluidSolidPorousMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.MultiYieldSurfaceClayWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PressureDependMultiYieldWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double[], Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PressureDependMultiYield02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double[], Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PressureIndependMultiYieldWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.BeamFiberMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.BeamFiberMaterial2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlaneStrainMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlaneStressLayeredMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double[], OpenSees.Materials.NDMaterials.NDMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlaneStressMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlaneStressRebarMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlaneStressSimplifiedJ2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlaneStressUserMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Int32, Double[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlateFiberMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlateFiberMaterialThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlateFromPlaneStressMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlateFromPlaneStressMaterialThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlateRebarMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlateRebarMaterialThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticIsotropicMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.AcousticMediumWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.BoundingCamClayWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.BoundingCamClay3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.BoundingCamClayPlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.DruckerPragerThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.DruckerPragerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.DruckerPrager3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.DruckerPragerWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CycLiqCPSPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CycLiqCPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CycLiqCPSP3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.CycLiqCPSPWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CycLiqCPPlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.CycLiqCPWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CycLiqCP3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.CycLiqCPWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ContactMaterial3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ContactMaterial2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ConcreteSWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CapPlasticityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.CycLiqCPSPPlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.CycLiqCPSPWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.DruckerPrager3DThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.DruckerPragerPlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.DruckerPragerWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticOrthotropicMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.DruckerPragerWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ElasticOrthotropicThreeDimensionalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ElasticOrthotropicMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.FSAMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.InitialStateAnalysisWrapperWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.InitStressNDMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, OpenSees.VectorWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.LinearCapWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ManzariDafaliasWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ManzariDafalias3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ManzariDafaliasWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ManzariDafalias3DROWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ManzariDafaliasWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ManzariDafaliasPlaneStrainWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ManzariDafaliasWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ManzariDafaliasPlaneStrainROWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ManzariDafaliasWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.ManzariDafaliasROWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.ManzariDafaliasWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlasticDamageConcrete3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PlasticDamageConcretePlaneStressWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PM4SandWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.PM4SiltWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.SimplifiedJ2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32, Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.NDMaterials.NDMD_GetCopy: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetCopy_Type: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(String): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(String, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_Print: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(Int32): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(Int32, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetRho: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_SetTrialStrain_V: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(VectorWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(VectorWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_SetTrialStrain_VR: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(VectorWrapper, VectorWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(VectorWrapper, VectorWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_SetTrialStrainIncr_V: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(VectorWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(VectorWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_SetTrialStrainIncr_VR: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(VectorWrapper, VectorWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(VectorWrapper, VectorWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetTangent: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetInitialTangent: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetStress: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetStrain: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_RevertToStart: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_CommitState: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_RevertToLastCommit: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetType: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.NDMD_GetOrder: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Materials.NDMaterials.ExternalNDMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.NDMaterials.NDMaterialWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - SetLinks(NDMD_SetTrialStrain_V, NDMD_SetTrialStrain_VR, NDMD_SetTrialStrainIncr_V, NDMD_SetTrialStrainIncr_VR, NDMD_GetTangent, NDMD_GetInitialTangent, NDMD_GetStress, NDMD_GetStrain, NDMD_RevertToStart, NDMD_CommitState, NDMD_RevertToLastCommit, NDMD_GetType, NDMD_GetOrder, NDMD_GetCopy, NDMD_GetCopy_Type, NDMD_Print, NDMD_GetRho): PrivateScope, Public, HideBySig -Class OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Materials.YieldSurfaces.YS_Evolution2DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.MaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper - Void .ctor(Int32, Int32, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.ExponReducingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.MultiLinearKpWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.NullPlasticMaterialWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.Attalla2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper - Void .ctor(Int32, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.ElTawil2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper - Void .ctor(Int32, Double, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.ElTawil2DUnSymWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.Hajjar2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper - Void .ctor(Int32, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.NullYS2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.Orbison2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YieldSurface_BC2DWrapper - Void .ctor(Int32, Double, Double, OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.BkStressLimSurface2DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YS_Evolution2DWrapper - Void .ctor(Int32, Int32, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.BoundingSurface2DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YS_Evolution2DWrapper - Void .ctor(Int32, Int32, Double, Double, Double, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.PlasticHardening2DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YS_Evolution2DWrapper - Void .ctor(Int32, Int32, Double, Double, Double, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.CombinedIsoKin2D01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardening2DWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.CombinedIsoKin2D02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.BkStressLimSurface2DWrapper - Void .ctor(Int32, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Boolean, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.Isotropic2D01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardening2DWrapper - Void .ctor(Int32, Double, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.Kinematic2D01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardening2DWrapper - Void .ctor(Int32, Double, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.Kinematic2D02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.BkStressLimSurface2DWrapper - Void .ctor(Int32, Double, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.NullEvolutionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.YS_EvolutionWrapper - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.PeakOriented2D01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.PlasticHardening2DWrapper - Void .ctor(Int32, Double, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.YieldSurfaces.PeakOriented2D02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.YieldSurfaces.BkStressLimSurface2DWrapper - Void .ctor(Int32, Double, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, OpenSees.Materials.YieldSurfaces.PlasticHardeningMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.FiberWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - Methods: - GetFiberStressResultants(): PrivateScope, Public, HideBySig - GetFiberTangentStiffContr(): PrivateScope, Public, HideBySig - GetArea(): PrivateScope, Public, HideBySig - GetFiberLocation(): PrivateScope, Public, HideBySig - GetMaterial(): PrivateScope, Public, HideBySig - GetNDMaterial(): PrivateScope, Public, HideBySig -Class OpenSees.Materials.Sections.Repres.UniaxialFiber2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.FiberWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.NDFiber2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.FiberWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.UniaxialFiber3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.FiberWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.NDFiber3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.FiberWrapper - Void .ctor(Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.PatchWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Materials.Sections.Repres.QuadPatchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.PatchWrapper - Void .ctor(Int32, Int32, Int32, OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.CircPatchWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.PatchWrapper - Void .ctor(Int32, Int32, Int32, OpenSees.VectorWrapper, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.ReinfLayerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Materials.Sections.Repres.StraightReinfLayerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.ReinfLayerWrapper - Void .ctor(Int32, Int32, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.CircReinfLayerWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.ReinfLayerWrapper - Void .ctor(Int32, Int32, Double, OpenSees.VectorWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.SectionRepresWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Repres.FiberSectionReprWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Repres.SectionRepresWrapper - Void .ctor(Int32, OpenSees.Materials.Sections.Repres.PatchWrapper[], OpenSees.Materials.Sections.Repres.ReinfLayerWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.SectionForceDeformationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.MaterialWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - GetTag(): PrivateScope, Public, Virtual, HideBySig - GetSectionDeformation(): PrivateScope, Public, HideBySig - GetStressResultant(): PrivateScope, Public, HideBySig - GetSectionTangent(): PrivateScope, Public, HideBySig - GetInitialTangent(): PrivateScope, Public, HideBySig - GetSectionFlexibility(): PrivateScope, Public, HideBySig - GetInitialFlexibility(): PrivateScope, Public, HideBySig - GetRho(): PrivateScope, Public, HideBySig -Class OpenSees.Materials.Sections.YieldSurfaceSection2dWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.YS_Section2D01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.YieldSurfaceSection2dWrapper - Void .ctor(Int32, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.YS_Section2D02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.YieldSurfaceSection2dWrapper - Void .ctor(Int32, Double, Double, Double, Double, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.BidirectionalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticMembranePlateSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticPlateSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticSection2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticSection3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticShearSection2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticShearSection3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticTubeSection3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ElasticWarpingShearSection2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Elliptical2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSection2dThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSection3dThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSectionGJWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSectionGJThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.GenericSection1dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Isolator2springWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.LayeredShellFiberSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, Double[], OpenSees.Materials.NDMaterials.NDMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.LayeredShellFiberSectionThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, Double[], OpenSees.Materials.NDMaterials.NDMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.MembranePlateFiberSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.MembranePlateFiberSectionThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Double, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.NDFiberSection2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.NDFiberSection3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.NDFiberSectionWarping2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.ParallelSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.SectionAggregatorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSection3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, OpenSees.Materials.Sections.Repres.FiberSectionReprWrapper, System.Collections.Generic.Dictionary`2[System.Int32,OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper], OpenSees.Materials.Sections.Repres.UniaxialFiber3dWrapper[], OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSection2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, OpenSees.Materials.Sections.Repres.FiberSectionReprWrapper, System.Collections.Generic.Dictionary`2[System.Int32,OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper], OpenSees.Materials.Sections.Repres.UniaxialFiber2dWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.FiberSection2dIntWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.SectionForceDeformationWrapper - Void .ctor(Int32, OpenSees.Materials.Sections.Repres.FiberWrapper[], OpenSees.Materials.Sections.Repres.FiberWrapper[], Int32, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(System.Enum): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - GetSectionPositions(Int32, Double): PrivateScope, Public, HideBySig - GetSectionWeights(Int32, Double): PrivateScope, Public, HideBySig - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Elements.BeamIntegrations.DistHingeIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Double, Double, OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.FixedLocationBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.HingeEndpointBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.HingeMidpointBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.HingeRadauBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.HingeRadauTwoBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.LowOrderBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.MidDistanceBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.RegularizedHingeIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.UserDefinedBeamIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamIntegrations.UserDefinedHingeIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.AdapterWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.IDWrapper, OpenSees.IDWrapper, OpenSees.MatrixWrapper, Int32, Int32, OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ActuatorCorotWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ActuatorWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Struct OpenSees.Elements.BeamIntegrations.BeamIntegrationType: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Elements.BeamIntegrations.BeamIntegrationType Lobatto = 0 : Public, Static, Literal, HasDefault - OpenSees.Elements.BeamIntegrations.BeamIntegrationType Legendre = 1 : Public, Static, Literal, HasDefault - OpenSees.Elements.BeamIntegrations.BeamIntegrationType Radau = 2 : Public, Static, Literal, HasDefault - OpenSees.Elements.BeamIntegrations.BeamIntegrationType CompositeSimpson = 3 : Public, Static, Literal, HasDefault - OpenSees.Elements.BeamIntegrations.BeamIntegrationType NewtonCotes = 4 : Public, Static, Literal, HasDefault - OpenSees.Elements.BeamIntegrations.BeamIntegrationType Trapezoidal = 5 : Public, Static, Literal, HasDefault -Class OpenSees.Elements.CrdTransfs.CrdTransfWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - Methods: - GetInitialLength(): PrivateScope, Public, HideBySig - GetDeformedLength(): PrivateScope, Public, HideBySig - GetLocalAxes(VectorWrapper, VectorWrapper, VectorWrapper): PrivateScope, Public, HideBySig - getBasicTrialDisp(): PrivateScope, Public, HideBySig - getBasicIncrDisp(): PrivateScope, Public, HideBySig - getBasicIncrDeltaDisp(): PrivateScope, Public, HideBySig - getBasicTrialVel(): PrivateScope, Public, HideBySig - getBasicTrialAccel(): PrivateScope, Public, HideBySig -Class OpenSees.Elements.CrdTransfs.PDeltaCrdTransf2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.LinearCrdTransf2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.CorotCrdTransf2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.LinearCrdTransf3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.CorotCrdTransf3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.PDeltaCrdTransf3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.CorotCrdTransfWarping2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CrdTransfs.LinearCrdTransf2dIntWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.CrdTransfs.CrdTransfWrapper - Void .ctor(OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Interface OpenSees.Elements.ISectionForceDeformationBeamColumnWrapper: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, BeforeFieldInit - Methods: - GetSections(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract - GetBeamIntegration(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract - GetCrdTransf(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract -Class OpenSees.Elements.AxEqDispBeamColumn2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.DispBeamColumn2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.Elements.ISectionForceDeformationBeamColumnWrapper - Methods: - GetSections(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetBeamIntegration(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetCrdTransf(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask -Class OpenSees.Elements.DispBeamColumn2dThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.DispBeamColumn2dWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.DispBeamColumn3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.Elements.ISectionForceDeformationBeamColumnWrapper - Methods: - GetSections(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetBeamIntegration(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetCrdTransf(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask -Class OpenSees.Elements.DispBeamColumn3dThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.DispBeamColumn3dWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.DispBeamColumn2dIntWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticBeam2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Int32, Int32, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticBeam3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Int32, Int32, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticTimoshenkoBeam2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticTimoshenkoBeam3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ModElasticBeam2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Int32, Int32, Double, Double, Double, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticForceBeamColumn2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticForceBeamColumn3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticForceBeamColumnWarping2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ForceBeamColumn2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.Elements.ISectionForceDeformationBeamColumnWrapper - Methods: - GetSections(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetBeamIntegration(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetCrdTransf(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask -Class OpenSees.Elements.ForceBeamColumn2dThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ForceBeamColumn3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.Elements.ISectionForceDeformationBeamColumnWrapper - Methods: - GetSections(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetBeamIntegration(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask - GetCrdTransf(): PrivateScope, Public, Final, Virtual, HideBySig, VtableLayoutMask -Class OpenSees.Elements.ForceBeamColumnWarping2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ForceBeamColumnCBDI2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper[], OpenSees.Elements.BeamIntegrations.BeamIntegrationWrapper, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, Double, Boolean, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.MVLEMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], Double[], Double[], Double[], Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SFI_MVLEMWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper[], Double[], Double[], Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericBearingBoucWen2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Double, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericBearingBoucWen3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Double, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericBearingBoucWenMod3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericBearingPlasticity2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericBearingPlasticity3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericBearingUFRP2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElastomericXWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.HDRWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.LeadRubberXWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FrictionModelWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Elements.CoulombWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.FrictionModelWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.VelDependentWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.FrictionModelWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.VelDepMultiLinearWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.FrictionModelWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.VelNormalFrcDepWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.FrictionModelWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.VelPressureDepWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.FrictionModelWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FlatSliderSimple2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FlatSliderSimple3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Double, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FPBearingPTVWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Int32, Double, Int32, Double, Double, Int32, Double, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Double, Int32, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Int32, Double, Int32, Double, Double, Int32, Double, Double, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.MultiFP2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.RJWatsonEQS2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Double, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.RJWatsonEQS3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Double, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SingleFPSimple2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Int32, Double, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SingleFPSimple3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Int32, Int32, Double, Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper, Double, Double, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TFP_BearingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double[], Double[], Double[], Double[], Double[], Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TFP_Bearing2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double[], Double[], Double[], Double[], Double[], Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TPB1DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double[], Double[], Double[], Double[], Double[], Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TripleFrictionPendulumWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Elements.FrictionModelWrapper[], OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.KikuchiBearingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, Double, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Boolean, Boolean, Double, Double, Boolean, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.MultipleNormalSpringWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, Double, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.MultipleShearSpringWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], Int32, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.YamamotoBiaxialHDRWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, Double, Double, Double, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BbarBrickWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BbarBrickWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BrickWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Twenty_Node_BrickWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CatenaryCableWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.DEle_GetClassType: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetNumExternalNodes: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetExternalNodes: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetNodePtrs: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetNumDOF: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_SetDomain: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(DomainWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(DomainWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_CommitState: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_RevertToLastCommit: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_RevertToStart: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_Update: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetTangentStiff: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetInitialStiff: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetDamp: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetMass: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_ZeroLoad: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_AddLoad: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(ElementalLoadWrapper, Double): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(ElementalLoadWrapper, Double, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_AddInertiaLoadToUnbalance: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(VectorWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(VectorWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetResistingForce: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetResistingForceIncInertia: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_Print: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(Int32): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(Int32, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_SetResponse: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(String[], OPS_StreamWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(String[], OPS_StreamWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.DEle_GetResponse: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.MulticastDelegate - Void .ctor(System.Object, IntPtr): PrivateScope, Public, SpecialName, RTSpecialName - Methods: - Invoke(Int32, InformationWrapper): PrivateScope, Public, Final, Virtual, VtableLayoutMask - BeginInvoke(Int32, InformationWrapper, AsyncCallback, Object): PrivateScope, Public, Final, Virtual, VtableLayoutMask - EndInvoke(IAsyncResult): PrivateScope, Public, Final, Virtual, VtableLayoutMask -Class OpenSees.Elements.ExternalElementWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Methods: - SetLinks(DEle_GetClassType, DEle_GetNumExternalNodes, DEle_GetNodePtrs, DEle_GetExternalNodes, DEle_GetNumDOF, DEle_SetDomain, DEle_CommitState, DEle_RevertToLastCommit, DEle_RevertToStart, DEle_Update, DEle_GetTangentStiff, DEle_GetInitialStiff, DEle_GetDamp, DEle_GetMass, DEle_ZeroLoad, DEle_AddLoad, DEle_AddInertiaLoadToUnbalance, DEle_GetResistingForce, DEle_GetResistingForceIncInertia, DEle_Print, DEle_SetResponse, DEle_GetResponse): PrivateScope, Public, HideBySig - GetBaseElementDamp(): PrivateScope, Public, HideBySig -Class OpenSees.Elements.GenericClientWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.IDWrapper, OpenSees.IDWrapper, Int32, System.String, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.IDWrapper, OpenSees.IDWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.GenericCopyWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, OpenSees.IDWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.MP_Joint2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Constraints.MP_ConstraintWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Components.DomainWrapper, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.MP_Joint3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Components.Constraints.MP_ConstraintWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Components.DomainWrapper, Int32, Int32, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamColumnJoint2dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamColumnJoint3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ElasticTubularJointWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Joint2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Components.DomainWrapper, Int32, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper, OpenSees.DamageModels.DamageModelWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Components.DomainWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Joint3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Components.DomainWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.PY_Macro2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FourNodeTetrahedronWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Tri31Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TwoNodeLinkWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.IDWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.IDWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BBarBrickUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BBarFourNodeQuadUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BrickUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FourNodeQuadUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.NineFourNodeQuadUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamContact2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamContact2DpWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamContact3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Double, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamContact3DpWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, OpenSees.Elements.CrdTransfs.CrdTransfWrapper, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamEndContact3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Double, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.BeamEndContact3DpWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Brick8FiberOverlayWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.PileToe3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, OpenSees.Elements.CrdTransfs.CrdTransfWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.QuadBeamEmbedContactWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SimpleContact2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SimpleContact3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SSPbrickWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SSPbrickUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SSPquadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SSPquadUPWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.AC3D8HexWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ASI3D8QuadWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.AV3D4QuadWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.VS3D4QuadWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Struct OpenSees.Elements.PlaneElementType: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Elements.PlaneElementType PlaneStrain = 0 : Public, Static, Literal, HasDefault - OpenSees.Elements.PlaneElementType PlaneStress = 1 : Public, Static, Literal, HasDefault -Class OpenSees.Elements.Quad4FiberOverlayWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.SurfaceLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TriSurfaceLoadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ConstantPressureVolumeQuadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.EnhancedQuadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FourNodeQuadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FourNodeQuadWithSensitivityWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.FourNodeQuad3dWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper, System.Enum, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.NineNodeMixedQuadWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Struct OpenSees.Elements.FourNodeQuadType: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Elements.FourNodeQuadType PlaneStrain = 0 : Public, Static, Literal, HasDefault - OpenSees.Elements.FourNodeQuadType PlaneStress = 1 : Public, Static, Literal, HasDefault -Class OpenSees.Elements.ShellANDeSWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellDKGQWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellDKGTWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellMITC4Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, Boolean): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellMITC4ThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellMITC9Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellNLDKGQWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellNLDKGQThermalWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ShellNLDKGTWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CorotTrussWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CorotTruss2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CorotTrussSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.N4BiaxialTrussWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TrussWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Truss2Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(Int32, Int32, Int32, Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Double, Double, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.TrussSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.Materials.Sections.SectionForceDeformationWrapper, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CyclicModelWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.TaggedObjectWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper -Class OpenSees.Elements.BilinearCyclicWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.CyclicModelWrapper - Void .ctor(Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.LinearCyclicWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.CyclicModelWrapper - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.QuadraticCyclicWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.CyclicModelWrapper - Void .ctor(Int32, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.UpdatedLagrangianBeam2DWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.InelasticYS2DGNLWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Elements.UpdatedLagrangianBeam2DWrapper - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Elastic2dGNLWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.UpdatedLagrangianBeam2DWrapper - Void .ctor(Int32, Double, Double, Double, Int32, Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Inelastic2DYS01Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.InelasticYS2DGNLWrapper - Void .ctor(Int32, Double, Double, Double, Int32, Int32, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Inelastic2DYS02Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.InelasticYS2DGNLWrapper - Void .ctor(Int32, Double, Double, Double, Int32, Int32, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Elements.CyclicModelWrapper, Double, Double, Double, Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.Inelastic2DYS03Wrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.InelasticYS2DGNLWrapper - Void .ctor(Int32, Double, Double, Double, Double, Double, Int32, Int32, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, OpenSees.Materials.YieldSurfaces.YieldSurface_BCWrapper, Int32, Boolean, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.CoupledZeroLengthWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.IDWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Int32, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper[], OpenSees.IDWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthContact2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Double, Double, Double, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthContact3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthContactNTS2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, OpenSees.IDWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthImpact3DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthInterface2DWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, Int32, OpenSees.IDWrapper, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthNDWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.Materials.NDMaterials.NDMaterialWrapper, OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthRockingWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, Double, Double, Double, Double, Double, Double, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Elements.ZeroLengthSectionWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Elements.ElementWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Int32, Int32, Int32, Int32, OpenSees.VectorWrapper, OpenSees.VectorWrapper, OpenSees.Materials.Sections.SectionForceDeformationWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Integrations.SectionIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Materials.Sections.Integrations.RCSectionIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Integrations.SectionIntegrationWrapper - Void .ctor(Double, Double, Double, Double, Double, Double, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Integrations.RCTBeamSectionIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Integrations.SectionIntegrationWrapper - Void .ctor(Double, Double, Double, Double, Double, Double, Double, Double, Int32, Int32, Int32, Int32, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Materials.Sections.Integrations.WideFlangeSectionIntegrationWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Materials.Sections.Integrations.SectionIntegrationWrapper - Void .ctor(Double, Double, Double, Double, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.ElementResponseWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.ResponseWrapper - Void .ctor(OpenSees.Elements.ElementWrapper, Int32, OpenSees.VectorWrapper, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Elements.ElementWrapper, Int32, OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Elements.ElementWrapper, Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Elements.ElementWrapper, Int32, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Elements.ElementWrapper, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Elements.ElementWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Elements.ElementWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.FiberResponseWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.ResponseWrapper - Void .ctor(OpenSees.Materials.Sections.Repres.FiberWrapper, Int32, OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Sections.Repres.FiberWrapper, Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Sections.Repres.FiberWrapper, Int32, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Sections.Repres.FiberWrapper, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Sections.Repres.FiberWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Sections.Repres.FiberWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.NDMaterialResponseWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.ResponseWrapper - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32, OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Recorders.UniaxialMaterialResponseWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Recorders.ResponseWrapper - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, OpenSees.MatrixWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, OpenSees.VectorWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, OpenSees.IDWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Eigens.ArpackSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Eigens.EigenSOEWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(Double): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Systems.Linears.LinearSOESolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.SolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.BandGenLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.BandGenLinLapackSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.BandGenLinSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.BandGenLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.BandGenLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DistributedBandGenLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.BandGenLinSOEWrapper - Void .ctor(OpenSees.Systems.Linears.BandGenLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.BandSPDLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.BandSPDLinLapackSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.BandSPDLinSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.BandSPDLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.BandSPDLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DistributedBandSPDLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.BandSPDLinSOEWrapper - Void .ctor(OpenSees.Systems.Linears.BandSPDLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DiagonalSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DiagonalDirectSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.DiagonalSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DiagonalSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.DiagonalSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DistributedDiagonalSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DistributedDiagonalSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.DiagonalSOEWrapper - Void .ctor(OpenSees.Systems.Linears.DistributedDiagonalSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Eigens.EigenSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - OpenSees.IMovableObjectWrapper - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Systems.Eigens.FullGenEigenSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Eigens.EigenSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Eigens.FullGenEigenSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Eigens.EigenSOEWrapper - Void .ctor(OpenSees.Systems.Eigens.FullGenEigenSolverWrapper, OpenSees.AnalysisModelWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.FullGenLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.FullGenLinLapackSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.FullGenLinSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.FullGenLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(Int32, OpenSees.Systems.Linears.FullGenLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(OpenSees.Systems.Linears.FullGenLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.ProfileSPDLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SProfileSPDLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.ProfileSPDLinDirectSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.ProfileSPDLinSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.ProfileSPDLinSubstrSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.ProfileSPDLinSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.ProfileSPDLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.ProfileSPDLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SProfileSPDLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.SProfileSPDLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.DistributedProfileSPDLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.ProfileSPDLinSOEWrapper - Void .ctor(OpenSees.Systems.Linears.ProfileSPDLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SparseGenColLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SuperLUWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.SparseGenColLinSolverWrapper - Void .ctor(Int32, Double, Int32, Int32, SByte): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SparseGenRowLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, Abstract, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SparseGenColLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.SparseGenColLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SparseGenRowLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.SparseGenRowLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SymSparseLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.SymSparseLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.SymSparseLinSolverWrapper, Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Eigens.SymBandEigenSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Eigens.EigenSolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Eigens.SymBandEigenSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Eigens.EigenSOEWrapper - Void .ctor(OpenSees.Systems.Eigens.SymBandEigenSolverWrapper, OpenSees.AnalysisModelWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.UmfpackGenLinSolverWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOESolverWrapper - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Systems.Linears.UmfpackGenLinSOEWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :OpenSees.Systems.Linears.LinearSOEWrapper - Void .ctor(OpenSees.Systems.Linears.UmfpackGenLinSolverWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName -Class OpenSees.Tcl.ModelBuilder.ModelBuilderAddUniaxialMaterialArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Materials.Uniaxials.UniaxialMaterialWrapper theMaterial : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderRemoveUniaxialMaterialArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - Int32 tag : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllUniaxialMaterialArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderAddSectionArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Materials.Sections.SectionForceDeformationWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Materials.Sections.SectionForceDeformationWrapper theSection : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderRemoveSectionArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - Int32 tag : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllSectionArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderAddNDMaterialArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(OpenSees.Materials.NDMaterials.NDMaterialWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - OpenSees.Materials.NDMaterials.NDMaterialWrapper theNDMaterial : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderRemoveNDMaterialArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - Int32 tag : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllNDMaterialArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - :System.EventArgs - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.TclExecutionResult: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(OpenSees.Tcl.TclExecutionStatus): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Fields: - Int32 ExecutionStatus : Public - System.String Result : Public - System.String ErrorMessage : Public - Methods: - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Class OpenSees.Tcl.TclWrapper: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit - Void .ctor(OpenSees.Handlers.RedirectStreamWrapper): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName - Interfaces: - System.IDisposable - Events: - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllNDMaterialArgs] ClearAllNDMaterialEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderRemoveNDMaterialArgs] RemoveNDMaterialEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderAddNDMaterialArgs] AddNDMaterialEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllSectionArgs] ClearAllSectionEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderRemoveSectionArgs] RemoveSectionEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderAddSectionArgs] AddSectionEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderClearAllUniaxialMaterialArgs] ClearAllUniaxialMaterialEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderRemoveUniaxialMaterialArgs] RemoveUniaxialMaterialEventHandler: SpecialName - System.EventHandler`1[OpenSees.Tcl.ModelBuilder.ModelBuilderAddUniaxialMaterialArgs] AddUniaxialMaterialEventHandler: SpecialName - Methods: - SetOutputStream(RedirectStreamWrapper): PrivateScope, Public, HideBySig - Init(): PrivateScope, Public, HideBySig - Execute(String): PrivateScope, Public, HideBySig - TclEvalFile(String): PrivateScope, Public, HideBySig - TclEval(String): PrivateScope, Public, HideBySig - GetActiveDomain(): PrivateScope, Public, HideBySig - add_AddUniaxialMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddUniaxialMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveUniaxialMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveUniaxialMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_ClearAllUniaxialMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_ClearAllUniaxialMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddSectionEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddSectionEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveSectionEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveSectionEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_ClearAllSectionEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_ClearAllSectionEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_AddNDMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_AddNDMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_RemoveNDMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_RemoveNDMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - add_ClearAllNDMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - remove_ClearAllNDMaterialEventHandler(EventHandler`1): PrivateScope, Public, HideBySig, SpecialName - Dispose(): PrivateScope, Public, Final, Virtual, HideBySig -Struct OpenSees.Tcl.TclExecutionStatus: AutoLayout, AnsiClass, Class, Public, Sealed, BeforeFieldInit - :System.Enum - Fields: - Int32 value__ : Public, SpecialName, RTSpecialName - OpenSees.Tcl.TclExecutionStatus Init = 0 : Public, Static, Literal, HasDefault - OpenSees.Tcl.TclExecutionStatus Success = 1 : Public, Static, Literal, HasDefault - OpenSees.Tcl.TclExecutionStatus Failed = 2 : Public, Static, Literal, HasDefault - OpenSees.Tcl.TclExecutionStatus Partial = 3 : Public, Static, Literal, HasDefault - OpenSees.Tcl.TclExecutionStatus Empty = 4 : Public, Static, Literal, HasDefault diff --git a/Win64/bin/OpenSees.NET.x64.exp b/Win64/bin/OpenSees.NET.x64.exp index fdc10e1442ea53550b386bab567116e394123f05..e70bbc23585f8e9c96acd13281f28602f492e175 100644 GIT binary patch delta 36 scmey)_ML4*JtM0G!<;;Z$t{e_*iH0|EQ}3JCL1#OG0n-F+{p9|0NCOSrvLx| delta 36 scmey)_ML4*JtM0)!^vEh$t{e_*p2m!EDQ}yCmS;PF`dkv+{p9|0N!~E{{R30 diff --git a/Win64/bin/OpenSees.exp b/Win64/bin/OpenSees.exp index 3f1dfc75429e3ca286c235c537214d4499dfb9c7..cc7d3bfbcc883111ac27d3f49df58ca2ada03a45 100644 GIT binary patch delta 292 zcmbQp_JoZ$rHzT;Oc1DXB@N=_F%U3g zWMI&n7^u$54CF9RY?PfifrpuqfobA=8J5hF{KSd7bsf1uQVb?Qk^{`r0g^mmmIaXH z1hWi)Brlj{10+GVF*C3L$&Wy+wON!=fsu!s!9oyZ3&_~XCQN~hZj;-Xls!S_0v!QV yUzA?%Uj%ft16)MK&j1Jv89>g3sDX$WF+`z>7&9bJe!!$F1~MEd1qV!ER{#L6XDJ;3 delta 213 zcmaFDHj#}trHzT;Oc1DXB@N=_F%ZyX z1ZfCVX9a3xV4B#d$jCTxrOd>Wy1HCI0cHjRAPLgT%%B4#xxp+GAjt`4u>i@BKrFl2 zoKb;satc!bqs`>4Ov>gUZ9tQO+KST4{fmGuv4D%H_!$6!A%iEHh!I1;WJP9O7LcI; Dtrue OpenSees.NET.x64.dll $(SolutionDir)\bin\$(Configuration)\ + false true $(ProjectName) .\..\..\bin\ .\..\..\obj\opensees.net\debug\ + false false @@ -169,12 +171,14 @@ false OpenSees.NET.x64.dll $(SolutionDir)\bin\$(Configuration)\ + false false $(ProjectName) .\..\..\bin\ .\..\..\obj\opensees.net\release\ + false diff --git a/Win64/proj/OpenSeesNET/domains/domain/DomainEvent.h b/Win64/proj/OpenSeesNET/domains/domain/DomainEvent.h index c3f2ea18ab..96b07e6026 100644 --- a/Win64/proj/OpenSeesNET/domains/domain/DomainEvent.h +++ b/Win64/proj/OpenSeesNET/domains/domain/DomainEvent.h @@ -4,6 +4,7 @@ #include "../nodes/NodeWrapper.h" #include "../../elements/ElementWrapper.h" #include "../constraints/ConstraintWrapper.h" +#include "../loads/LoadWrapper.h" #include "../patterns/LoadPatternWrapper.h" #include "../../recorders/RecorderWrapper.h" @@ -11,6 +12,7 @@ using namespace System; using namespace OpenSees::Components; using namespace OpenSees::Components::Constraints; using namespace OpenSees::Components::LoadPatterns; +using namespace OpenSees::Components::Loads; using namespace OpenSees::Elements; using namespace OpenSees::Recorders; @@ -91,10 +93,10 @@ namespace OpenSees { public: DomainAddSPEventArgs(SP_ConstraintWrapper^ sp) :EventArgs() { - this->sp = sp; + this->SPConstraint = sp; }; ~DomainAddSPEventArgs() {}; - SP_ConstraintWrapper^ sp; + SP_ConstraintWrapper^ SPConstraint; internal: private: @@ -105,10 +107,10 @@ namespace OpenSees { public: DomainRemoveSPEventArgs(SP_ConstraintWrapper^ sp) :EventArgs() { - this->sp = sp; + this->SPConstraint = sp; }; ~DomainRemoveSPEventArgs() {}; - SP_ConstraintWrapper^ sp; + SP_ConstraintWrapper^ SPConstraint; internal: private: @@ -118,11 +120,11 @@ namespace OpenSees { { public: - DomainAddMPEventArgs(MP_ConstraintWrapper^ sp) :EventArgs() { - this->mp = mp; + DomainAddMPEventArgs(MP_ConstraintWrapper^ mp) :EventArgs() { + this->MPConstraint = mp; }; ~DomainAddMPEventArgs() {}; - MP_ConstraintWrapper^ mp; + MP_ConstraintWrapper^ MPConstraint; internal: private: @@ -133,10 +135,10 @@ namespace OpenSees { public: DomainRemoveMPEventArgs(MP_ConstraintWrapper^ mp) :EventArgs() { - this->mp = mp; + this->MPConstraint = mp; }; ~DomainRemoveMPEventArgs() {}; - MP_ConstraintWrapper^ mp; + MP_ConstraintWrapper^ MPConstraint; internal: private: @@ -146,11 +148,11 @@ namespace OpenSees { { public: - DomainAddLoadPatternEventArgs(LoadPatternWrapper^ sp) :EventArgs() { - this->mp = mp; + DomainAddLoadPatternEventArgs(LoadPatternWrapper^ lp) :EventArgs() { + this->LoadPattern = lp; }; ~DomainAddLoadPatternEventArgs() {}; - LoadPatternWrapper^ mp; + LoadPatternWrapper^ LoadPattern; internal: private: @@ -160,11 +162,11 @@ namespace OpenSees { { public: - DomainRemoveLoadPatternEventArgs(LoadPatternWrapper^ mp) :EventArgs() { - this->mp = mp; + DomainRemoveLoadPatternEventArgs(LoadPatternWrapper^ lp) :EventArgs() { + this->LoadPattern = lp; }; ~DomainRemoveLoadPatternEventArgs() {}; - LoadPatternWrapper^ mp; + LoadPatternWrapper^ LoadPattern; internal: private: @@ -175,10 +177,10 @@ namespace OpenSees { public: DomainAddRecorderEventArgs(RecorderWrapper^ rec) :EventArgs() { - this->rec = rec; + this->Recorder = rec; }; ~DomainAddRecorderEventArgs() {}; - RecorderWrapper^ rec; + RecorderWrapper^ Recorder; internal: private: @@ -189,10 +191,100 @@ namespace OpenSees { public: DomainRemoveRecorderEventArgs(RecorderWrapper^ rec) :EventArgs() { - this->rec = rec; + this->Recorder = rec; }; ~DomainRemoveRecorderEventArgs() {}; - RecorderWrapper^ rec; + RecorderWrapper^ Recorder; + internal: + + private: + }; + + public ref class DomainAddNodalLoadEventArgs : EventArgs + { + + public: + DomainAddNodalLoadEventArgs(NodalLoadWrapper^ obj, int pattern) :EventArgs() { + this->NodalLoad = obj; + this->Pattern = pattern; + }; + ~DomainAddNodalLoadEventArgs() {}; + NodalLoadWrapper^ NodalLoad; + int Pattern; + internal: + + private: + }; + + public ref class DomainRemoveNodalLoadEventArgs : EventArgs + { + + public: + DomainRemoveNodalLoadEventArgs(NodalLoadWrapper^ obj) :EventArgs() { + this->NodalLoad = obj; + }; + ~DomainRemoveNodalLoadEventArgs() {}; + NodalLoadWrapper^ NodalLoad; + internal: + + private: + }; + + public ref class DomainAddElementalLoadEventArgs : EventArgs + { + + public: + DomainAddElementalLoadEventArgs(ElementalLoadWrapper^ obj, int pattern) :EventArgs() { + this->ElementalLoad = obj; + this->Pattern = pattern; + }; + ~DomainAddElementalLoadEventArgs() {}; + ElementalLoadWrapper^ ElementalLoad; + int Pattern; + internal: + + private: + }; + + public ref class DomainRemoveElementalLoadEventArgs : EventArgs + { + + public: + DomainRemoveElementalLoadEventArgs(ElementalLoadWrapper^ obj) :EventArgs() { + this->ElementalLoad = obj; + }; + ~DomainRemoveElementalLoadEventArgs() {}; + ElementalLoadWrapper^ ElementalLoad; + internal: + + private: + }; + + public ref class DomainAddSP_ConstraintEventArgs : EventArgs + { + + public: + DomainAddSP_ConstraintEventArgs(SP_ConstraintWrapper^ obj, int pattern) :EventArgs() { + this->SP_Constraint = obj; + this->Pattern = pattern; + }; + ~DomainAddSP_ConstraintEventArgs() {}; + SP_ConstraintWrapper^ SP_Constraint; + int Pattern; + internal: + + private: + }; + + public ref class DomainRemoveSP_ConstraintEventArgs : EventArgs + { + + public: + DomainRemoveSP_ConstraintEventArgs(SP_ConstraintWrapper^ obj) :EventArgs() { + this->SP_Constraint = obj; + }; + ~DomainRemoveSP_ConstraintEventArgs() {}; + SP_ConstraintWrapper^ SP_Constraint; internal: private: diff --git a/Win64/proj/OpenSeesNET/domains/domain/DomainWrapper.cpp b/Win64/proj/OpenSeesNET/domains/domain/DomainWrapper.cpp index 4448f646d2..81c3aa34cd 100644 --- a/Win64/proj/OpenSeesNET/domains/domain/DomainWrapper.cpp +++ b/Win64/proj/OpenSeesNET/domains/domain/DomainWrapper.cpp @@ -12,7 +12,7 @@ using namespace OpenSees::Components::Loads; DomainWrapper::DomainWrapper() { _Domain = new Domain(); - InitEvents(); + InitEvents(); } DomainWrapper::~DomainWrapper() @@ -36,21 +36,27 @@ DomainWrapper::~DomainWrapper() gc_DomainEventAddRecorder.Free(); gc_DomainEventRemoveRecorder.Free(); gc_DomainEventClearAll.Free(); + gc_DomainEventAddNodalLoad.Free(); + gc_DomainEventRemoveNodalLoad.Free(); + gc_DomainEventAddElementalLoad.Free(); + gc_DomainEventRemoveElementalLoad.Free(); + gc_DomainEventAddSP_Constraint.Free(); + gc_DomainEventRemoveSP_Constraint.Free(); } -bool ^ +bool^ DomainWrapper::AddNode(array^ nodes) { int length = (nodes->Length); for (int i = 0; i < length; i++) { Node* _node = nodes[i]->_Node; - if(! _Domain->addNode(_node)) + if (!_Domain->addNode(_node)) return false; - AddNodeEventHandler(nullptr,nullptr); + AddNodeEventHandler(nullptr, nullptr); } - + return true; } @@ -62,7 +68,7 @@ DomainWrapper::AddNode(NodeWrapper^ node) //return false; } -bool ^ DomainWrapper::AddElement(array^ elements) +bool^ DomainWrapper::AddElement(array^ elements) { int length = (elements->Length); for (int i = 0; i < length; i++) { @@ -73,14 +79,14 @@ bool ^ DomainWrapper::AddElement(array^ elements) return true; } -bool^ +bool^ DomainWrapper::AddElement(ElementWrapper^ element) { Element* _element = element->_Element; return _Domain->addElement(_element); } -bool ^ DomainWrapper::AddSP_Constraint(array^ sps) +bool^ DomainWrapper::AddSP_Constraint(array^ sps) { int length = (sps->Length); for (int i = 0; i < length; i++) { @@ -104,7 +110,7 @@ DomainWrapper::AddMP_Constraint(MP_ConstraintWrapper^ mp_Constraint) return _Domain->addMP_Constraint(mp_Constraint->_MP_Constraint); } -bool^ +bool^ DomainWrapper::AddMP_Constraint(array^ mps) { int length = (mps->Length); @@ -129,13 +135,13 @@ DomainWrapper::AddNodalLoad(NodalLoadWrapper^ nodalLoad, int loadPatternTag) return _Domain->addNodalLoad(_nodalLoad, loadPatternTag); } -bool^ +bool^ DomainWrapper::AddNodalLoad(array^ nodalLoads, int loadPatternTag) { int length = (nodalLoads->Length); for (int i = 0; i < length; i++) { NodalLoad* nl = nodalLoads[i]->_NodalLoad; - if (!_Domain->addNodalLoad(nl,loadPatternTag)) + if (!_Domain->addNodalLoad(nl, loadPatternTag)) return false; } return true; diff --git a/Win64/proj/OpenSeesNET/domains/domain/DomainWrapper.h b/Win64/proj/OpenSeesNET/domains/domain/DomainWrapper.h index 374dc8b02c..25d58730bf 100644 --- a/Win64/proj/OpenSeesNET/domains/domain/DomainWrapper.h +++ b/Win64/proj/OpenSeesNET/domains/domain/DomainWrapper.h @@ -10,6 +10,8 @@ #include #include #include +#include +#include #include #include #include @@ -23,6 +25,7 @@ #include "../../recorders/RecorderWrapper.h" #include "../../matrix/MatrixWrapper.h" #include "../constraints/ConstraintWrapper.h" +#include "../loads/LoadWrapper.h" #include "../patterns/LoadPatternWrapper.h" #include "../nodes/NodeWrapper.h" #include "../../taggeds/TaggedObjectWrapper.h" @@ -49,6 +52,12 @@ namespace OpenSees { delegate int DomainEventRemoveLoadPattern(LoadPattern* lp); delegate int DomainEventAddRecorder(Recorder* rec); delegate int DomainEventRemoveRecorder(Recorder* rec); + delegate int DomainEventAddNodalLoad(NodalLoad* obj,int pattern); + delegate int DomainEventRemoveNodalLoad(NodalLoad* obj); + delegate int DomainEventAddElementalLoad(ElementalLoad* obj, int pattern); + delegate int DomainEventRemoveElementalLoad(ElementalLoad* obj); + delegate int DomainEventAddSP_Constraint(SP_Constraint* obj, int pattern); + delegate int DomainEventRemoveSP_Constraint(SP_Constraint* obj); delegate int DomainEventClearAll(); public ref class DomainWrapper : BaseDomainWrapper { @@ -310,6 +319,12 @@ namespace OpenSees { event EventHandler^ RemoveLoadPatternEventHandler; event EventHandler^ AddRecorderEventHandler; event EventHandler^ RemoveRecorderEventHandler; + event EventHandler^ AddNodalLoadEventHandler; + event EventHandler^ RemoveNodalLoadEventHandler; + event EventHandler^ AddElementalLoadEventHandler; + event EventHandler^ RemoveElementalLoadEventHandler; + event EventHandler^ AddSP_ConstraintEventHandler; + event EventHandler^ RemoveSP_ConstraintEventHandler; event EventHandler^ ClearAllHandler; @@ -374,6 +389,33 @@ namespace OpenSees { RemoveRecorderEventHandler(this, gcnew DomainRemoveRecorderEventArgs(gcnew RecorderWrapper(Recorder))); return 0; } + int AddNodalLoadEvent(NodalLoad* NodalLoad, int pattern) { + AddNodalLoadEventHandler(this, gcnew DomainAddNodalLoadEventArgs(gcnew NodalLoadWrapper(NodalLoad), pattern)); + return 0; + } + int RemoveNodalLoadEvent(NodalLoad* NodalLoad) + { + RemoveNodalLoadEventHandler(this, gcnew DomainRemoveNodalLoadEventArgs(gcnew NodalLoadWrapper(NodalLoad))); + return 0; + } + int AddElementalLoadEvent(ElementalLoad* ElementalLoad, int pattern) { + AddElementalLoadEventHandler(this, gcnew DomainAddElementalLoadEventArgs(gcnew ElementalLoadWrapper(ElementalLoad), pattern)); + return 0; + } + int RemoveElementalLoadEvent(ElementalLoad* ElementalLoad) + { + RemoveElementalLoadEventHandler(this, gcnew DomainRemoveElementalLoadEventArgs(gcnew ElementalLoadWrapper(ElementalLoad))); + return 0; + } + int AddSP_ConstraintEvent(SP_Constraint* SP_Constraint, int pattern) { + AddSP_ConstraintEventHandler(this, gcnew DomainAddSP_ConstraintEventArgs(gcnew SP_ConstraintWrapper(SP_Constraint), pattern)); + return 0; + } + int RemoveSP_ConstraintEvent(SP_Constraint* SP_Constraint) + { + RemoveSP_ConstraintEventHandler(this, gcnew DomainRemoveSP_ConstraintEventArgs(gcnew SP_ConstraintWrapper(SP_Constraint))); + return 0; + } int ClearAllEvent() { ClearAllHandler(this, gcnew DomainClearAllArgs()); return 0; @@ -468,6 +510,50 @@ namespace OpenSees { ip = Marshal::GetFunctionPointerForDelegate(_DomainEventRemoveRecorder); _Domain->_DomainEvent_RemoveRecorder = static_cast(ip.ToPointer()); + // add nl + DomainEventAddNodalLoad^ _DomainEventAddNodalLoad = gcnew DomainEventAddNodalLoad(this, + &DomainWrapper::AddNodalLoadEvent); + gc_DomainEventAddNodalLoad = GCHandle::Alloc(_DomainEventAddNodalLoad); + ip = Marshal::GetFunctionPointerForDelegate(_DomainEventAddNodalLoad); + _Domain->_DomainEvent_AddNodalLoad = static_cast(ip.ToPointer()); + + // remove nl + DomainEventRemoveNodalLoad^ _DomainEventRemoveNodalLoad = gcnew DomainEventRemoveNodalLoad(this, + &DomainWrapper::RemoveNodalLoadEvent); + gc_DomainEventRemoveNodalLoad = GCHandle::Alloc(_DomainEventRemoveNodalLoad); + ip = Marshal::GetFunctionPointerForDelegate(_DomainEventRemoveNodalLoad); + _Domain->_DomainEvent_RemoveNodalLoad = static_cast(ip.ToPointer()); + + // add el + DomainEventAddElementalLoad^ _DomainEventAddElementalLoad = gcnew DomainEventAddElementalLoad(this, + &DomainWrapper::AddElementalLoadEvent); + gc_DomainEventAddElementalLoad = GCHandle::Alloc(_DomainEventAddElementalLoad); + ip = Marshal::GetFunctionPointerForDelegate(_DomainEventAddElementalLoad); + _Domain->_DomainEvent_AddElementalLoad = static_cast(ip.ToPointer()); + + // remove el + DomainEventRemoveElementalLoad^ _DomainEventRemoveElementalLoad = gcnew DomainEventRemoveElementalLoad(this, + &DomainWrapper::RemoveElementalLoadEvent); + gc_DomainEventRemoveElementalLoad = GCHandle::Alloc(_DomainEventRemoveElementalLoad); + ip = Marshal::GetFunctionPointerForDelegate(_DomainEventRemoveElementalLoad); + _Domain->_DomainEvent_RemoveElementalLoad = static_cast(ip.ToPointer()); + + + // add sp + DomainEventAddSP_Constraint^ _DomainEventAddSP_Constraint = gcnew DomainEventAddSP_Constraint(this, + &DomainWrapper::AddSP_ConstraintEvent); + gc_DomainEventAddSP_Constraint = GCHandle::Alloc(_DomainEventAddSP_Constraint); + ip = Marshal::GetFunctionPointerForDelegate(_DomainEventAddSP_Constraint); + _Domain->_DomainEvent_AddSP_Constraint = static_cast(ip.ToPointer()); + + // remove sp + DomainEventRemoveSP_Constraint^ _DomainEventRemoveSP_Constraint = gcnew DomainEventRemoveSP_Constraint(this, + &DomainWrapper::RemoveSP_ConstraintEvent); + gc_DomainEventRemoveSP_Constraint = GCHandle::Alloc(_DomainEventRemoveSP_Constraint); + ip = Marshal::GetFunctionPointerForDelegate(_DomainEventRemoveSP_Constraint); + _Domain->_DomainEvent_RemoveSP_Constraint = static_cast(ip.ToPointer()); + + // clear all DomainEventClearAll^ _DomainEventClearAll = gcnew DomainEventClearAll(this, &DomainWrapper::ClearAllEvent); gc_DomainEventClearAll = GCHandle::Alloc(_DomainEventClearAll); @@ -488,6 +574,12 @@ namespace OpenSees { GCHandle gc_DomainEventRemoveLoadPattern; GCHandle gc_DomainEventAddRecorder; GCHandle gc_DomainEventRemoveRecorder; + GCHandle gc_DomainEventAddNodalLoad; + GCHandle gc_DomainEventRemoveNodalLoad; + GCHandle gc_DomainEventAddElementalLoad; + GCHandle gc_DomainEventRemoveElementalLoad; + GCHandle gc_DomainEventAddSP_Constraint; + GCHandle gc_DomainEventRemoveSP_Constraint; GCHandle gc_DomainEventClearAll; }; } diff --git a/Win64/proj/OpenSeesNET/domains/loads/LoadWrapper.h b/Win64/proj/OpenSeesNET/domains/loads/LoadWrapper.h index 1bc94882e3..f6d05625ac 100644 --- a/Win64/proj/OpenSeesNET/domains/loads/LoadWrapper.h +++ b/Win64/proj/OpenSeesNET/domains/loads/LoadWrapper.h @@ -3,6 +3,8 @@ #include #include +#include + #include #include #include @@ -50,11 +52,20 @@ namespace OpenSees { int GetNodeTag() { return _NodalLoad->getNodeTag(); } + VectorWrapper^ GetLoadVector() { + Vector* vec = _NodalLoad->getLoadVector(); + VectorWrapper^ nvec = gcnew VectorWrapper(vec); + return nvec; + } ~NodalLoadWrapper() { if (_NodalLoad != 0) delete _NodalLoad; }; internal: + NodalLoadWrapper(NodalLoad* NodalLoad) + :LoadWrapper(0) { + _NodalLoad = NodalLoad; + } NodalLoad * _NodalLoad; private: @@ -70,6 +81,9 @@ namespace OpenSees { } ~ElementalLoadWrapper() {}; internal: + ElementalLoadWrapper(ElementalLoad* ElementalLoad) :ElementalLoadWrapper(0) { + _ElementalLoad = ElementalLoad; + }; ElementalLoad * _ElementalLoad; private: diff --git a/Win64/proj/OpenSeesNET/domains/patterns/LoadPatternWrapper.h b/Win64/proj/OpenSeesNET/domains/patterns/LoadPatternWrapper.h index 1acc4916c5..232e5b82fd 100644 --- a/Win64/proj/OpenSeesNET/domains/patterns/LoadPatternWrapper.h +++ b/Win64/proj/OpenSeesNET/domains/patterns/LoadPatternWrapper.h @@ -53,7 +53,7 @@ namespace OpenSees { NodalLoadWrapper^ wret = gcnew NodalLoadWrapper(); NodalLoad* nodalload = 0; int counter = 0; - while ((nodalload == nlIter()) != 0) + while ((nodalload = nlIter()) != 0) { NodalLoadWrapper^ nodew = gcnew NodalLoadWrapper(); nodew->_NodalLoad = nodalload; @@ -68,7 +68,7 @@ namespace OpenSees { List^ _nls = gcnew List(); SP_Constraint* sp = 0; int counter = 0; - while ((sp == spIter()) != 0) + while ((sp = spIter()) != 0) { SP_ConstraintWrapper^ nodew = gcnew SP_ConstraintWrapper(sp); _nls->Add(nodew); @@ -82,7 +82,7 @@ namespace OpenSees { ElementalLoadWrapper^ wret = gcnew ElementalLoadWrapper(); ElementalLoad* nodalload = 0; int counter = 0; - while ((nodalload == nlIter()) != 0) + while ((nodalload = nlIter()) != 0) { ElementalLoadWrapper^ nodew = gcnew ElementalLoadWrapper(); nodew->_ElementalLoad = nodalload; diff --git a/Win64/proj/OpenSeesNET/elements/ElementWrapper.h b/Win64/proj/OpenSeesNET/elements/ElementWrapper.h index 8cde71c7c2..b68db42d49 100644 --- a/Win64/proj/OpenSeesNET/elements/ElementWrapper.h +++ b/Win64/proj/OpenSeesNET/elements/ElementWrapper.h @@ -116,6 +116,10 @@ namespace OpenSees { return gcnew String(type); } + int GetClassTag() { + return _Element->getClassTag(); + } + /*ResponseWrapper^ SetResponse(array^ argv, OpenSees::Handlers::OPS_StreamWrapper^ output) { char ** _argv = new char*[argv->Length]; for (int i = 0; i < argv->Length; i++) diff --git a/Win64/proj/OpenSeesNET/handlers/HandlerWrapper.h b/Win64/proj/OpenSeesNET/handlers/HandlerWrapper.h index f1e4d3eb71..e5ea8d051d 100644 --- a/Win64/proj/OpenSeesNET/handlers/HandlerWrapper.h +++ b/Win64/proj/OpenSeesNET/handlers/HandlerWrapper.h @@ -75,6 +75,15 @@ namespace OpenSees { return _OPS_StreamPtr->write(*vec->_Vector); }; + String^ GetClassType() { + const char* type = _OPS_StreamPtr->getClassType(); + return gcnew String(type); + } + + int GetClassTag() { + return _OPS_StreamPtr->getClassTag(); + } + String^ GetStreamHeader() { const char* headerChar = _OPS_StreamPtr->getStreamHeader(); if (headerChar == 0) diff --git a/Win64/proj/OpenSeesNET/materials/ndmaterial/NDMaterialWrapper.h b/Win64/proj/OpenSeesNET/materials/ndmaterial/NDMaterialWrapper.h index 2b72a9c1ca..16a8041ab5 100644 --- a/Win64/proj/OpenSeesNET/materials/ndmaterial/NDMaterialWrapper.h +++ b/Win64/proj/OpenSeesNET/materials/ndmaterial/NDMaterialWrapper.h @@ -191,7 +191,12 @@ namespace OpenSees { return gcnew String(_NDMaterial->getClassType()); } - int GetTypeTag() { + String^ GetClassType() { + const char* type = _NDMaterial->getClassType(); + return gcnew String(type); + } + + int GetClassTag() { return _NDMaterial->getClassTag(); } diff --git a/Win64/proj/OpenSeesNET/materials/section/SectionForceDeformationWrapper.h b/Win64/proj/OpenSeesNET/materials/section/SectionForceDeformationWrapper.h index 9dd8fa3dfe..dd23822395 100644 --- a/Win64/proj/OpenSeesNET/materials/section/SectionForceDeformationWrapper.h +++ b/Win64/proj/OpenSeesNET/materials/section/SectionForceDeformationWrapper.h @@ -109,6 +109,15 @@ namespace OpenSees { return _SectionForceDeformation->getRho(); } + String^ GetClassType() { + const char* type = _SectionForceDeformation->getClassType(); + return gcnew String(type); + } + + int GetClassTag() { + return _SectionForceDeformation->getClassTag(); + } + ~SectionForceDeformationWrapper() { if (_SectionForceDeformation != 0) delete _SectionForceDeformation; diff --git a/Win64/proj/OpenSeesNET/materials/uniaxial/UniaxialMaterialWrapper.h b/Win64/proj/OpenSeesNET/materials/uniaxial/UniaxialMaterialWrapper.h index 8482a18aed..2c16455791 100644 --- a/Win64/proj/OpenSeesNET/materials/uniaxial/UniaxialMaterialWrapper.h +++ b/Win64/proj/OpenSeesNET/materials/uniaxial/UniaxialMaterialWrapper.h @@ -74,10 +74,12 @@ namespace OpenSees { int RevertToStart() { return _UniaxialMaterial->revertToStart(); } - String^ GetType() { - return gcnew String(_UniaxialMaterial->getClassType()); + String^ GetClassType() { + const char* type = _UniaxialMaterial->getClassType(); + return gcnew String(type); } - int GetTypeTag() { + + int GetClassTag() { return _UniaxialMaterial->getClassTag(); } diff --git a/Win64/proj/OpenSeesNET/recorders/RecorderWrapper.h b/Win64/proj/OpenSeesNET/recorders/RecorderWrapper.h index 5338d8d655..b1a9d0522f 100644 --- a/Win64/proj/OpenSeesNET/recorders/RecorderWrapper.h +++ b/Win64/proj/OpenSeesNET/recorders/RecorderWrapper.h @@ -51,6 +51,15 @@ namespace OpenSees { return opsstr->GetStreamHeader(); } } + String^ GetClassType() { + const char* type = _Recorder->getClassType(); + return gcnew String(type); + } + + int GetClassTag() { + return _Recorder->getClassTag(); + } + int CloseOutputStreamHandler() { OPS_Stream* opsstrptr = _Recorder->getOutputHandler(); if (opsstrptr == 0) return -1; diff --git a/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.log b/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.log index ef363b801b..5e7a76c783 100644 --- a/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.log +++ b/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.log @@ -1,17 +1,9 @@ C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Microsoft\VC\v160\Microsoft.CppBuild.targets(452,5): warning MSB8028: The intermediate directory (x64\Debug\) contains files shared from another project (OpenSeesWrapper.vcxproj). This can lead to incorrect clean and rebuild behavior. - AcceleratorWrapper.cpp - AlgorithmsWrapper.cpp - LineSearchWrapper.cpp AnalysisWrapper.cpp C:\Git Projects\OpenSees.NET\Win64\proj\OpenSeesNET\analysis\analysis\AnalysisWrapper.h(181,16): warning C4490: 'override': incorrect use of override specifier; 'OpenSees::Analysis::PFEMAnalysisAnalysisWrapper::Analyze' does not match a base ref class method C:\Git Projects\OpenSees.NET\Win64\proj\OpenSeesNET\analysis\analysis\AnalysisWrapper.h(181,16): message : 'new' or 'override' are only allowed when a matching base method from a ref class exists C:\Git Projects\OpenSees.NET\Win64\proj\OpenSeesNET\analysis\analysis\AnalysisWrapper.h(206,16): warning C4490: 'override': incorrect use of override specifier; 'OpenSees::Analysis::VariableTimeStepDirectIntegrationAnalysisWrapper::Analyze' does not match a base ref class method - ConstraintHandlerWrapper.cpp StaticIntegratorWrapper.cpp - TransientIntegratorWrapper.cpp - AnalysisModelWrapper.cpp - DOF_NumbererWrapper.cpp - ConvergenceTestWrapper.cpp DamageModelWrapper.cpp DomainComponentWrapper.cpp ConstraintWrapper.cpp @@ -22,8 +14,6 @@ C:\Git Projects\OpenSees.NET\Win64\proj\OpenSeesNET\analysis\analysis\AnalysisWr LoadWrapper.cpp NodeWrapper.cpp LoadPatternWrapper.cpp - Generating Code... - Compiling... TimeSeriesWrapper.cpp BaseElementWrapper.cpp ElementWrapper.cpp @@ -33,9 +23,10 @@ C:\Git Projects\OpenSees.NET\Win64\proj\OpenSeesNET\analysis\analysis\AnalysisWr C:\Git Projects\OpenSees.NET\Win64\proj\OpenSeesNET\analysis\analysis\AnalysisWrapper.h(206,16): message : 'new' or 'override' are only allowed when a matching base method from a ref class exists CoupledZeroLengthWrapper.cpp ZeroLengthElementWrapper.cpp + Generating Code... + Compiling... AdapterWrapper.cpp BeamColumnWrapper.cpp - BeamIntegrationWrapper.cpp BearingWrapper.cpp BrickWrapper.cpp CatenaryCableWrapper.cpp @@ -51,44 +42,20 @@ C:\Git Projects\OpenSees.NET\src\element\surfaceLoad\SurfaceLoad.h(43): message C:\Git Projects\OpenSees.NET\src\element\surfaceLoad\TriSurfaceLoad.h(44,1): warning C4005: 'SL_NUM_DDOF': macro redefinition ShellWrapper.cpp TrussWrapper.cpp - Generating Code... - Compiling... - GraphNumbererWrapper.cpp - HandlerWrapper.cpp MaterialWrapper.cpp NDMaterialWrapper.cpp SectionForceDeformationWrapper.cpp FiberWrapper.cpp SectionIntegrationWrapper.cpp - PatchWrapper.cpp - ReinfLayerWrapper.cpp SectionRepresWrapper.cpp LimitCurveWrapper.cpp UniaxialMaterialWrapper.cpp UniaxialMaterialWrapper_all.cpp - YieldSurfaceWrapper.cpp - IDWrapper.cpp - MatrixWrapper.cpp - VectorWrapper.cpp - InformationWrapper.cpp - RecorderWrapper.cpp - ResponseWrapper.cpp Generating Code... Compiling... + YieldSurfaceWrapper.cpp + RecorderWrapper.cpp ResponseWrapper_all.cpp - BandGENWrapper.cpp - BandSPDWrapper.cpp - DiagonalWrapper.cpp - EigenSOEWrapper.cpp - EigenSolverWrapper.cpp - FullGENWrapper.cpp - LinearSOEWrapper.cpp - ProfileSPDWrapper.cpp - SYMBandEigenWrapper.cpp - SparseGENWrapper.cpp - SparseSYMWrapper.cpp - UmfpackGenWrapper.cpp - ArpackSOEWrapper.cpp TaggedObjectWrapper.cpp ModelBuilderEvent.cpp TclWrapper.cpp diff --git a/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.tlog/CL.command.1.tlog b/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.tlog/CL.command.1.tlog index e0aa18e42182ff7f379125b1207e864a4c2192aa..3bcdae13030d66f24c2d91246dada151f467ca49 100644 GIT binary patch delta 3905 zcma)9euYyeX~C%Lchz=4C-P$|hNqD`c}=`JQDR5{=fAB=U$Q|1ezD zadnUx0olEbZ*mxW|j=Ya7mR-XJFv#wLH;JK z5RKV}6){2agHm*%qC{EG0MfQKK%zM=Q;OKB;3*Pqv{@SV&ghFl%PJ3%4%^Q#^_t}< z%N_A={Cm6gU$lH6B&F2BPug=j`l>rT`S-FdO@~(bWHus_tBba;n4s^74Xz*OqF`&Z zO4AwtuaqKT8cRH+vzD_n7QKUF&3WzT1d_;=2Px2V-#P!_AvWQ>1CeK4p%QAC;|Y=< zQ#`qT*E<4)yNq5E=ZpnPE;kCUE&lw6oSOuOYQCjdsvtzVjAtP};eLXQJZf5|_;UB% zzwm&N7i>eWCgMT0YL2y@qHBiipy$k(WPY5r)Qy{-HwBR9_C3ZT57*Y-SE zsSqG!1m9`#gc5lW#wSI83GM@w&8hiHdC>yfpK@KAFFrC$Srn>O434EM4wewgT^_+6 zWtE|lXb3l2uPHwckaoD*k~J!RT+N2`aTT-!SxW?=00ir6V{og(dVsagPi_w$kheRm z;}C51Fngfl1jz)Y!LsS{g1`I_UIW7C-3?9`jOWcQs2u48B96lZ165?K`Qc2`YHI)~(NVCfX68X%K2tKFoTR zDbYj8R1L;I~YIxG_W|m9h;Hmu|OW zKafyAP9H|eO6k^^+O*j`Wr#?h#vVil##W`1J@jcv9`-19=id9j=K6Mi=l46G_ug|i zUteFie?27`B%@RzRZ5&>lBy)LWRZBuD%qs!CE*y`=bWP#@cmP#P=RrS@aCgJ>6^F_ zx0(efSBPde0+2G=M__ADh{8^5&3M7T`ziqWu>C(=S+oBm%QGfOys>WnI{2bLeZ>*t(9r+J*O&P^zR0-d)JszmNJCGfPJ&vKx}a*!LR>d z|6T9$f8v0R9z#;u%Wp!(OSYlYK*c@C^t;;dozZo|mLX#x+>T<4YhF!*YT#LvZ-awFHrf`u13ixZ)yFYexY1@08*jquT`-(%UwNJJImcr7(B{yk6A`CY0p#!wmxu^dO6`=)I^z} z>57iQ*EWylB|aVL18DbVrH&xpdf|CkRH>Vy7QBcIZOW`jcv?H=9K!9Ck7ocwHS(njw0iguh%CzUST{`b%&np zh^G@pvnR)R1)DE>_RF{j_Ah%rgZORF0{CxxL^c5_B_!t)y)yBW!41>Jsu+_$cW48X zya)Zy9q-P``^@x_5Ce(7JzeF*JxKUZrrhD1`WEv(9^&7dFUommp;R<$YGTu8PI^hh zyc6R_o^A^B zY7g0GFJmC=RjxRQMV<|Y#QdepzPxE2RomDW>;5fAN5S{O@TJO38mtT2kKtBb7ROD_ zl3sb#Yn@P(uy#;qTYph^q-SLxq*7M3eI$6U4B@c)t0@gTwX2mMc1|kJWznYH0C`w~ rH`HgbVfDt?7UXpz;YVyN882@NW=Pt+5jeGar`GqXQ|eP8|E2!{<17Yx diff --git a/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.tlog/CL.read.1.tlog b/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.tlog/CL.read.1.tlog index ed960134505a571bb9f27be5f6e77fd8a6baa8b3..e4222cb333b53628b5b399b946ce61f032114c1c 100644 GIT binary patch delta 3949 zcmc&%du&tJ8PC1;wVfM3Zkz{BV!|clVFyD!$g&7Ac1P2^n_M6bgoWTSma-_zOv_S4 zQRGsJ8A?+NQ-9DxVlrOsGGqwx*Gi0e2qD@*xEpQOW{6pcW-UX=sEjMv>#LJH)5p7dWi-xC#xLYyXKBFAiiLjLaB)xtpusY;so)p zd?!jz%=M`-GT++70QXBnF8Y>mh1A!#MYZ}p5ZOVuDt|>^Gz>swK<$L!)p=9s=JQ2j z;?lejx?i1puo6dd^EH&be6m3{iIq{%kaI^WA(AntRsOFXeEMYF(76JK2BdTOgW@SpDVZRBnRi20vtOQe$hwUn{92t3BM0)@ zA@&JVg0b!bYXkT;7Ypb(Fw9=q9LvWZwt1yjUenQvMTzA zoyA?0%*Acsp0MR9i}G-Ttf^;)86LX09l7tT%#>eR&VjMt7EnNuQ9eeF+9p={drNwh zHP?-zJ%JiV0OxP*yTEtCu7SQac1~6d9W7KXcE-P4- zRGn0xRGCzl^i)zy(${C@NexL)lNB*(J$}cTj4Bk58wP2JUSpQXPuy7l}^-N|y2o)Jk=tkW{B@(uqDOpZ3r1L$R@I&!}_HB%A&FrfN zXOQli3Cu0X9ZmDm7%9kSDU8%I?{G-me~a8FThj@AUUCq*0fWGx=i}7tDwMupid85a zFa*8{E8y@R!!Ll4Ya9A#O;em7ZW=x3sShZOb}<`MWWWO}AL+NpMNHx=-mE#F$aJ2% zEFqkw8E8`cAk$$~F|?9)J&UxH@pK46k9G@qPN%h_Q>%G{jvFXoOx^_CJ?(PzUC@-J zDmrC52da@T(CW2`QzBzj5BgTAbE`r2Jdm*Jh2XpN_HPhc4~-aZW%}qiNRX~Lwn40g zDFh)~(@Nk3WQXpcF}RwsspD|L_c0Ze({Z2TWjXiuB%JKCIrd`oHSKLv;`+qPXF&Qn zQxitrI7$9*Q?B?OjwEO(TQGVO>S*Bc1=LN@h!B*5e6Ro60*TB;%OC zwz3KYsHtU_L+B7)1yn8ier0S7?%i@3uy@l^) zIdqQ;HV`bCUSpXajb(<(Ro^;-_v4OlWWezogY%(Hp!>eT>^*zRfM-t`qd%1Gww3`; zJ!b*q=SFLMqt`iUMCYVQY=mt?oK2?2B?hEH&XF*?R+A3g1FjKnm8R6obZM+11vuU6 zC5y;CNbOFR^)@lyUZWX%jcM$Y3I9aJw2FsVyp3zpuyIYgE)Ii0?L3fPs)&Vh%g%V! z2%v5Ng&a*s1qiiV1xWq+dL_t1)jE>(ex+{$vbh+hYB^Gn`t@DVTgT<1v%<1Pg|YSK z5z?>?a(&+Jd+FGHFT?$lxF-TNYHK{pDaG`9mi`M?j`#Ebb1}84fE=awN}DrL+B~bJ z;am570s+L1+SM@lw^{oV#+PBuEaoY84!)IThQY;_Oz)lXS$JpMvZVU|fY&QDWTDWI zZ4(kurQYm91)%#@w$&SZJsV@M=U7U?eN0z^+{?2GANhak)fk+|lVV8ne??WeMtzL( zO53d{ZJ&LENp#(jXH5q&wlZ1647mmip9J^I=?lU2ynziYN~wYAlCcj%*Jii>J@HR$ zsbg?v50X6&VwArWiWvJ~_F4+0V|pvbo;T=8?Ot!bNWP{yt>K4VJ_q8JIho#*m*?Qg z%lw!*@DX1kKN9Mjl|3kZGPiV1V(jJ%yJ@)}5UN1@mnk2)J9(E_B>nahQsm`_1L^kv zb4&EaX`#chg&=s@8mtE2J8T^~7dlF4@Rg-(0{$tJ8)LUpcO{1}&SP01X*u4%UnY(D zXG|ALmV&K6g=HfJ+sO-oWC7v#R5qOJ;A>F)nb}948L!U0Q3=jB_4#nOIim;5=M?Ta z3&CM(`n^Qzi$^g&di3)TQYcnBY8bE{UQjIeGF9L*vAN)Wml{>97|389;JRfUgiuLJ zFN8*{mqB{kvL8IZOD4~fC;0my9!kCdQckKQ+crWWd3}x3AZ#%2$B2!eByG*Jrd?)m zm!}9IzBGRudOY)mi}Jyv&5va62q8vA(rTSgg<#se zr6^tDuajQq41GrRc#1)yzeZtQ_PJRYS(+Lyf#4rVSLqx!P0fMOhx5tPsdB++^S=R2 Cov?2J delta 3547 zcmb_fe@qnl70>MMFuTjL4C@Lj3(LYGEQn+eiQy6~Z%C$sRHF&Q?4A;&~S})0R@(*mi3gtDbt>=4#GMYc{R9G!0_kcV-38 zTrZ9GpULO@-uu3v-|zdr`PcO`-0aV%Im3f_m`R!yyp%Nm&Gds_4}@27T_<|q5I~%< zxWNBIt`i$@}Q4GVk|gvvSZf>5Ql)Fs(=6B4_Y1OEwbFIJx5;ygrK zMKi2zH}z=<300(l-)FAZl`w?LW`2f8$!G58ATb~ef_$IPO&K}DS77*xFv~OI2*d`2 za}X~#7whcsPGNP5?SI|8kFk%AB?R?ULa?=u`QL9s<+B#NT{xZJQx&E&CcJKj>`8dJXw&uW;ln@U6$MYlQ@=b z1aTF28R_$B4+KKO`c#tCEe?)$%G<3&GN?B)S{^a}SOnqW;vgtLb*pgqgf$F_ zoyL8btmAsug6g&oL9#792;mpR4i?~5P)+FR|) zFF(yQSf^DN{5jc2*%9bLWxKVy5!DYf>Uj|VSvUad^GkMs)M)PpX<1Pd_Q&dF zH-dD~;RF9>M+?OAGU~tdT)7O>yE6_LA>3?rq1tG#OGmZB7RvztU_q_!DoBF`eP`m9 zTTM@VZs~Z0ZaZW>;|#If9^_Gs+y2-JQj@bfWoq#XQ2y)?d(+m8l-}`mkjOEv0m{d} zS!RO^HzWvw2TMcfeZf9qfcQ3VC-{F+G(<54vmkz+>1Bo>kSyq#K9lZgL`trg19_CR z%Qe11q)K=3puT1ifi7eXlMl-aw{qOT%xR8vfEcm#F66djqD`D&yN3-Jv)guXGfj=eBP6_(&7Ibl_3>x~^X(_|l#>^jO z0f{-`V0UJ{E{g}cGuL)fVLvneUmAhW2$NH8Gj!a`e2azP(3TNeV#htP)vD2O{=WF} z_cR#s?ao5qZpYvT@?ovu< ze^l%7k2aw%>hZ~|?q^w=ZmUNf%t1fF{rz8 z>LX-|HWXWHAW`gG&-PyBBg(O2RE{lokPl2Sadvq&)Sq2m6Om6YNBLyQMb|``vqUqA zBq41E>8zty-wbMYQ4J_7oO6qA_hGWf*lqyzjH3bqUvs5iKjqbe9jQ(666f%~S1P|e z+#U>+I_oIoF5_L0zMfTw@iOab8qR)i@Swl2w1*mf)S(4&k;i0N>FPG{pLDk}8AdB2>nSc##p_mUykCz=bB--j&Jo=6BD(@LI-eobdj%Wy7Vp!V&yRXVn7CGMrhDM3Fhlb< zR~AQTsH4Gd#dm8M&73GH)SPbB?)erENCmETkc`d@_}RJ*4Rx=!5kz z2M0Q(F+@UPg=kki5)$hv7$a6Mii8Li^w5Juy+{vz+nv@!kHz8K`#Zn${eIs$_kQ2c zT-o>4gULQ-{q#!7j9N5GO25(10$Q_hPeH0qF*@zQ+{*^BmRtzFCl^Q%pJCEM{D?0iY9av~&G-)C z3=(E&x8mNjB`4IXHPOMiAXIXo@|8H0$edLX}VbRNXlMtml|Q<%O+) fna=645gckdYyv*h4Yv7#Ag1eTaEati`j!3y-N!e* delta 564 zcmYk2ze`(j6va7LlPUxWHi#6FX9%T)*BCTfQPHPla1aTS$tgqWREtU@PNMh&5wxja z@CH$Mh!AnGr3G)14(Zem8Tlg;74%^yQoUfOm~ONGt|PVS7fea<|H$R&2=unL6paJ`QOrzyYEG>OoB5e z`W(YLsihyio;3qXi#<T>5}ym6ZL~bfuYhNNeiSr@e=xEzs^cz0eQ>8^dU3 z`y-;YcC1Dg7qbY;-U|7ltd1tWd<|#n2VX=eTqUtrX-X%38j`jRN@8a}T)kQ=Za5V` z7%lW?b=;-Sg!k~&XG9$Q>r=r*i}!jv5%tEEFNk?!x#vlZ0xEUX=2@=y>6;jvbPT@i TrXlZn571Q@x+0ybhtB^27GAz? diff --git a/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.tlog/OpenSeesNET.lastbuildstate b/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.tlog/OpenSeesNET.lastbuildstate index 9a45c926c7..e83a51ad3a 100644 --- a/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.tlog/OpenSeesNET.lastbuildstate +++ b/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.tlog/OpenSeesNET.lastbuildstate @@ -1,2 +1,2 @@ -#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=true:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0 +#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0 Debug|x64|C:\Git Projects\OpenSees.NET\Win64\| diff --git a/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.vcxprojAssemblyReference.cache b/Win64/proj/OpenSeesNET/x64/Debug/OpenSeesNET.vcxprojAssemblyReference.cache index 9b1731a50d27b303c7a5f4c37f350ddc7e620336..9a7d6b34bc7432ecdc7d5e58bcd6e1f867270f1d 100644 GIT binary patch literal 1106 zcmcIj%Z}496m`-hlcd8?Sg>LdcA%-ORHZN=RR{tV60d<)BNl;?liUnZop@wB1H*T~ zH}D~B`4s*Ed`nfJD(q@0$FXzlbM7O=B82=f17{q&wt=_Ls$2>sN=+ZM6))(Fskx$w zkkF5gK&nbK`Z`4c#wi8(amEFPAl@^(2G6r-38 znTulAHfv1Jm4RkQx$++Mga&0Uq`k1MAnq?f&b3ApDo=8AA9} zuwue;E#%HJp02T*i29UCkUri!tv-TdHkEh8cngY<4sqSCe`V?8g)FLu@zt5{FAwg0 zMjMWS9ei;SP|m@vf1JZ8yT{c@W0IRN1;ny?co2_xcukhvO%J6wk*tm;CL1cc{^8)( zjr0|iAfd@2x~~+}CgY&eRZ`Q5;lq0&=P7;uX!d(`c9X{GGK7arGg@%&`9_CrPv>>b z7czm7d9ytkj3hJ?$6Ju7RW2m2GK{0QsHqVOx(K@n7ZCOgxVX2!s>5GD&>zjckEL8R zHrBXPi^4I_+-8kaz^U>SHokJDJ_Bi&4I#E|TO{x;>~!*F&-wc4n~%K{hM{*6XDloo g#>2rKVxcAUu}0LfExf~OayfR diff --git a/Win64/proj/OpenSeesNETCore/AssemblyInfo.cpp b/Win64/proj/OpenSeesNETCore/AssemblyInfo.cpp new file mode 100644 index 0000000000..4ba816aff9 --- /dev/null +++ b/Win64/proj/OpenSeesNETCore/AssemblyInfo.cpp @@ -0,0 +1,23 @@ + +#include "stdafx.h" + +using namespace System; +using namespace System::Reflection; +using namespace System::Runtime::CompilerServices; +using namespace System::Runtime::InteropServices; +using namespace System::Security::Permissions; + +[assembly:AssemblyTitleAttribute(L"OpenSeesNETCore")]; +[assembly:AssemblyDescriptionAttribute(L"")]; +[assembly:AssemblyConfigurationAttribute(L"")]; +[assembly:AssemblyCompanyAttribute(L"")]; +[assembly:AssemblyProductAttribute(L"OpenSeesNETCore")]; +[assembly:AssemblyCopyrightAttribute(L"Copyright (c) 2020")]; +[assembly:AssemblyTrademarkAttribute(L"")]; +[assembly:AssemblyCultureAttribute(L"")]; + +[assembly:AssemblyVersionAttribute("1.0.*")]; + +[assembly:ComVisible(false)]; + +[assembly:CLSCompliantAttribute(true)]; diff --git a/Win64/proj/OpenSeesNETCore/OpenSeesNETCore.vcxproj b/Win64/proj/OpenSeesNETCore/OpenSeesNETCore.vcxproj new file mode 100644 index 0000000000..17d74a742f --- /dev/null +++ b/Win64/proj/OpenSeesNETCore/OpenSeesNETCore.vcxproj @@ -0,0 +1,486 @@ + + + + + Debug.DLL + Win32 + + + Debug.DLL + x64 + + + Debug + Win32 + + + Release.DLL + Win32 + + + Release.DLL + x64 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {486E32B5-EEA1-4C5F-87CD-02F54CBD15AA} + NetCoreCProj + OpenSeesNETCore + 10.0 + netcoreapp3.1 + + + + DynamicLibrary + true + v142 + NetCore + Unicode + + + DynamicLibrary + true + v142 + NetCore + Unicode + + + DynamicLibrary + false + v142 + NetCore + Unicode + + + DynamicLibrary + false + v142 + NetCore + Unicode + + + DynamicLibrary + true + v142 + NetCore + Unicode + + + DynamicLibrary + true + v142 + NetCore + Unicode + + + DynamicLibrary + false + v142 + NetCore + Unicode + + + DynamicLibrary + false + v142 + NetCore + Unicode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + .\..\..\bin\ + .\..\..\obj\opensees.netcore\debug\ + + + .\..\..\bin\ + .\..\..\obj\opensees.netcore\debug\ + + + + Use + pch.h + Level3 + NDEBUG;%(PreprocessorDefinitions) + + + + + + + + Use + stdafx.h + Level3 + ..\..\..\src\system_of_eqn\linearSOE\diagonal;..\..\..\src\damage;..\..\..\src\material\uniaxial\py;..\..\..\src\reliability\fesensitivity;..\..\..\src\reliability\tcl;..\..\..\src\coordTransformation;..\..\..\src\material\section\repres\section;..\..\..\src\analysis\algorithm\equiSolnAlgo;..\..\..\src\system_of_eqn\eigenSOE;..\..\..\src\analysis\algorithm\eigenAlgo;..\..\..\src\material\nD;..\..\..\src\material\uniaxial;..\..\..\src\handler;..\..\..\src\tcl;..\..\..\src\actor\objectBroker;..\..\..\src\system_of_eqn\linearSOE\umfGEN;..\..\..\src\system_of_eqn\linearSOE\fullGEN;..\..\..\src\system_of_eqn\linearSOE\sparseGEN;..\..\..\src\system_of_eqn\linearSOE\bandSPD;..\..\..\src\system_of_eqn\linearSOE\bandGEN;..\..\..\src\element\nonlinearBeamColumn\tcl\repres\section;..\..\..\src\matrix;..\..\..\src\recorder;..\..\..\src\graph\numberer;..\..\..\src\material\section;..\..\..\src\graph\graph;..\..\..\src\element\beam2d;..\..\..\src\element\beam3d;..\..\..\src\system_of_eqn;..\..\..\src\system_of_eqn\linearSOE;..\..\..\src\system_of_eqn\linearSOE\profileSPD;..\..\..\src\system_of_eqn\linearSOE\sparseSYM;..\..\..\src\domain\pattern;..\..\..\src\analysis\analysis;..\..\..\src\analysis\integrator;..\..\..\src\analysis\numberer;..\..\..\src\analysis\handler;..\..\..\src\renderer;..\..\..\src\material;..\..\..\src\analysis\algorithm;..\..\..\src\convergenceTest;..\..\..\src\analysis\model\simple;..\..\..\src\domain\load;..\..\..\src\analysis\model;..\..\..\src\element\truss;..\..\..\src\actor\channel;..\..\..\src\utility;..\..\..\src\actor\actor;..\..\..\src\modelbuilder;..\..\..\src\modelbuilder\tcl;..\..\..\src\domain\constraints;..\..\..\src\domain\component;..\..\..\src\element;..\..\..\src\domain\node;..\..\..\src\domain\domain;..\..\..\src\tagged\storage;..\..\..\src;..\..\..\src\tagged;..\..\..\src\reliability\domain;..\..\..\src\reliability\domain\components;..\..\..\src\reliability\domain\distributions;..\..\..\src\reliability\analysis;..\..\..\src\reliability\analysis\analysis;..\..\..\src\reliability\analysis\curvature;..\..\..\src\reliability\analysis\designPoint;..\..\..\src\reliability\analysis\direction;..\..\..\src\reliability\analysis\gFunction;..\..\..\src\reliability\analysis\misc;..\..\..\src\reliability\analysis\randomNumber;..\..\..\src\reliability\analysis\sensitivity;..\..\..\src\reliability\analysis\stepSize;..\..\..\src\reliability\analysis\transformation;..\..\..\src\nDarray;..\..\..\src\system_of_eqn\linearSOE\cg;..\..\..\src\system_of_eqn\linearSOE\itpack;..\..\..\src\database;..\..\..\src\element\updatedLagrangianBeamColumn;..\..\..\src\material\yieldSurface\yieldSurfaceBC;..\..\..\src\material\yieldSurface\evolution;..\..\..\src\material\yieldSurface\plasticHardeningMaterial;..\..\..\src\reliability\domain\modulatingFunction;..\..\..\src\reliability\domain\spectrum;..\..\..\src\reliability\domain\filter;..\..\..\src\reliability\analysis\hessianApproximation;..\..\..\src\reliability\analysis\convergenceCheck;..\..\..\src\reliability\analysis\meritFunction;..\..\..\src\reliability\analysis\rootFinding;C:\Program Files\Tcl;C:\Program Files\Tcl\include;..\..\..\src\material\section\fiber;..\..\..\src\element\forceBeamColumn;..\..\..\src\material\section\repres\patch;..\..\..\src\material\section\repres\reinfLayer;..\..\..\src\element\elasticbeamcolumn;..\..\..\src\material\section\repres\cell;..\..\..\src\domain\groundMotion;..\..\..\src\proxy;..\..\..\src\element\fourNodeQuad;..\..\..\src\element\shell;..\..\..\SRC\element\frictionBearing\frictionModel;..\..\..\SRC\recorder\response;..\..\..\SRC\material\uniaxial\backbone;..\..\..\SRC\material\uniaxial\limitState;..\..\..\SRC\material\uniaxial\limitState\limitCurve;..\..\..\SRC\api;..\..\..\SRC\material\nd\soil;..\..\..\SRC\material\uniaxial\PY;..\..\..\SRC\element\UP-ucsd;..\..\..\SRC\material\section\yieldSurface;..\..\..\SRC\material\nD\cyclicSoil;..\..\..\SRC\material\nD\stressDensityModel;..\..\..\SRC\material\nD\UWmaterials;..\..\..\SRC\material\section\integration;..\..\..\SRC\analysis\dof_grp;..\..\..\OTHER\SuperLU_5.1.1\SRC;..\..\..\src\analysis\algorithm\equiSolnAlgo\accelerator;..\..\..\SRC\proxy;..\..\..\SRC\system_of_eqn\linearSOE\pardiso;..\..\..\src\domain\domain\single + NDEBUG;%(PreprocessorDefinitions) + false + + + actor.lib;analysis.lib;arpack.lib;blas.lib;cblas.lib;convergence.lib;cssparse.lib;damage.lib;database.lib;DoddRestrepo.lib;domain.lib;drain.lib;element.lib;feap.lib;tcl.lib;fedeas.lib;glu32.lib;graph.lib;handler.lib;ifconsol.lib;lapack.lib;libifcoremt.lib;libmmt.lib;material.lib;matrix.lib;modelbuilder.lib;opengl32.lib;optimization.lib;recorder.lib;reliability.lib;renderer.lib;superLU.lib;system.lib;tagged.lib;tcl86t.lib;tk86t.lib;umfpackC.lib;utility.lib;wsock32.lib;proxy.lib + ..\..\lib\release;..\..\lib;C:\Program Files\Tcl\lib;C:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2018.2.185\windows\mkl\lib\intel64_win + .\..\..\bin\OpenSees.NETCore.x64.dll + + + + + Use + pch.h + Level3 + WIN32;_DEBUG;%(PreprocessorDefinitions) + + + + + + + + Use + pch.h + Level3 + WIN32;_DEBUG;%(PreprocessorDefinitions) + + + + + + + + + Use + pch.h + Level3 + _DEBUG;%(PreprocessorDefinitions) + + + + + + + + Use + stdafx.h + Level3 + ..\..\..\src\system_of_eqn\linearSOE\diagonal;..\..\..\src\damage;..\..\..\src\material\uniaxial\py;..\..\..\src\reliability\fesensitivity;..\..\..\src\reliability\tcl;..\..\..\src\coordTransformation;..\..\..\src\material\section\repres\section;..\..\..\src\analysis\algorithm\equiSolnAlgo;..\..\..\src\system_of_eqn\eigenSOE;..\..\..\src\analysis\algorithm\eigenAlgo;..\..\..\src\material\nD;..\..\..\src\material\uniaxial;..\..\..\src\handler;..\..\..\src\tcl;..\..\..\src\actor\objectBroker;..\..\..\src\system_of_eqn\linearSOE\umfGEN;..\..\..\src\system_of_eqn\linearSOE\fullGEN;..\..\..\src\system_of_eqn\linearSOE\sparseGEN;..\..\..\src\system_of_eqn\linearSOE\bandSPD;..\..\..\src\system_of_eqn\linearSOE\bandGEN;..\..\..\src\element\nonlinearBeamColumn\tcl\repres\section;..\..\..\src\matrix;..\..\..\src\recorder;..\..\..\src\graph\numberer;..\..\..\src\material\section;..\..\..\src\graph\graph;..\..\..\src\element\beam2d;..\..\..\src\element\beam3d;..\..\..\src\system_of_eqn;..\..\..\src\system_of_eqn\linearSOE;..\..\..\src\system_of_eqn\linearSOE\profileSPD;..\..\..\src\system_of_eqn\linearSOE\sparseSYM;..\..\..\src\domain\pattern;..\..\..\src\analysis\analysis;..\..\..\src\analysis\integrator;..\..\..\src\analysis\numberer;..\..\..\src\analysis\handler;..\..\..\src\renderer;..\..\..\src\material;..\..\..\src\analysis\algorithm;..\..\..\src\convergenceTest;..\..\..\src\analysis\model\simple;..\..\..\src\domain\load;..\..\..\src\analysis\model;..\..\..\src\element\truss;..\..\..\src\actor\channel;..\..\..\src\utility;..\..\..\src\actor\actor;..\..\..\src\modelbuilder;..\..\..\src\modelbuilder\tcl;..\..\..\src\domain\constraints;..\..\..\src\domain\component;..\..\..\src\element;..\..\..\src\domain\node;..\..\..\src\domain\domain;..\..\..\src\tagged\storage;..\..\..\src;..\..\..\src\tagged;..\..\..\src\reliability\domain;..\..\..\src\reliability\domain\components;..\..\..\src\reliability\domain\distributions;..\..\..\src\reliability\analysis;..\..\..\src\reliability\analysis\analysis;..\..\..\src\reliability\analysis\curvature;..\..\..\src\reliability\analysis\designPoint;..\..\..\src\reliability\analysis\direction;..\..\..\src\reliability\analysis\gFunction;..\..\..\src\reliability\analysis\misc;..\..\..\src\reliability\analysis\randomNumber;..\..\..\src\reliability\analysis\sensitivity;..\..\..\src\reliability\analysis\stepSize;..\..\..\src\reliability\analysis\transformation;..\..\..\src\nDarray;..\..\..\src\system_of_eqn\linearSOE\cg;..\..\..\src\system_of_eqn\linearSOE\itpack;..\..\..\src\database;..\..\..\src\element\updatedLagrangianBeamColumn;..\..\..\src\material\yieldSurface\yieldSurfaceBC;..\..\..\src\material\yieldSurface\evolution;..\..\..\src\material\yieldSurface\plasticHardeningMaterial;..\..\..\src\reliability\domain\modulatingFunction;..\..\..\src\reliability\domain\spectrum;..\..\..\src\reliability\domain\filter;..\..\..\src\reliability\analysis\hessianApproximation;..\..\..\src\reliability\analysis\convergenceCheck;..\..\..\src\reliability\analysis\meritFunction;..\..\..\src\reliability\analysis\rootFinding;C:\Program Files\Tcl;C:\Program Files\Tcl\include;..\..\..\src\material\section\fiber;..\..\..\src\element\forceBeamColumn;..\..\..\src\material\section\repres\patch;..\..\..\src\material\section\repres\reinfLayer;..\..\..\src\element\elasticbeamcolumn;..\..\..\src\material\section\repres\cell;..\..\..\src\domain\groundMotion;..\..\..\src\proxy;..\..\..\src\element\fourNodeQuad;..\..\..\src\element\shell;..\..\..\SRC\element\frictionBearing\frictionModel;..\..\..\SRC\recorder\response;..\..\..\SRC\material\uniaxial\backbone;..\..\..\SRC\material\uniaxial\limitState;..\..\..\SRC\material\uniaxial\limitState\limitCurve;..\..\..\SRC\api;..\..\..\SRC\material\nd\soil;..\..\..\SRC\material\uniaxial\PY;..\..\..\SRC\element\UP-ucsd;..\..\..\SRC\material\section\yieldSurface;..\..\..\SRC\material\nD\cyclicSoil;..\..\..\SRC\material\nD\stressDensityModel;..\..\..\SRC\material\nD\UWmaterials;..\..\..\SRC\material\section\integration;..\..\..\SRC\analysis\dof_grp;..\..\..\OTHER\SuperLU_5.1.1\SRC;..\..\..\src\analysis\algorithm\equiSolnAlgo\accelerator;..\..\..\SRC\proxy;..\..\..\SRC\system_of_eqn\linearSOE\pardiso;..\..\..\src\domain\domain\single + _DEBUG;%(PreprocessorDefinitions) + false + Default + + + actor.lib;analysis.lib;arpack.lib;blas.lib;cblas.lib;convergence.lib;cssparse.lib;damage.lib;database.lib;DoddRestrepo.lib;domain.lib;drain.lib;element.lib;feap.lib;tcl.lib;fedeas.lib;glu32.lib;graph.lib;handler.lib;ifconsol.lib;lapack.lib;libifcoremt.lib;libmmt.lib;material.lib;matrix.lib;modelbuilder.lib;opengl32.lib;optimization.lib;recorder.lib;reliability.lib;renderer.lib;superLU.lib;system.lib;tagged.lib;tcl86t.lib;tk86t.lib;umfpackC.lib;utility.lib;wsock32.lib;proxy.lib + ..\..\lib\debug;..\..\lib;C:\Program Files\Tcl\lib;C:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2018.2.185\windows\mkl\lib\intel64_win + .\..\..\bin\OpenSees.NETCore.x64.dll + + + false + + + + + Use + pch.h + Level3 + WIN32;NDEBUG;%(PreprocessorDefinitions) + + + + + + + + Use + pch.h + Level3 + WIN32;NDEBUG;%(PreprocessorDefinitions) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Create + Create + Create + Create + Create + Create + Create + Create + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Win64/proj/OpenSeesNETCore/OpenSeesNETCore.vcxproj.filters b/Win64/proj/OpenSeesNETCore/OpenSeesNETCore.vcxproj.filters new file mode 100644 index 0000000000..a0e99580e4 --- /dev/null +++ b/Win64/proj/OpenSeesNETCore/OpenSeesNETCore.vcxproj.filters @@ -0,0 +1,862 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {bcb59846-2d34-4ff8-a527-8b42a8043cc3} + + + {87fa0709-609a-4bfc-b14a-5e302c1ab955} + + + {79112919-deff-4b40-928c-91b07302797a} + + + {fd5f1087-2b07-4691-a567-fd17f40c6965} + + + {9deebdd1-a718-4d8e-a185-0c1318ccf63e} + + + {7f72af04-52e5-492b-bd7c-b87dc7849f83} + + + {abc9a94f-32b4-49d5-a61f-ebca31ebe54e} + + + {1c3630e2-f12d-4c8f-beb4-2e178939441d} + + + {21d471f4-07a8-454b-b70e-15dfca05c36a} + + + {c4704d53-00cd-495b-ba5d-d5949c04f171} + + + {ad4997c5-e27d-4d08-bd04-fc29691cd99d} + + + {5cd44cd4-b65a-42a2-a407-a4e63117395f} + + + {8e1f12c8-933b-4f36-be7b-85564dd379f4} + + + {429f988f-3648-4844-93e7-a3b5bd611132} + + + {26c0f15b-0f55-461f-9e15-2103544c386f} + + + {2b7e587f-4e52-4b1c-a051-3858bc5cad10} + + + {7c2fda13-94b4-43a1-9831-a18763375f81} + + + {5f010654-424d-4de9-9c3b-79a5d1593193} + + + {e57d0984-60db-4516-98ef-d7caa73ed0ed} + + + {4397fd53-5a60-4f97-b23c-91ea5d229fa2} + + + {3d5d61f8-440b-42d2-a41f-5577d17ce182} + + + {30a93e2c-39cd-4c02-939f-24c5a493c4a5} + + + {572c1a1e-9e6b-40e4-a83b-306d2be878f4} + + + {edd2b270-7b50-4fb3-b1d2-ba5648b39810} + + + {0915b260-b557-4bf7-9036-f121bb885143} + + + {9eedb50b-7e35-4423-a728-05eeaf06e306} + + + {dc6c519d-efaf-430a-861d-b9cc87abb65b} + + + {d5afedae-6259-48fc-b95b-2c173a49e406} + + + {2b6afbaf-cf4c-474b-8cf1-eb45f6fd8c3c} + + + {63fd3a7e-fdc6-412b-93a3-3c40f86375a8} + + + {49f7e126-df72-4ad8-8fdc-c3c52ec54476} + + + {b2f87fe2-72bd-41b3-b9c5-ffc5eb8d1323} + + + {ac6555db-9aa0-4824-b567-dbcdb29130fa} + + + {9d9ec793-e79e-4c7b-a41d-f973df0f87d6} + + + {b1cfce49-9e8e-48ee-bce4-524bdd673545} + + + {3ace3c35-e139-4d44-993d-8958825ceb86} + + + {8fffcf77-c0e7-4c88-81de-d6c69b0da6b5} + + + {2e37ab4c-9bfb-4eaf-b942-d30b11543563} + + + {b323109a-d90b-47bc-a1da-07f5a12f8a61} + + + {8be10750-8eae-4c71-8555-b8a03a68be2c} + + + {3046623b-f4f4-4c0e-8f0b-e3bae1a9361a} + + + {e0b63fc6-893a-4287-b52a-896919059c2a} + + + {8b3d0f22-f660-47bd-810a-d49da346b5a5} + + + {f26441bc-8fb4-4022-b2ff-427978f36733} + + + {6e395c91-f0e4-40a6-ab4b-f38b563d9f44} + + + {2da5d40d-2f0b-46a0-84dc-846645ef34d5} + + + {f2d6a09f-5b37-452e-b349-e4eab9a026d8} + + + {b2123c57-95c4-4648-a208-de4ee99b9426} + + + {4f468e37-89b5-4f58-9563-a4f9f8a4c792} + + + {3848eae1-e7fe-4396-9ace-6e2eb109c012} + + + {fd6687b0-98e0-490b-a132-a345782177fe} + + + {5303cd9c-ecd3-433b-b211-1b588c491380} + + + {584a6fcb-32ca-4c92-8c05-87a1281afd86} + + + {848ea4b7-1a08-4793-9205-e2a32aa7f10d} + + + {57c9e3ee-d69e-475a-87bf-4725d0ca1876} + + + + + Header Files + + + OpenSeesNET\analysis\algorithms + + + OpenSeesNET\analysis\algorithms + + + OpenSeesNET\analysis\algorithms + + + OpenSeesNET\analysis\algorithms + + + OpenSeesNET\analysis\analysis + + + OpenSeesNET\analysis\analysis + + + OpenSeesNET\analysis\handlers + + + OpenSeesNET\analysis\handlers + + + OpenSeesNET\analysis\integrators + + + OpenSeesNET\analysis\integrators + + + OpenSeesNET\analysis\integrators + + + OpenSeesNET\analysis\integrators + + + OpenSeesNET\analysis\integrators + + + OpenSeesNET\analysis\models + + + OpenSeesNET\analysis\models + + + OpenSeesNET\analysis\numberers + + + OpenSeesNET\analysis\numberers + + + OpenSeesNET\convergances + + + OpenSeesNET\convergances + + + OpenSeesNET\damage + + + OpenSeesNET\damage + + + OpenSeesNET\domains\components + + + OpenSeesNET\domains\components + + + OpenSeesNET\domains\constraints + + + OpenSeesNET\domains\constraints + + + OpenSeesNET\domains\domain + + + OpenSeesNET\domains\domain + + + OpenSeesNET\domains\domain + + + OpenSeesNET\domains\domain + + + OpenSeesNET\domains\groundmotion + + + OpenSeesNET\domains\groundmotion + + + OpenSeesNET\domains\loads + + + OpenSeesNET\domains\loads + + + OpenSeesNET\domains\nodes + + + OpenSeesNET\domains\nodes + + + OpenSeesNET\domains\patterns + + + OpenSeesNET\domains\patterns + + + OpenSeesNET\domains\timeSeries + + + OpenSeesNET\domains\timeSeries + + + OpenSeesNET\elements\adaptors + + + OpenSeesNET\elements\adaptors + + + OpenSeesNET\elements + + + OpenSeesNET\elements\beamColumn + + + OpenSeesNET\elements\beamColumn\beamIntegration + + + OpenSeesNET\elements\beamColumn\beamIntegration + + + OpenSeesNET\elements\beamColumn + + + OpenSeesNET\elements\bearing + + + OpenSeesNET\elements\bearing + + + OpenSeesNET\elements\brick + + + OpenSeesNET\elements\brick + + + OpenSeesNET\elements\catenaryCable + + + OpenSeesNET\elements\catenaryCable + + + OpenSeesNET\elements\crdTransf + + + OpenSeesNET\elements\crdTransf + + + OpenSeesNET\elements + + + OpenSeesNET\elements\External + + + OpenSeesNET\elements\External + + + OpenSeesNET\elements\other + + + OpenSeesNET\elements\other + + + OpenSeesNET\elements\other + + + OpenSeesNET\elements\other + + + OpenSeesNET\elements\Quad + + + OpenSeesNET\elements\quad + + + OpenSeesNET\elements\shell + + + OpenSeesNET\elements\shell + + + OpenSeesNET\elements + + + OpenSeesNET\elements\truss + + + OpenSeesNET\elements\truss + + + OpenSeesNET\elements\ULBeamColumn + + + OpenSeesNET\elements\ULBeamColumn + + + OpenSeesNET\elements\ZeroLength + + + OpenSeesNET\elements\ZeroLength + + + OpenSeesNET\elements\ZeroLength + + + OpenSeesNET\graphs + + + OpenSeesNET\graphs + + + OpenSeesNET\handlers + + + OpenSeesNET\handlers + + + OpenSeesNET\materials + + + OpenSeesNET\materials\ndmaterial + + + OpenSeesNET\materials\ndmaterial + + + OpenSeesNET\materials\section\fiber + + + OpenSeesNET\materials\section\fiber + + + OpenSeesNET\materials\section\integrations + + + OpenSeesNET\materials\section\integrations + + + OpenSeesNET\materials\section\repres\patch + + + OpenSeesNET\materials\section\repres\patch + + + OpenSeesNET\materials\section\repres\reinfLayer + + + OpenSeesNET\materials\section\repres\reinfLayer + + + OpenSeesNET\materials\section\repres\sect + + + OpenSeesNET\materials\section\repres\sect + + + OpenSeesNET\materials\section + + + OpenSeesNET\materials\section + + + OpenSeesNET\materials + + + OpenSeesNET\materials\uniaxial + + + OpenSeesNET\materials\uniaxial + + + OpenSeesNET\materials\uniaxial + + + OpenSeesNET\materials\uniaxial + + + OpenSeesNET\materials\yieldSurface + + + OpenSeesNET\materials\yieldSurface + + + OpenSeesNET\matrix + + + OpenSeesNET\matrix + + + OpenSeesNET\matrix + + + OpenSeesNET\matrix + + + OpenSeesNET + + + OpenSeesNET\recorders + + + OpenSeesNET\recorders + + + OpenSeesNET\recorders + + + OpenSeesNET\recorders + + + OpenSeesNET\recorders + + + OpenSeesNET + + + OpenSeesNET\systems\arpack + + + OpenSeesNET\systems\arpack + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\taggeds + + + OpenSeesNET\taggeds + + + OpenSeesNET\tcl + + + OpenSeesNET\tcl + + + OpenSeesNET\tcl + + + OpenSeesNET\actors + + + OpenSeesNET\actors + + + Header Files + + + + + Source Files + + + OpenSeesNET\analysis\algorithms + + + OpenSeesNET\analysis\algorithms + + + OpenSeesNET\analysis\algorithms + + + OpenSeesNET\analysis\analysis + + + OpenSeesNET\analysis\handlers + + + OpenSeesNET\analysis\integrators + + + OpenSeesNET\analysis\integrators + + + OpenSeesNET\analysis\integrators + + + OpenSeesNET\analysis\integrators + + + OpenSeesNET\analysis\models + + + OpenSeesNET\analysis\numberers + + + OpenSeesNET\convergances + + + OpenSeesNET\damage + + + OpenSeesNET\domains\components + + + OpenSeesNET\domains\constraints + + + OpenSeesNET\domains\domain + + + OpenSeesNET\domains\domain + + + OpenSeesNET\domains\domain + + + OpenSeesNET\domains\groundmotion + + + OpenSeesNET\domains\loads + + + OpenSeesNET\domains\nodes + + + OpenSeesNET\domains\patterns + + + OpenSeesNET\domains\timeSeries + + + OpenSeesNET\elements\adaptors + + + OpenSeesNET\elements + + + OpenSeesNET\elements\beamColumn + + + OpenSeesNET\elements\beamColumn\beamIntegration + + + OpenSeesNET\elements\bearing + + + OpenSeesNET\elements\brick + + + OpenSeesNET\elements\catenaryCable + + + OpenSeesNET\elements\crdTransf + + + OpenSeesNET\elements + + + OpenSeesNET\elements\External + + + OpenSeesNET\elements\other + + + OpenSeesNET\elements\other + + + OpenSeesNET\elements\other + + + OpenSeesNET\elements\Quad + + + OpenSeesNET\elements\shell + + + OpenSeesNET\elements\truss + + + OpenSeesNET\elements\ULBeamColumn + + + OpenSeesNET\elements\ZeroLength + + + OpenSeesNET\elements\ZeroLength + + + OpenSeesNET\graphs + + + OpenSeesNET\handlers + + + OpenSeesNET\materials + + + OpenSeesNET\materials\ndmaterial + + + OpenSeesNET\materials\section\fiber + + + OpenSeesNET\materials\section\integrations + + + OpenSeesNET\materials\section\repres\patch + + + OpenSeesNET\materials\section\repres\reinfLayer + + + OpenSeesNET\materials\section\repres\sect + + + OpenSeesNET\materials\section + + + OpenSeesNET\materials\uniaxial + + + OpenSeesNET\materials\uniaxial + + + OpenSeesNET\materials\uniaxial + + + OpenSeesNET\materials\yieldSurface + + + OpenSeesNET\matrix + + + OpenSeesNET\matrix + + + OpenSeesNET\matrix + + + OpenSeesNET + + + OpenSeesNET\recorders + + + OpenSeesNET\recorders + + + OpenSeesNET\recorders + + + OpenSeesNET\recorders + + + OpenSeesNET\systems\arpack + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\systems + + + OpenSeesNET\taggeds + + + OpenSeesNET\tcl + + + OpenSeesNET\tcl + + + Source Files + + + + + Resource Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/Win64/proj/OpenSeesNETCore/Resource.h b/Win64/proj/OpenSeesNETCore/Resource.h new file mode 100644 index 0000000000..d5ac7c42aa --- /dev/null +++ b/Win64/proj/OpenSeesNETCore/Resource.h @@ -0,0 +1,3 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by app.rc diff --git a/Win64/proj/OpenSeesNETCore/app.ico b/Win64/proj/OpenSeesNETCore/app.ico new file mode 100644 index 0000000000000000000000000000000000000000..789d7ccbb56ed92f1bb005054ec7e67257ddc37e GIT binary patch literal 41395 zcmeHQZA=_R7=DjCkZTKK8e`L%_DrfaQ35q-NU0yk2`Okwv@x+7+O*QNL}I~`Y8$Mc zweceoTVpWz1KLD?5Tj6HjAC->RZTH5(3+Y^qR}Q*QIUg61#Btj%&kM`7H)6nj+0&P zne4DLH}A~6^UO0d@9xgBL=JKjcMi&?At%w>EL>Qq#oKdt>C$N+(Rua|At$Lyk0H7#>diEi}F0wek;+HU7|b|XXU)xB+Bzp4Xf+HR-)G) zs@#~fX!#;mY)(aa>1JM9q{b|Es@mJmiXcbB=8Zn;=)3uM7IEz^*;GQ*b!7464yF^i z>&qW&Ajxqo~ z`o$M|S6|Ksp*!JynDLQBBox`-#bTKXNNLW6@ zgkx${f)e9J7HU zW>BoNwY0UbHnH&K*Qp-nz06Nvr^+meah=M<;eY@TNCN~S6LgB(nf&r-v~=^*=c0n&Ojh75tz+RnK5HVPvXohh+3)UAs(fW-b|Sp*ELAr(aAhg;CWNC zNg-csQaH8gOTI~A>mQ?;HLt$xf4z2e-!~6*cy1{Dt+(p06<@t|uzZicMMS~oQ0<3D z0x!1grj?D(wFOt)E;k)Ed9+Tg3NEWIIN#a3e!Td!+uXBZlaG*-5o1m2`SF#ewPVG* z`nqqrRCRT#YNfyP4BvY&bah{6bzfHSM$0IhOhc`lceYNT^Phg?sL%8lI?Ns?&V`*c zRdBocy$a9gPIeW|Bs$T^;GR!b6_sshE;@YY_gp~UPvB*7Kl6N3QpB;1NN_*^2mk>f zpdrBaQ2Eo`hgtjKfdM$cIKcK+E@&TbtfT$t|Aou}RsOSm)?qt)eP5#e#_0u9G5^8-Gva`rFPQ&e|Jj)XdOjO*ANC*YKRsXU%zfB@ z$=iQ=KG;33I{(?dy?Xu8el`17kDuM+=zsLT5eMwf?|AwfwVkKM%WwB|v>)T&hy!-# zcRc-#+K%yWJT~HChjicv4%m(ZY5o2e-U9>zKp=e)5dSYJ-Z^~{vUkhl^=tHZCp?kH z`q>9+;D7)SxP}0;>rdL;uu&S+@th^rgWXn^{AFF=V`xmP6 zLQm8mZTksaRPj`m7xe&t;4gDP@IsYOs`8>9xo#d7zpIv~Dlh6m{oudM0l^DZKB>x! zdgQug{)_ZfpHctp{7*IRqI}>VjlUj`bctK)VsIXmk>B_FKdTq@^7|D0wuFay@!ess zi$&(x%>|#u+@X3Fb@P0QtXIgd%~cBlKUMBwFX)@Ts-VrG-!fi7 zn=|^{lG%iLU}b4D-N4h)b3NmhZXDZC3wCq3uOe@&a=xRfT9Ml)+mSDe=PY|qCmQKg zXXO<`@Kh{u}P)77e+J`b^ZYfCz>(RWgv~!7P?33(2w$i>2#H#>Fc|_Qh z^$Vg|uu6y;F)Q)4&`b6oBW$sbY4hW1i<6cC#7@YRVoj;;1hOW_dS{Ze%gCRTQO?P0 zWC0DOPI5U zsW~oLw6^XIsan`<>ynio16ff0_sBq)>sz3jP1&!{CS&XIJM!nhN%CW}eNvC;0#Epr I_*Z2A2KzE2Bme*a literal 0 HcmV?d00001 diff --git a/Win64/proj/OpenSeesNETCore/pch.h b/Win64/proj/OpenSeesNETCore/pch.h new file mode 100644 index 0000000000..9d715b0698 --- /dev/null +++ b/Win64/proj/OpenSeesNETCore/pch.h @@ -0,0 +1,12 @@ +// pch.h: This is a precompiled header file. +// Files listed below are compiled only once, improving build performance for future builds. +// This also affects IntelliSense performance, including code completion and many code browsing features. +// However, files listed here are ALL re-compiled if any one of them is updated between builds. +// Do not add files here that you will be updating frequently as this negates the performance advantage. + +#ifndef PCH_H +#define PCH_H + +// add headers that you want to pre-compile here + +#endif //PCH_H diff --git a/Win64/proj/OpenSeesNETCore/stdafx.cpp b/Win64/proj/OpenSeesNETCore/stdafx.cpp new file mode 100644 index 0000000000..f4a711cd79 --- /dev/null +++ b/Win64/proj/OpenSeesNETCore/stdafx.cpp @@ -0,0 +1,4 @@ +// pch.cpp: source file corresponding to the pre-compiled header +#include "stdafx.h" + +// When you are using pre-compiled headers, this source file is necessary for compilation to succeed. diff --git a/Win64/proj/OpenSeesNETCore/stdafx.h b/Win64/proj/OpenSeesNETCore/stdafx.h new file mode 100644 index 0000000000000000000000000000000000000000..4f32e42f3595d000789ab3177057f29e391a118f GIT binary patch literal 82 kcmezWPnn^Bp@<=oA)O%?NGdSoGvqNOGo&)`GH{WF0rN)(pa1{> literal 0 HcmV?d00001 diff --git a/Win64/proj/OpenSeesNETCore/x64/Release/.NETCoreApp,Version=v3.1.AssemblyAttributes.asm b/Win64/proj/OpenSeesNETCore/x64/Release/.NETCoreApp,Version=v3.1.AssemblyAttributes.asm new file mode 100644 index 0000000000..c3732e60b4 --- /dev/null +++ b/Win64/proj/OpenSeesNETCore/x64/Release/.NETCoreApp,Version=v3.1.AssemblyAttributes.asm @@ -0,0 +1,4 @@ +; Listing generated by Microsoft (R) Optimizing Compiler Version 19.24.28316.0 + +; Generated by VC++ for Common Language Runtime +.file "C:\Users\iMeG\AppData\Local\Temp\.NETCoreApp,Version=v3.1.AssemblyAttributes.cpp" diff --git a/Win64/proj/OpenSeesNETCore/x64/Release/OpenSeesNETCore.vcxprojAssemblyReference.cache b/Win64/proj/OpenSeesNETCore/x64/Release/OpenSeesNETCore.vcxprojAssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..74fe67b1ca671095970d4a7fbcae2417231e8f41 GIT binary patch literal 424 zcmaJ-u};G<5OqjW8p6Ik|d7qIHa$aaSEQ~VhJ06wUg zfH$1a=X>|wnR$${4+lC4`#UZ?+=x~yqk7BFM#exHOMr%8yhLwE8Hy93Wu`E=6%th^m*PD8O$Lhv7_HL>W#6ut}R%kuBaCh zzi$5F_mguWCAQXCF#HnCvxP!jEGpOwEM%4{xBpJN@)DLoC!^Y7A=BR($bpJ27^s(sJ6uF zS%M!}Y()a`N7MfB$03?Dh-iePSCvMPq!k4NiWaIyjrpjlNvvtkcWyJu+$6WRbC)x_ zxp&yPow<2u=ACDroq2b5?iK(*M<0zE9)odi$j#H;D5J&F3JbkCT8ta_pe!1p=x zT2Di04}kk;b+GopK-rP4+k@{tb$ZXqGp?e>m6v;Ozg93> zzUtk}_g%=lc(v=4{{;Bk6p#LAcYN2>p#QqP-U}7oE`|L4Uq#)kYyb32H8k~whp*(q zZkIido+k&pCyHv1g@@m18ur{j^1y=)H$={Mj)YGSj0~I#4^WaO6u_$ZK%F$@&hjw!@+CNpctFx!PYvST;@+wuk5C$Zy? zF;CrVuLR$yA3ONZy%}JFSi&V(mGuK!SV3RZTnztvwK7Fzup`# zv{*b&POpost}VXQ*}G|??7Y|7<7taevC|R5CiVRI>ah*uWqbR&Z@F4?eY$3Cu=4`j z{xEd?U}tS#Zsca$D4R}0?VNX^PJm0Fe5f^gf+d>OFf(0zm-X!uFZ!msO6LV0Olb_2oM5<03l!? zfP1)tS?;6Qe)5C?aR51hdpno4Pj;FqzGY3@pkNdo%PWEzNQv1zq9T_ht_dU~H zZV&Z8^}iVhWWEspY5aFG2V_2*ai68h@=k6$jsGW_8-}QGGCm`eX{@3 zxBp~5I6ba9{yDw9vi{V5HTze_&*^dMf9iiT4mh3P$@DjCJ4;KJ-|6Ype!Bk6IN)@C zC)3}o?R5Q{UmMA=qjbWLIN&%AWcBaA=y!mG03ndQ2=M=7N_Ng(gq+>-Wc?btL;N3! zyjWx9|KXZ@FNPjV4`Lp2ga9EhhXC6BXC3b8_un@84}fHAICe=-bgyd{{gUaC4f@+{ z|AN>jR`4hN7kB>|;lH?es`8WYC;U}8Bgzwhh(979RKvs{;*Tn4M0w&5@kiu?YMA&# z{88nMC{O$${)l`~4Xg4;l($>h%KC}jbQbj?{g?K?CJBGSU%Vbw!^9tZ@+VQh(DxbL zo9O80zjIHrDMSdUBVg<^V(;@~ZvI)lM9Q%c0*UYq;mZQ`OgP?hI;QvLC^A;(1(PgQwd58+Sv ziyYv*Q00@VJg-Nrn}zxJs^zK5^LnU$;=jlN&I?sOsmk+u#JWZP^Yl!gss4repK08A z`GkKw{xTlf61UaO;1VcftS|6YhW}3iUTR8?u%&eo2Mt$hDSWzW~ zUSXusz!;r0$cG^}8;wfvhq5dd@&UL&$Lz5fF2=fXE!K$Dc>s(;*yz=U`8?qFvosyp dJKb|