-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ADD original versions of ccx 2.9. 2.10, 2.11
- Loading branch information
Showing
1,591 changed files
with
462,393 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
==== | ||
BUGS Version 2.10 | ||
==== | ||
|
||
- Ogden material with 2 or 3 equal eigenvalues does not work | ||
properly |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
CFLAGS = -Wall -O3 -fopenmp -I ../../../SPOOLES.2.2 -DARCH="Linux" -DSPOOLES -DARPACK -DMATRIXSTORAGE | ||
FFLAGS = -Wall -O3 -fopenmp | ||
|
||
CC=cc | ||
FC=gfortran | ||
|
||
.c.o : | ||
$(CC) $(CFLAGS) -c $< | ||
.f.o : | ||
$(FC) $(FFLAGS) -c $< | ||
|
||
include Makefile.inc | ||
|
||
SCCXMAIN = ccx_2.10.c | ||
|
||
OCCXF = $(SCCXF:.f=.o) | ||
OCCXC = $(SCCXC:.c=.o) | ||
OCCXMAIN = $(SCCXMAIN:.c=.o) | ||
|
||
DIR=../../../SPOOLES.2.2 | ||
|
||
LIBS = \ | ||
$(DIR)/spooles.a \ | ||
../../../ARPACK/libarpack_INTEL.a \ | ||
-lpthread -lm -lc | ||
|
||
ccx_2.10: $(OCCXMAIN) ccx_2.10.a $(LIBS) | ||
./date.pl; $(CC) $(CFLAGS) -c ccx_2.10.c; $(FC) -fopenmp -Wall -O3 -o $@ $(OCCXMAIN) ccx_2.10.a $(LIBS) | ||
|
||
ccx_2.10.a: $(OCCXF) $(OCCXC) | ||
ar vr $@ $? | ||
|
Oops, something went wrong.