| 196 | } |
| 197 | |
| 198 | static void* OPS_FiberSectionAsym() |
| 199 | { |
| 200 | void* theSec = 0; |
| 201 | int ndm = OPS_GetNDM(); |
| 202 | int ndf = OPS_GetNDF(); |
| 203 | if (ndm == 2) { |
| 204 | //theSec = OPS_FiberSectionAsym2d(); |
| 205 | //theActiveFiberSectionAsym2d = (FiberSectionAsym2d*)theSec; |
| 206 | } |
| 207 | else if (ndm == 3) { |
| 208 | theSec = OPS_FiberSectionAsym3d(); |
| 209 | theActiveFiberSectionAsym3d = (FiberSectionAsym3d*)theSec; |
| 210 | } |
| 211 | |
| 212 | return theSec; |
| 213 | } |
| 214 | |
| 215 | static void* OPS_FiberSectionThermal() |
| 216 | { |
nothing calls this directly
no test coverage detected