Skip to content

Commit

Permalink
Adding More Cases and Auxilliary Files (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
smullangi3 authored Apr 29, 2024
1 parent c38dd7d commit 94f296d
Show file tree
Hide file tree
Showing 22 changed files with 832 additions and 121 deletions.
Empty file.
Binary file added examples/carotid_web/Input/carotid.e
Binary file not shown.
30 changes: 30 additions & 0 deletions examples/carotid_web/Input/tube.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
0.44 !0.04 ! alpha_Ewld !changed for big tube
1.E-3 ! eps_Ewld
8 ! PBspln_Ewld

3 ! nCellTypes
1 1 1 ! viscRat -- for RBCS, approx 5, for Sickles, approximated as 7 from https://doi.org/10.1016/0167-4889(90)90025-9
1. 1. 1. ! refRad
.false. ! Deflate

0.0 !
0.0 !
0.0 !

15000 ! Nt
0.0007 ! Ts

100 ! cell_out
-10000 ! wall_out
-10 ! pGrad_out
-10 ! flow_out
-1 ! ftotout
100 ! restart_out

'D/restart.LATEST.dat'

0.02 ! epsDist
10. ! forceCoef
10. ! viscRatThresh
.false. ! rigidsep
0. 0. 0. 0. ! fmags
Binary file added examples/carotid_web/Input/vertical_web.e
Binary file not shown.
Binary file added examples/carotid_web/Input/web.e
Binary file not shown.
22 changes: 22 additions & 0 deletions examples/carotid_web/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
include ../../Makefile.in

LIB = $(COMMON_LIB) $(SPHPK_LIB) $(FFTW_LIB) $(LAPACK95_LIB) $(PETSC_LIB) $(NETCDF_LIB) $(MKL_LIB) $(STATIC)
EXECUTABLES = initcond tube

all : $(EXECUTABLES)

lib : $(wildcard $(WORK_DIR)/common/*.F90)
make -C $(WORK_DIR)/common

$(EXECUTABLES) : % : %.o $(wildcard $(COMMON_DIR)/*.F90)
make lib
$(FC) $(LDFLAGS) -o $@ $< $(LIB)

clean :
-rm -f $(EXECUTABLES) *.o *.mod *.a core

# Dependency
.depend : $(wildcard *.F90)
$(MAKEDEPEND_BIN) $^ > .depend

include .depend
Loading

1 comment on commit 94f296d

@suzanmanasreh
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you accidentally uploaded the exodus mesh files to wall_journals instead of the journal files.

Please sign in to comment.