-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathOpenSeesMiscCommands.cpp
More file actions
1301 lines (1076 loc) · 32.7 KB
/
OpenSeesMiscCommands.cpp
File metadata and controls
1301 lines (1076 loc) · 32.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* ****************************************************************** **
** OpenSees - Open System for Earthquake Engineering Simulation **
** Pacific Earthquake Engineering Research Center **
** **
** **
** (C) Copyright 1999, The Regents of the University of California **
** All Rights Reserved. **
** **
** Commercial use of this program without express permission of the **
** University of California, Berkeley, is strictly prohibited. See **
** file 'COPYRIGHT' in main directory for information on usage and **
** redistribution, and for a DISCLAIMER OF ALL WARRANTIES. **
** **
** Developed by: **
** Frank McKenna (fmckenna@ce.berkeley.edu) **
** Gregory L. Fenves (fenves@ce.berkeley.edu) **
** Filip C. Filippou (filippou@ce.berkeley.edu) **
** **
** ****************************************************************** */
// Written: Minjie
// Description: misc commands
#include <elementAPI.h>
#include <Domain.h>
#include <LoadPattern.h>
#include <LoadPatternIter.h>
#include <ElementalLoadIter.h>
#include <Element.h>
#include <Parameter.h>
#include <Node.h>
#include <Pressure_Constraint.h>
#include <TimeSeries.h>
#include <SP_Constraint.h>
#include <Matrix.h>
#include <MeshRegion.h>
#include <StringContainer.h>
#include <fstream>
#include <string>
#include <InitialStateParameter.h>
#include <RigidRod.h>
#include <RigidBeam.h>
#include <RigidDiaphragm.h>
int OPS_loadConst()
{
Domain* theDomain = OPS_GetDomain();
if (theDomain == 0) return -1;
theDomain->setLoadConstant();
if (OPS_GetNumRemainingInputArgs() == 2) {
const char* opt = OPS_GetString();
if (strcmp(opt, "-time") == 0) {
double newTime;
int numdata = 1;
if (OPS_GetDoubleInput(&numdata, &newTime) < 0) {
opserr<<"WARNING readingvalue - loadConst -time value\n";
return -1;
}
theDomain->setCurrentTime(newTime);
theDomain->setCommittedTime(newTime);
}
}
return 0;
}
int OPS_calculateNodalReactions()
{
// make sure at least one other argument to contain type of system
int incInertia = 0;
if (OPS_GetNumRemainingInputArgs() == 1) {
const char* type = OPS_GetString();
if ((strcmp(type,"-incInertia") == 0)
|| (strcmp(type,"-dynamical") == 0)
|| (strcmp(type,"-Dynamic") == 0)
|| (strcmp(type,"-dynamic") == 0))
incInertia = 1;
else if ((strcmp(type,"-rayleigh") == 0))
incInertia = 2;
}
Domain* theDomain = OPS_GetDomain();
if (theDomain == 0) return -1;
theDomain->calculateNodalReactions(incInertia);
return 0;
}
int OPS_rayleighDamping()
{
if (OPS_GetNumRemainingInputArgs() < 4) {
opserr << "WARNING rayleigh alphaM? betaK? betaK0? betaKc? - not enough arguments to command\n";
return -1;
}
//double alphaM, betaK, betaK0, betaKc;
double data[4];
int numdata = 4;
if (OPS_GetDoubleInput(&numdata, data) < 0) {
opserr << "WARNING rayleigh alphaM? betaK? betaK0? betaKc? - could not read ? \n";
return -1;
}
Domain* theDomain = OPS_GetDomain();
if (theDomain == 0) return -1;
theDomain->setRayleighDampingFactors(data[0],data[1],data[2],data[3]);
return 0;
}
int OPS_setTime()
{
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING illegal command - time pseudoTime? \n";
return -1;
}
Domain* theDomain = OPS_GetDomain();
if (theDomain == 0) return -1;
double newTime;
int numdata = 1;
if (OPS_GetDoubleInput(&numdata, &newTime) < 0) {
opserr << "WARNING reading time value - time pseudoTime? \n";
return -1;
} else {
theDomain->setCurrentTime(newTime);
theDomain->setCommittedTime(newTime);
}
return 0;
}
int OPS_removeObject()
{
Domain* theDomain = OPS_GetDomain();
if (theDomain == 0) return -1;
// make sure at least one other argument to contain type of system
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING want - remove objectType?\n";
return -1;
}
const char* type = OPS_GetString();
int tag;
if ((strcmp(type,"element") == 0) || (strcmp(type,"ele") == 0)) {
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING want - remove element eleTag?\n";
return -1;
}
int numdata = 1;
if (OPS_GetIntInput(&numdata, &tag) < 0) {
opserr << "WARNING remove element tag? failed to read tag\n ";
return -1;
}
Element *theEle = theDomain->removeElement(tag);
if (theEle != 0) {
// we also have to remove any elemental loads from the domain
LoadPatternIter &theLoadPatterns = theDomain->getLoadPatterns();
LoadPattern *thePattern;
// go through all load patterns
while ((thePattern = theLoadPatterns()) != 0) {
ElementalLoadIter theEleLoads = thePattern->getElementalLoads();
ElementalLoad *theLoad;
// go through all elemental loads in the pattern
while ((theLoad = theEleLoads()) != 0) {
// remove & destroy elemental from elemental load if there
// note - if last element in load, remove the load and delete it
/* *****************
int numLoadsLeft = theLoad->removeElement(tag);
if (numLoadsLeft == 0) {
thePattern->removeElementalLoad(theLoad->getTag());
delete theLoad;
}
*********************/
}
}
// finally invoke the destructor on the element
delete theEle;
}
}
else if (strcmp(type,"loadPattern") == 0) {
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING want - remove loadPattern patternTag?\n";
return -1;
}
int numdata = 1;
if (OPS_GetIntInput(&numdata, &tag) < 0) {
opserr << "WARNING remove loadPattern tag? failed to read tag\n ";
return -1;
}
LoadPattern *thePattern = theDomain->removeLoadPattern(tag);
if (thePattern != 0) {
thePattern->clearAll();
delete thePattern;
}
}
else if (strcmp(type,"parameter") == 0) {
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING want - remove parameter paramTag?\n";
return -1;
}
int numdata = 1;
if (OPS_GetIntInput(&numdata, &tag) < 0) {
opserr << "WARNING remove parameter tag? failed to read tag\n ";
return -1;
}
Parameter *theParameter = theDomain->removeParameter(tag);
if (theParameter != 0) {
delete theParameter;
}
}
else if (strcmp(type,"node") == 0) {
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING want - remove node nodeTag?\n";
return -1;
}
int numdata = 1;
if (OPS_GetIntInput(&numdata, &tag) < 0) {
opserr << "WARNING remove node tag? failed to read tag\n";
return -1;
}
Node *theNode = theDomain->removeNode(tag);
if (theNode != 0) {
delete theNode;
}
Pressure_Constraint* thePC = theDomain->removePressure_Constraint(tag);
if(thePC != 0) {
delete thePC;
}
}
else if (strcmp(type,"recorders") == 0) {
theDomain->removeRecorders();
}
else if ((strcmp(type,"recorder") == 0)) {
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING want - remove recorder recorderTag?\n";
return -1;
}
int numdata = 1;
if (OPS_GetIntInput(&numdata, &tag) < 0) {
opserr << "WARNING remove recorder tag? failed to read tag\n";
return -1;
}
return theDomain->removeRecorder(tag);
}
else if ((strcmp(type,"timeSeries") == 0)) {
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING want - remove timeSeries $tag\n";
return -1;
}
int numdata = 1;
if (OPS_GetIntInput(&numdata, &tag) < 0) {
opserr << "WARNING remove timeSeries tag? failed to read tag\n";
return -1;
}
return OPS_removeTimeSeries(tag);
}
else if ((strcmp(type,"SPconstraint") == 0) || (strcmp(type,"sp") == 0)) {
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING want - remove SPconstraint spTag? -or- remove SPconstraint nodeTag? dofTag? <patternTag?>\n";
return -1;
}
if (OPS_GetNumRemainingInputArgs() == 1) {
int numdata = 1;
if (OPS_GetIntInput(&numdata, &tag) < 0) {
opserr << "WARNING remove sp tag? failed to read tag\n";
return -1;
}
SP_Constraint *theSPconstraint = theDomain->removeSP_Constraint(tag);
if (theSPconstraint != 0) {
delete theSPconstraint;
}
} else {
// nodeTag, dofTag patternTag
int tags[3] = {0,0,-1};
int numdata = OPS_GetNumRemainingInputArgs();
if (numdata > 3) numdata = 3;
if (OPS_GetIntInput(&numdata, tags) < 0) {
opserr << "WARNING remove sp tag? failed to read tags\n";
return -1;
}
tags[1]--; // one for C++ indexing of dof
theDomain->removeSP_Constraint(tags[0],tags[1],tags[2]);
return 0;
}
}
else if ((strcmp(type,"MPconstraint") == 0) || (strcmp(type,"mp") == 0)) {
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING want - remove MPconstraint nNodeTag? -or- remove MPconstraint -tag mpTag\n";
return -1;
}
int nodTag = 0;
if (OPS_GetNumRemainingInputArgs() == 1) {
int numdata = 1;
if (OPS_GetIntInput(&numdata, &nodTag) < 0) {
opserr << "WARNING remove mp tag? failed to read tag\n";
return -1;
}
theDomain->removeMP_Constraints(nodTag);
return 0;
}
if (OPS_GetNumRemainingInputArgs() > 1) {
const char* type = OPS_GetString();
if (strcmp(type,"-tag") == 0) {
int numdata = 1;
if (OPS_GetIntInput(&numdata, &nodTag) < 0) {
opserr << "WARNING remove mp -tag mpTag? failed to read mpTag\n";
return -1;
}
}
theDomain->removeMP_Constraint(nodTag);
return 0;
}
}
else
opserr << "WARNING remove " << type << " not supported\n";
return 0;
}
int OPS_addNodalMass()
{
if (OPS_GetNumRemainingInputArgs() < 2) {
opserr << "WARNING want - mass nodeTag? <mass values>?\n";
return -1;
}
int nodeTag;
int numdata = 1;
if (OPS_GetIntInput(&numdata, &nodeTag) < 0) {
opserr << "WARNING invalid nodeTag\n";
return -1;
}
int ndf = OPS_GetNDF();
Matrix mass(ndf, ndf);
double theMass;
for (int i=0; i<ndf; i++) {
if (OPS_GetNumRemainingInputArgs() < 1) {
break;
}
if (OPS_GetDoubleInput(&numdata, &theMass) < 0) {
opserr << "WARNING invalid mass value\n";
return -1;
}
mass(i,i) = theMass;
}
Domain* theDomain = OPS_GetDomain();
if (theDomain == 0) return -1;
if (theDomain->setMass(mass, nodeTag) != 0) {
opserr << "WARNING failed to set mass at node " << nodeTag << "\n";
return -1;
}
return 0;
}
int OPS_buildModel()
{
return 0;
}
int OPS_setNodeVel()
{
// make sure at least one other argument to contain type of system
if (OPS_GetNumRemainingInputArgs() < 3) {
opserr << "WARNING want - setNodeVel nodeTag? dof? value?\n";
return -1;
}
int tag;
int dof = -1;
double value = 0.0;
int numdata = 1;
if (OPS_GetIntInput(&numdata, &tag) < 0) {
opserr << "WARNING nodeVel nodeTag? dof? - could not read nodeTag? \n";
return -1;
}
Domain* theDomain = OPS_GetDomain();
if (theDomain == 0) return -1;
Node *theNode = theDomain->getNode(tag);
if (theNode == 0) {
opserr << "WARNING setNodeVel -- node with tag " << tag << " not found" << endln;
return -1;
}
if (OPS_GetIntInput(&numdata, &dof) < 0) {
opserr << "WARNING setNodeVel nodeTag? dof? value?- could not read dof? \n";
return -1;
}
if (OPS_GetDoubleInput(&numdata, &value) < 0) {
opserr << "WARNING setNodeVel nodeTag? dof? value?- could not read dof? \n";
return -1;
}
dof--;
int numDOF = theNode->getNumberDOF();
if (dof >= 0 && dof < numDOF) {
Vector vel(numDOF);
vel = theNode->getVel();
vel(dof) = value;
theNode->setTrialVel(vel);
}
return 0;
}
int OPS_setElementRayleighDampingFactors()
{
if (OPS_GetNumRemainingInputArgs() < 5) {
opserr << "WARNING setElementRayleighDampingFactors eleTag? alphaM? betaK? betaK0? betaKc? - not enough arguments to command\n";
return -1;
}
int eleTag;
int numdata = 1;
if (OPS_GetIntInput(&numdata, &eleTag) < 0) {
opserr << "WARNING rayleigh alphaM? betaK? betaK0? betaKc? - could not read eleTag? \n";
return -1;
}
numdata = 4;
double data[4];
if (OPS_GetDoubleInput(&numdata, data) < 0) {
opserr << "WARNING rayleigh alphaM? betaK? betaK0? betaKc? - could not read double inputs? \n";
return -1;
}
double alphaM = data[0];
double betaK = data[1];
double betaK0 = data[2];
double betaKc = data[3];
Domain* theDomain = OPS_GetDomain();
if (theDomain == 0) return -1;
Element *theEle = theDomain->getElement(eleTag);
theEle->setRayleighDampingFactors(alphaM, betaK, betaK0, betaKc);
return 0;
}
int OPS_MeshRegion()
{
int tag;
double alphaM = 0.0;
double betaK = 0.0;
double betaK0 = 0.0;
double betaKc = 0.0;
ID *theNodes = 0;
ID *theElements = 0;
int numNodes = 0;
int numElements = 0;
Domain* theDomain = OPS_GetDomain();
if (theDomain == 0) return -1;
// first get tag for region
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING region tag? - no tag specified\n";
return -1;
}
int numdata = 1;
if (OPS_GetIntInput(&numdata, &tag) < 0) {
opserr << "WARNING region tag? .. - invalid tag " << endln;
return -1;
}
// now contine until end of command
while (OPS_GetNumRemainingInputArgs() > 0) {
const char* flag = OPS_GetString();
if (strcmp(flag,"-ele") == 0) {
// ensure no segmentation fault if user messes up
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING region tag? .. -ele tag1? .. - no ele tags specified\n";
return -1;
}
//
// read in a list of ele until end of command or other flag
//
if (theElements == 0) {
theElements = new ID(0, 64);
}
int eleTag;
while (OPS_GetNumRemainingInputArgs() > 0) {
if (OPS_GetIntInput(&numdata, &eleTag) < 0) {
// back one arg
OPS_ResetCurrentInputArg(-1);
break;
}
(*theElements)[numElements++] = eleTag;
}
} else if (strcmp(flag,"-eleRange") == 0) {
// ensure no segmentation fault if user messes up
if (OPS_GetNumRemainingInputArgs() < 2) {
opserr << "WARNING region tag? .. -eleRange start? end? .. - no ele tags specified\n";
return -1;
}
//
// read in start and end tags of two elements & add set [start,end]
//
int start, end;
if (OPS_GetIntInput(&numdata, &start) < 0) {
opserr << "WARNING region tag? -eleRange start? end? - invalid start " << endln;
return -1;
}
if (OPS_GetIntInput(&numdata, &end) < 0) {
opserr << "WARNING region tag? -eleRange start? end? - invalid end " << endln;
return -1;
}
if (start > end) {
int swap = end;
end = start;
start = swap;
}
int numEle = end-start+1;
if (theElements == 0) {
theElements = new ID(0, numEle);
}
for (int i=start; i<=end; i++) {
(*theElements)[numElements++] = i;
}
} else if (strcmp(flag,"-node") == 0) {
// ensure no segmentation fault if user messes up
if (OPS_GetNumRemainingInputArgs() < 1) {
opserr << "WARNING region tag? .. -node tag1? .. - no node tags specified\n";
return -1;
}
// read in list of nodes
if (theNodes == 0) {
theNodes = new ID(0, 64);
}
int nodTag;
while (OPS_GetNumRemainingInputArgs() > 0) {
if (OPS_GetIntInput(&numdata, &nodTag) < 0) {
// back one arg
OPS_ResetCurrentInputArg(-1);
break;
}
(*theNodes)[numNodes++] = nodTag;
}
} else if (strcmp(flag,"-nodeRange") == 0) {
// ensure no segmentation fault if user messes up
if (OPS_GetNumRemainingInputArgs() < 2) {
opserr << "WARNING region tag? .. -nodeRange start? end? .. - no node tags specified\n";
return -1;
}
// read in start and end ele tags
int start, end;
if (OPS_GetIntInput(&numdata, &start) < 0) {
opserr << "WARNING region tag? -nodeRange start? end? - invalid start " << endln;
return -1;
}
if (OPS_GetIntInput(&numdata, &end) < 0) {
opserr << "WARNING region tag? -nodeRange start? end? - invalid end " << endln;
return -1;
}
if (start > end) {
int swap = end;
end = start;
start = swap;
}
int numNode = end-start+1;
if (theNodes == 0) {
theNodes = new ID(0, numNode);
}
for (int i=start; i<=end; i++) {
(*theNodes)[numNodes++] = i;
}
} else if (strcmp(flag,"-rayleigh") == 0) {
// ensure no segmentation fault if user messes up
if (OPS_GetNumRemainingInputArgs() < 4) {
opserr << "WARNING region tag? .. -rayleigh aM? bK? bK0? .. - not enough factors\n";
return -1;
}
// read in rayleigh damping factors
if (OPS_GetDoubleInput(&numdata, &alphaM) < 0) {
opserr << "WARNING region tag? .. -rayleigh aM bK bK0 - invalid aM " << endln;
return -1;
}
if (OPS_GetDoubleInput(&numdata, &betaK) < 0) {
opserr << "WARNING region tag? .. -rayleigh aM bK bK0 - invalid bK " << endln;
return -1;
}
if (OPS_GetDoubleInput(&numdata, &betaK0) < 0) {
opserr << "WARNING region tag? .. -rayleigh aM bK bK0 - invalid bK0 " << endln;
return -1;
}
if (OPS_GetDoubleInput(&numdata, &betaKc) < 0) {
opserr << "WARNING region tag? .. -rayleigh aM bK bK0 - invalid bKc " << endln;
return -1;
}
} else if (strcmp(flag,"getNodeTags") == 0) {
MeshRegion* region = theDomain->getRegion(tag);
if (region == 0) {
opserr<<"WARNING: region "<<tag<<"does not exist\n";
return -1;
}
const ID& nodes = region->getNodes();
int size = nodes.Size();
double* data = new double[size];
for (int i=0; i<size; i++) {
data[i] = nodes(i);
}
if (OPS_SetDoubleOutput(&size, data) < 0) {
opserr << "WARNING region failed to get node tags\n";
delete [] data;
return -1;
}
delete [] data;
return 0;
} else if (strcmp(flag,"getConnectedEleTags") == 0) {
MeshRegion* region = theDomain->getRegion(tag);
if (region == 0) {
opserr<<"WARNING: region "<<tag<<"does not exist\n";
return -1;
}
const ID& eles = region->getElements();
int size = eles.Size();
double* data = new double[size];
for (int i=0; i<size; i++) {
data[i] = eles(i);
}
if (OPS_SetDoubleOutput(&size, data) < 0) {
opserr << "WARNING region failed to get connected element tags\n";
delete [] data;
return -1;
}
delete [] data;
return 0;
} else if (strcmp(flag,"getEleTags") == 0) {
MeshRegion* region = theDomain->getRegion(tag);
if (region == 0) {
opserr<<"WARNING: region "<<tag<<"does not exist\n";
return -1;
}
const ID& eles = region->getExtraEles();
int size = eles.Size();
double* data = new double[size];
for (int i=0; i<size; i++) {
data[i] = eles(i);
}
if (OPS_SetDoubleOutput(&size, data) < 0) {
opserr << "WARNING region failed to get extra element tags\n";
delete [] data;
return -1;
}
delete [] data;
return 0;
}
}
MeshRegion *theRegion = theDomain->getRegion(tag);
if (theRegion == 0) {
theRegion = new MeshRegion(tag);
if (theRegion == 0) {
opserr << "could not create region\n";
return -1;
}
if (theDomain->addRegion(*theRegion) < 0) {
opserr << "WARNING could not add to domain - region " << tag << endln;
delete theRegion;
return -1;
}
}
// if elements or nodes have been set, set them in the Region
if (theElements != 0) {
theRegion->setElements(*theElements);
}
if (theNodes != 0) {
if (theElements == 0) {
theRegion->setNodes(*theNodes);
} else {
opserr << "WARNING region - both elements & nodes set, ONLY set using elements\n";
}
}
// if damping has been specified set the damping factors
if (alphaM != 0.0 || betaK != 0.0 || betaK0 != 0.0 || betaKc != 0.0) {
theRegion->setRayleighDampingFactors(alphaM, betaK, betaK0, betaKc);
}
if (theElements != 0) {
delete theElements;
}
if (theNodes != 0) {
delete theNodes;
}
return 0;
}
extern
int peerSearchNGA(const char *eq,
const char *soilType,
const char *fault,
const char *magLo,
const char *magHi,
const char *distLo,
const char *distHi,
const char *vsLo,
const char *vsHi,
const char *pgaLo,
const char *pgaHi,
const char *latSW,
const char *latNE,
const char *lngSW,
const char *lngNW,
StringContainer &recordNames);
int OPS_peerNGA()
{
StringContainer ngaRecordNames;
const char *eq =0;
const char *soilType = 0;
const char *fault =0;
const char *magLo =0;
const char *magHi =0;
const char *distLo =0;
const char *distHi =0;
const char *vsLo =0;
const char *vsHi =0;
const char *pgaLo =0;
const char *pgaHi =0;
const char *latSW =0;
const char *latNE =0;
const char *lngSW =0;
const char *lngNW =0;
while (OPS_GetNumRemainingInputArgs() > 1) {
const char* flag = OPS_GetString();
if (strcmp(flag,"-eq") == 0) {
eq = OPS_GetString();
} else if (strcmp(flag,"-fault") == 0) {
fault = OPS_GetString();
} else if (strcmp(flag,"-soil") == 0) {
soilType = OPS_GetString();
} else if (strcmp(flag,"-magLo") == 0) {
magLo = OPS_GetString();
} else if (strcmp(flag,"-magHi") == 0) {
magHi = OPS_GetString();
} else if (strcmp(flag,"-distLo") == 0) {
distLo = OPS_GetString();
} else if (strcmp(flag,"-distHi") == 0) {
distHi = OPS_GetString();
} else if (strcmp(flag,"-vsLo") == 0) {
vsLo = OPS_GetString();
} else if (strcmp(flag,"-vsHi") == 0) {
vsHi = OPS_GetString();
} else if (strcmp(flag,"-pgaLo") == 0) {
pgaLo = OPS_GetString();
} else if (strcmp(flag,"-pgaHi") == 0) {
pgaHi = OPS_GetString();
} else if (strcmp(flag,"-latSW") == 0) {
latSW = OPS_GetString();
} else if (strcmp(flag,"-latNE") == 0) {
latNE = OPS_GetString();
} else if (strcmp(flag,"-lngSW") == 0) {
lngSW = OPS_GetString();
} else if (strcmp(flag,"-lngNW") == 0) {
lngNW = OPS_GetString();
}
}
peerSearchNGA(eq,
soilType,
fault,
magLo,
magHi,
distLo,
distHi,
vsLo,
vsHi,
pgaLo,
pgaHi,
latSW,
latNE,
lngSW,
lngNW,
ngaRecordNames);
int numStrings = ngaRecordNames.getNumStrings();
if (numStrings == 0) return 0;
int len = 3;
for (int i=0; i<numStrings; i++) {
len += (int)strlen(ngaRecordNames.getString(i))+3;
}
char* result = new char[len];
strcpy(result, " ");
for (int i=0; i<numStrings; i++) {
strcat(result, ngaRecordNames.getString(i));
strcat(result, " ");
}
if (OPS_SetString(result) < 0) {
opserr << "WARNING failed to set result string\n";
delete [] result;
return -1;
}
delete [] result;
return 0;
}
int OPS_domainChange()
{
Domain* theDomain = OPS_GetDomain();
if (theDomain == 0) return -1;
theDomain->domainChange();
return 0;
}
int OPS_record()
{
Domain* theDomain = OPS_GetDomain();
if (theDomain == 0) return -1;
theDomain->record(false);
return 0;
}
int OPS_stripOpenSeesXML()
{
if (OPS_GetNumRemainingInputArgs() < 2) {
opserr << "ERROR incorrect # args - stripXML input.xml output.dat <output.xml>\n";
return -1;
}
const char *inputFile = OPS_GetString();
const char *outputDataFile = OPS_GetString();
const char *outputDescriptiveFile = 0;
if (OPS_GetNumRemainingInputArgs() > 0) {
outputDescriptiveFile = OPS_GetString();
}
// open files
std::ifstream theInputFile;
theInputFile.open(inputFile, std::ios::in);
if (theInputFile.bad()) {
opserr << "stripXML - error opening input file: " << inputFile << endln;
return -1;
}
std::ofstream theOutputDataFile;
theOutputDataFile.open(outputDataFile, std::ios::out);
if (theOutputDataFile.bad()) {
opserr << "stripXML - error opening input file: " << outputDataFile << endln;
return -1;
}
std::ofstream theOutputDescriptiveFile;
if (outputDescriptiveFile != 0) {
theOutputDescriptiveFile.open(outputDescriptiveFile, std::ios::out);
if (theOutputDescriptiveFile.bad()) {
opserr << "stripXML - error opening input file: " << outputDescriptiveFile << endln;
return -1;
}
}
std::string line;
bool spitData = false;
while (! theInputFile.eof() ) {
getline(theInputFile, line);
const char *inputLine = line.c_str();
if (spitData == true) {
if (strstr(inputLine,"</Data>") != 0)
spitData = false;
else {
//theOutputDataFile << line << endln;
}
} else {
const char *inputLine = line.c_str();
if (strstr(inputLine,"<Data>") != 0)
spitData = true;
else if (outputDescriptiveFile != 0) {
//theOutputDescriptiveFile << line << endln;
}
}
}
theInputFile.close();
theOutputDataFile.close();
if (outputDescriptiveFile != 0)
theOutputDescriptiveFile.close();
return 0;
}
extern int binaryToText(const char *inputFilename, const char *outputFilename);
extern int textToBinary(const char *inputFilename, const char *outputFilename);
int OPS_convertBinaryToText()
{
if (OPS_GetNumRemainingInputArgs() < 2) {
opserr << "ERROR incorrect # args - convertBinaryToText inputFile outputFile\n";
return -1;
}
const char *inputFile = OPS_GetString();
const char *outputFile = OPS_GetString();