| 37 | } |
| 38 | |
| 39 | void* OPS_PDeltaCrdTransf() |
| 40 | { |
| 41 | int ndm = OPS_GetNDM(); |
| 42 | int ndf = OPS_GetNDF(); |
| 43 | if(ndm == 2 && ndf == 3) { |
| 44 | return OPS_PDeltaCrdTransf2d(); |
| 45 | } else if(ndm == 3 && ndf == 6) { |
| 46 | return OPS_PDeltaCrdTransf3d(); |
| 47 | } else { |
| 48 | opserr<<"current NDM and NDF is incompatible with frame elements\n"; |
| 49 | return 0; |
| 50 | } |
| 51 | } |
| 52 | void* OPS_CorotCrdTransf() |
| 53 | { |
| 54 | int ndm = OPS_GetNDM(); |
no test coverage detected