Skip to content

Commit

Permalink
ADD original versions of ccx 2.9. 2.10, 2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
prool committed Aug 2, 2016
1 parent e111ae0 commit 2289d3f
Show file tree
Hide file tree
Showing 1,591 changed files with 462,393 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CalculiX/ccx_2.10/src/BUGS
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
2,920 changes: 2,920 additions & 0 deletions CalculiX/ccx_2.10/src/CalculiX.h

Large diffs are not rendered by default.

2,662 changes: 2,662 additions & 0 deletions CalculiX/ccx_2.10/src/LOGBOOK

Large diffs are not rendered by default.

33 changes: 33 additions & 0 deletions CalculiX/ccx_2.10/src/Makefile
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 $@ $?

Loading

0 comments on commit 2289d3f

Please sign in to comment.