Skip to content

Commit a1f32a3

Browse files
committed
CU-BENs v3.0: nonlinear analysis capability enabled for use with Newmark time intigration within transient dynamic analyses
1 parent 41327f8 commit a1f32a3

File tree

12 files changed

+625
-614
lines changed

12 files changed

+625
-614
lines changed

arc.c

Lines changed: 52 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,55 @@
1-
//********************************************************************************//
2-
//** **//
3-
//** Pertains to CU-BEN ver 2.0 **//
4-
//** **//
5-
//** Copyright (c) 2015 C. J. Earls **//
6-
//** Developed by C. J. Earls, Cornell University **//
7-
//** All rights reserved. **//
8-
//** **//
9-
//** Contributors: **//
10-
//** Christopher Stull **//
11-
//** Heather Reed **//
12-
//** Justyna Kosianka **//
13-
//** **//
14-
//** Redistribution and use in source and binary forms, with or without **//
15-
//** modification, are permitted provided that the following conditions are **//
16-
//** met: **//
17-
//** **//
18-
//** - Redistributions of source code must retain the above copyright **//
19-
//** notice, this list of conditions and the following disclaimer. **//
20-
//** **//
21-
//** - Redistributions in binary form must reproduce the above copyright **//
22-
//** notice, this list of conditions and the following disclaimer listed **//
23-
//** in this license in the documentation and/or other materials **//
24-
//** provided with the distribution. **//
25-
//** **//
26-
//** - Neither the name of the copyright holders nor the name of Cornell **//
27-
//** University may be used to endorse or promote products derived from **//
28-
//** this software without specific prior written permission. **//
29-
//** **//
30-
//** Private, research, and institutional usage is without charge. **//
31-
//** Distribution of modified versions of this soure code is admissible **//
32-
//** UNDER THE CONDITION THAT THIS SOURCE CODE REMAINS UNDER COPYRIGHT OF **//
33-
//** THE ORIGINAL DEVELOPERS, BOTH SOURCE AND OBJECT CODE ARE MADE FREELY **//
34-
//** AVAILABLE WITHOUT CHARGE, AND CLEAR NOTICE IS GIVEN OF THE MODIFICATIONS. **//
35-
//** Distribution of this code as part of a commercial system is permissible **//
36-
//** ONLY BY DIRECT ARRANGEMENT WITH THE DEVELOPERS. **//
37-
//** **//
38-
//** **//
39-
//** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS **//
40-
//** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT **//
41-
//** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR **//
42-
//** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT **//
43-
//** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, **//
44-
//** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT **//
45-
//** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, **//
46-
//** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY **//
47-
//** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT **//
48-
//** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE **//
49-
//** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. **//
50-
//** **//
51-
//********************************************************************************//
1+
//********************************************************************************
2+
//** **
3+
//** Pertains to CU-BEN ver 3.0 **
4+
//** **
5+
//** Copyright (c) 2016 C. J. Earls **
6+
//** Developed by C. J. Earls, Cornell University **
7+
//** All rights reserved. **
8+
//** **
9+
//** Contributors: **
10+
//** Christopher Stull **
11+
//** Heather Reed **
12+
//** Justyna Kosianka **
13+
//** Wensi Wu **
14+
//** **
15+
//** Redistribution and use in source and binary forms, with or without **
16+
//** modification, are permitted provided that the following conditions are **
17+
//** met: **
18+
//** **
19+
//** - Redistributions of source code must retain the above copyright **
20+
//** notice, this list of conditions and the following disclaimer. **
21+
//** **
22+
//** - Redistributions in binary form must reproduce the above copyright **
23+
//** notice, this list of conditions and the following disclaimer listed **
24+
//** in this license in the documentation and/or other materials **
25+
//** provided with the distribution. **
26+
//** **
27+
//** - Neither the name of the copyright holders nor the name of Cornell **
28+
//** University may be used to endorse or promote products derived from **
29+
//** this software without specific prior written permission. **
30+
//** **
31+
//** Private, research, and institutional usage is without charge. **
32+
//** Distribution of modified versions of this soure code is admissible **
33+
//** UNDER THE CONDITION THAT THIS SOURCE CODE REMAINS UNDER COPYRIGHT OF **
34+
//** THE ORIGINAL DEVELOPERS, BOTH SOURCE AND OBJECT CODE ARE MADE FREELY **
35+
//** AVAILABLE WITHOUT CHARGE, AND CLEAR NOTICE IS GIVEN OF THE MODIFICATIONS. **
36+
//** Distribution of this code as part of a commercial system is permissible **
37+
//** ONLY BY DIRECT ARRANGEMENT WITH THE DEVELOPERS. **
38+
//** **
39+
//** **
40+
//** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS **
41+
//** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT **
42+
//** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR **
43+
//** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT **
44+
//** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, **
45+
//** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT **
46+
//** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, **
47+
//** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY **
48+
//** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT **
49+
//** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE **
50+
//** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. **
51+
//** **
52+
//********************************************************************************
5253

5354

5455
#include <stdio.h>

brick.c

Lines changed: 52 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,55 @@
1-
//********************************************************************************//
2-
//** **//
3-
//** Pertains to CU-BEN ver 2.0 **//
4-
//** **//
5-
//** Copyright (c) 2015 C. J. Earls **//
6-
//** Developed by C. J. Earls, Cornell University **//
7-
//** All rights reserved. **//
8-
//** **//
9-
//** Contributors: **//
10-
//** Christopher Stull **//
11-
//** Heather Reed **//
12-
//** Justyna Kosianka **//
13-
//** **//
14-
//** Redistribution and use in source and binary forms, with or without **//
15-
//** modification, are permitted provided that the following conditions are **//
16-
//** met: **//
17-
//** **//
18-
//** - Redistributions of source code must retain the above copyright **//
19-
//** notice, this list of conditions and the following disclaimer. **//
20-
//** **//
21-
//** - Redistributions in binary form must reproduce the above copyright **//
22-
//** notice, this list of conditions and the following disclaimer listed **//
23-
//** in this license in the documentation and/or other materials **//
24-
//** provided with the distribution. **//
25-
//** **//
26-
//** - Neither the name of the copyright holders nor the name of Cornell **//
27-
//** University may be used to endorse or promote products derived from **//
28-
//** this software without specific prior written permission. **//
29-
//** **//
30-
//** Private, research, and institutional usage is without charge. **//
31-
//** Distribution of modified versions of this soure code is admissible **//
32-
//** UNDER THE CONDITION THAT THIS SOURCE CODE REMAINS UNDER COPYRIGHT OF **//
33-
//** THE ORIGINAL DEVELOPERS, BOTH SOURCE AND OBJECT CODE ARE MADE FREELY **//
34-
//** AVAILABLE WITHOUT CHARGE, AND CLEAR NOTICE IS GIVEN OF THE MODIFICATIONS. **//
35-
//** Distribution of this code as part of a commercial system is permissible **//
36-
//** ONLY BY DIRECT ARRANGEMENT WITH THE DEVELOPERS. **//
37-
//** **//
38-
//** **//
39-
//** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS **//
40-
//** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT **//
41-
//** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR **//
42-
//** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT **//
43-
//** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, **//
44-
//** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT **//
45-
//** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, **//
46-
//** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY **//
47-
//** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT **//
48-
//** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE **//
49-
//** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. **//
50-
//** **//
51-
//********************************************************************************//
1+
//********************************************************************************
2+
//** **
3+
//** Pertains to CU-BEN ver 3.0 **
4+
//** **
5+
//** Copyright (c) 2016 C. J. Earls **
6+
//** Developed by C. J. Earls, Cornell University **
7+
//** All rights reserved. **
8+
//** **
9+
//** Contributors: **
10+
//** Christopher Stull **
11+
//** Heather Reed **
12+
//** Justyna Kosianka **
13+
//** Wensi Wu **
14+
//** **
15+
//** Redistribution and use in source and binary forms, with or without **
16+
//** modification, are permitted provided that the following conditions are **
17+
//** met: **
18+
//** **
19+
//** - Redistributions of source code must retain the above copyright **
20+
//** notice, this list of conditions and the following disclaimer. **
21+
//** **
22+
//** - Redistributions in binary form must reproduce the above copyright **
23+
//** notice, this list of conditions and the following disclaimer listed **
24+
//** in this license in the documentation and/or other materials **
25+
//** provided with the distribution. **
26+
//** **
27+
//** - Neither the name of the copyright holders nor the name of Cornell **
28+
//** University may be used to endorse or promote products derived from **
29+
//** this software without specific prior written permission. **
30+
//** **
31+
//** Private, research, and institutional usage is without charge. **
32+
//** Distribution of modified versions of this soure code is admissible **
33+
//** UNDER THE CONDITION THAT THIS SOURCE CODE REMAINS UNDER COPYRIGHT OF **
34+
//** THE ORIGINAL DEVELOPERS, BOTH SOURCE AND OBJECT CODE ARE MADE FREELY **
35+
//** AVAILABLE WITHOUT CHARGE, AND CLEAR NOTICE IS GIVEN OF THE MODIFICATIONS. **
36+
//** Distribution of this code as part of a commercial system is permissible **
37+
//** ONLY BY DIRECT ARRANGEMENT WITH THE DEVELOPERS. **
38+
//** **
39+
//** **
40+
//** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS **
41+
//** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT **
42+
//** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR **
43+
//** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT **
44+
//** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, **
45+
//** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT **
46+
//** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, **
47+
//** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY **
48+
//** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT **
49+
//** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE **
50+
//** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. **
51+
//** **
52+
//********************************************************************************
5253

5354

5455
#include <stdio.h>

0 commit comments

Comments
 (0)