| 681 | } |
| 682 | |
| 683 | int |
| 684 | Subdomain::computeTang(void) |
| 685 | { |
| 686 | if (theAnalysis != 0) { |
| 687 | // theTimer.start(); |
| 688 | |
| 689 | int res =0; |
| 690 | res = theAnalysis->formTangent(); |
| 691 | |
| 692 | return res; |
| 693 | |
| 694 | } else { |
| 695 | opserr << "Subdomain::getcomputeTang() "; |
| 696 | opserr << " - no StaticCondensationAnalysis has been set\n"; |
| 697 | return 0; |
| 698 | } |
| 699 | } |
| 700 | |
| 701 | |
| 702 |
no test coverage detected