Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nulib with bremsstrahlungs #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/Interpolated_data.h5
Binary file not shown.
11 changes: 8 additions & 3 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ SOURCES = fermi.F90 \
scattering.F90 \
weak_magnetism_correction.F90 \
inelastic_electron_scattering.F90 \
eos_interface.F90
eos_interface.F90\
bremsstrahlung.F90

NT_SOURCES=nulibtable.F90 \
nulibtable_reader.F90 \
Expand Down Expand Up @@ -92,9 +93,9 @@ EXTRAINCS += $(HDF5INCS)
EXTRAOBJECTS += $(HDF5LIBS)

ifeq ($(WEAK_RATES),1)
all: nulib.a ../nulibtable_driver ../point_example ../make_table_weakrates
all: nulib.a ../nulibtable_driver ../point_example ../bremsstrahlung_point_example ../make_table_weakrates
else
all: nulib.a ../nulibtable_driver ../point_example ../make_table_example
all: nulib.a ../nulibtable_driver ../point_example ../bremsstrahlung_point_example ../make_table_example
endif

../nulibtable_driver: $(EXTRADEPS) $(NT_OBJECTS) $(F_OBJECTS) $(f90_OBJECTS)
Expand All @@ -103,6 +104,9 @@ endif
../point_example: $(EXTRADEPS) $(F_OBJECTS) $(MOD_OBJECTS) $(OBJECTS) $(f90_OBJECTS)point_example.F90
$(F90) $(F90FLAGS) $(DEFS) $(MODINC) $(EXTRAINCS) -o $@ point_example.F90 $(MOD_OBJECTS) $(OBJECTS) $(F_OBJECTS) $(EXTRAOBJECTS) $(f90_OBJECTS)

../bremsstrahlung_point_example: $(EXTRADEPS) $(F_OBJECTS) $(MOD_OBJECTS) $(OBJECTS) $(f90_OBJECTS)bremsstrahlung_point_example.F90
$(F90) $(F90FLAGS) $(DEFS) $(MODINC) $(EXTRAINCS) -o $@ bremsstrahlung_point_example.F90 $(MOD_OBJECTS) $(OBJECTS) $(F_OBJECTS) $(EXTRAOBJECTS) $(f90_OBJECTS)

../make_table_example: $(EXTRADEPS) $(F_OBJECTS) $(MOD_OBJECTS) $(OBJECTS) $(f90_OBJECTS)make_table_example.F90
$(F90) $(F90FLAGS) $(DEFS) $(MODINC) $(EXTRAINCS) -o $@ make_table_example.F90 $(MOD_OBJECTS) $(OBJECTS) $(F_OBJECTS) $(EXTRAOBJECTS) $(f90_OBJECTS)

Expand Down Expand Up @@ -138,6 +142,7 @@ clean:
rm -rf ../make_table_example
rm -rf ../make_table_weakrates
rm -rf ../point_example
rm -rf ../bremsstrahlung_point_example
rm -rf ../nulibtable_driver
rm -rf test
rm -rf *.o
Expand Down
Loading