forked from richti83/LIGGGHTS-WITH-BONDS
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release version 3.0.4 on 2014-10-30_18-31-03
- Loading branch information
Showing
90 changed files
with
1,134 additions
and
207 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
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
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
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
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
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
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
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
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
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
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
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
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
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,5 @@ | ||
# Settings that the LAMMPS build will import when this package library is used | ||
|
||
poems_SYSINC = | ||
poems_SYSLIB = | ||
poems_SYSPATH = |
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,117 @@ | ||
# openmpi = Ubuntu 12.04, mpic++, OpenMPI-1.6 | ||
|
||
SHELL = /bin/sh | ||
|
||
# --------------------------------------------------------------------- | ||
# compiler/linker settings | ||
# specify flags and libraries needed for your compiler | ||
|
||
CC = mpic++ | ||
CCFLAGS = -O2 \ | ||
-funroll-loops -fstrict-aliasing -Wall -Wno-uninitialized -fPIC | ||
SHFLAGS = -fPIC | ||
DEPFLAGS = -M | ||
LINK = mpic++ | ||
LINKFLAGS = -O2 | ||
LIB = -lstdc++ | ||
ARCHIVE = ar | ||
ARFLAGS = -rcsv | ||
SIZE = size | ||
SHLIBFLAGS = -shared | ||
|
||
# --------------------------------------------------------------------- | ||
# LAMMPS-specific settings | ||
# specify settings for LAMMPS features you will use | ||
# if you change any -D setting, do full re-compile after "make clean" | ||
|
||
# LAMMPS ifdef settings, OPTIONAL | ||
# see possible settings in doc/Section_start.html#2_2 (step 4) | ||
|
||
LMP_INC = -DLAMMPS_GZIP -DLAMMPS_VTK | ||
|
||
# MPI library, REQUIRED | ||
# see discussion in doc/Section_start.html#2_2 (step 5) | ||
# can point to dummy MPI library in src/STUBS as in Makefile.serial | ||
# INC = path for mpi.h, MPI compiler settings | ||
# PATH = path for MPI library | ||
# LIB = name of MPI library | ||
|
||
MPI_INC = | ||
MPI_PATH = | ||
MPI_LIB = | ||
|
||
# FFT library, OPTIONAL | ||
# see discussion in doc/Section_start.html#2_2 (step 6) | ||
# can be left blank to use provided KISS FFT library | ||
# INC = -DFFT setting, e.g. -DFFT_FFTW, FFT compiler settings | ||
# PATH = path for FFT library | ||
# LIB = name of FFT library | ||
|
||
FFT_INC = | ||
FFT_PATH = | ||
FFT_LIB = | ||
|
||
# JPEG and/or PNG library, OPTIONAL | ||
# see discussion in doc/Section_start.html#2_2 (step 7) | ||
# only needed if -DLAMMPS_JPEG or -DLAMMPS_PNG listed with LMP_INC | ||
# INC = path(s) for jpeglib.h and/or png.h | ||
# PATH = path(s) for JPEG library and/or PNG library | ||
# LIB = name(s) of JPEG library and/or PNG library | ||
|
||
JPG_INC = | ||
JPG_PATH = | ||
JPG_LIB = | ||
|
||
# VTK library, OPTIONAL | ||
# INC = path for VTK header files | ||
# PATH = path for VTK library | ||
# LIB = name of VTK library | ||
##################################### ADD THESE ITEMS TO OPTIONS FILE OF SOLVER APP IN CFDEM | ||
|
||
VTK_INC = -I/usr/include/vtk-5.8 | ||
VTK_PATH = | ||
VTK_LIB = -lvtkCommon -lvtkFiltering -lvtkIO | ||
|
||
# --------------------------------------------------------------------- | ||
# build rules and dependencies | ||
# no need to edit this section | ||
|
||
include Makefile.package.settings | ||
include Makefile.package | ||
|
||
EXTRA_INC = $(LMP_INC) $(PKG_INC) $(MPI_INC) $(FFT_INC) $(JPG_INC) $(VTK_INC) $(PKG_SYSINC) | ||
EXTRA_PATH = $(PKG_PATH) $(MPI_PATH) $(FFT_PATH) $(JPG_PATH) $(VTK_PATH) $(PKG_SYSPATH) | ||
EXTRA_LIB = $(PKG_LIB) $(MPI_LIB) $(FFT_LIB) $(JPG_LIB) $(VTK_LIB) $(PKG_SYSLIB) | ||
|
||
# Path to src files | ||
|
||
vpath %.cpp .. | ||
vpath %.h .. | ||
|
||
# Link target | ||
|
||
$(EXE): $(OBJ) | ||
$(LINK) $(LINKFLAGS) $(EXTRA_PATH) $(OBJ) $(EXTRA_LIB) $(LIB) -o $(EXE) | ||
$(SIZE) $(EXE) | ||
|
||
# Library target | ||
|
||
lib: $(OBJ) | ||
$(ARCHIVE) $(ARFLAGS) $(EXE) $(OBJ) | ||
|
||
shlib: $(OBJ) | ||
$(CC) $(CCFLAGS) $(SHFLAGS) $(SHLIBFLAGS) $(EXTRA_PATH) -o $(EXE) \ | ||
$(OBJ) $(EXTRA_LIB) $(LIB) | ||
|
||
# Compilation rules | ||
|
||
%.o:%.cpp | ||
$(CC) $(CCFLAGS) $(SHFLAGS) $(EXTRA_INC) -c $< | ||
|
||
%.d:%.cpp | ||
$(CC) $(CCFLAGS) $(EXTRA_INC) $(DEPFLAGS) $< > $@ | ||
|
||
# Individual dependencies | ||
|
||
DEPENDS = $(OBJ:.o=.d) | ||
sinclude $(DEPENDS) |
Oops, something went wrong.