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