diff --git a/CMakeLists.txt b/CMakeLists.txt index 632820b..ce07f3a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,9 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# + cmake_minimum_required(VERSION 3.14) project(BMX-Exa diff --git a/exec/CMakeLists.txt b/exec/CMakeLists.txt index 0469881..1cee0e7 100644 --- a/exec/CMakeLists.txt +++ b/exec/CMakeLists.txt @@ -1,3 +1,10 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be +# found +# in the LICENSE file in the top level directory of this distribution. +# + add_subdirectory(nlev_large_test) add_subdirectory(nlev_real_test) add_subdirectory(nlev_dla_test) diff --git a/exec/GNUmakefile b/exec/GNUmakefile index e0ae38a..5fc8ae4 100644 --- a/exec/GNUmakefile +++ b/exec/GNUmakefile @@ -1,3 +1,9 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# + # AMREX_HOME defines the directory in which we will find all the AMReX code AMREX_HOME ?= ../subprojects/amrex diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c2685b6..baf4b93 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# add_library(bmxcore OBJECT) # diff --git a/src/Make.package b/src/Make.package index 7c0936f..0ef2a60 100644 --- a/src/Make.package +++ b/src/Make.package @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# CEXE_sources += main.cpp CEXE_sources += bmx.cpp CEXE_headers += bmx.H diff --git a/src/bmx.H b/src/bmx.H index 39ae54f..5de3402 100644 --- a/src/bmx.H +++ b/src/bmx.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef BMX_LEVEL_H_ #define BMX_LEVEL_H_ diff --git a/src/bmx.cpp b/src/bmx.cpp index 802a3b5..2f62562 100644 --- a/src/bmx.cpp +++ b/src/bmx.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/chemistry/CMakeLists.txt b/src/chemistry/CMakeLists.txt index 545f47a..f5230a4 100644 --- a/src/chemistry/CMakeLists.txt +++ b/src/chemistry/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# target_include_directories( bmxcore PUBLIC $) diff --git a/src/chemistry/Make.package b/src/chemistry/Make.package index e1265e5..e63090c 100644 --- a/src/chemistry/Make.package +++ b/src/chemistry/Make.package @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# CEXE_headers += bmx_chem.H CEXE_headers += bmx_chem_K.H CEXE_headers += bmx_cell_interaction.H diff --git a/src/chemistry/bmx_cell_interaction.H b/src/chemistry/bmx_cell_interaction.H index 98e33ee..f7a643e 100644 --- a/src/chemistry/bmx_cell_interaction.H +++ b/src/chemistry/bmx_cell_interaction.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef _BMX_CELL_INTERACTION_H_ #define _BMX_CELL_INTERACTION_H_ diff --git a/src/chemistry/bmx_cell_interaction.cpp b/src/chemistry/bmx_cell_interaction.cpp index 02d9d09..72e2f08 100644 --- a/src/chemistry/bmx_cell_interaction.cpp +++ b/src/chemistry/bmx_cell_interaction.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/chemistry/bmx_cell_interaction_K.H b/src/chemistry/bmx_cell_interaction_K.H index 2cf2001..8e67f36 100644 --- a/src/chemistry/bmx_cell_interaction_K.H +++ b/src/chemistry/bmx_cell_interaction_K.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/chemistry/bmx_chem.H b/src/chemistry/bmx_chem.H index 285792e..1fa94c2 100644 --- a/src/chemistry/bmx_chem.H +++ b/src/chemistry/bmx_chem.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef _BMX_CHEM_H_ #define _BMX_CHEM_H_ diff --git a/src/chemistry/bmx_chem.cpp b/src/chemistry/bmx_chem.cpp index b0dac74..f3d3ce5 100644 --- a/src/chemistry/bmx_chem.cpp +++ b/src/chemistry/bmx_chem.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/chemistry/bmx_chem_K.H b/src/chemistry/bmx_chem_K.H index 40a2ad5..fb370f8 100644 --- a/src/chemistry/bmx_chem_K.H +++ b/src/chemistry/bmx_chem_K.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// /** * Check to see if particle meets criteria for splitting * @param p_par particle parameters diff --git a/src/deposition/CMakeLists.txt b/src/deposition/CMakeLists.txt index 2210a32..abeab78 100644 --- a/src/deposition/CMakeLists.txt +++ b/src/deposition/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# target_include_directories(bmxcore PUBLIC $) diff --git a/src/deposition/Make.package b/src/deposition/Make.package index 4303739..6ca20be 100644 --- a/src/deposition/Make.package +++ b/src/deposition/Make.package @@ -1,2 +1,7 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# CEXE_headers += bmx_deposition_K.H CEXE_sources += bmx_deposition_bcs.cpp diff --git a/src/deposition/bmx_deposition_K.H b/src/deposition/bmx_deposition_K.H index e88ef9b..d3175a6 100644 --- a/src/deposition/bmx_deposition_K.H +++ b/src/deposition/bmx_deposition_K.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include "bmx_pc.H" #include diff --git a/src/deposition/bmx_deposition_bcs.cpp b/src/deposition/bmx_deposition_bcs.cpp index a54e7c8..e72e5fc 100644 --- a/src/deposition/bmx_deposition_bcs.cpp +++ b/src/deposition/bmx_deposition_bcs.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include void bmx::bmx_deposition_bcs (int lev, amrex::MultiFab& filled_mf) diff --git a/src/des/CMakeLists.txt b/src/des/CMakeLists.txt index 560f2e4..fd7f900 100644 --- a/src/des/CMakeLists.txt +++ b/src/des/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# target_include_directories( bmxcore PUBLIC $) diff --git a/src/des/Make.package b/src/des/Make.package index 7a0fd16..ea8b0af 100644 --- a/src/des/Make.package +++ b/src/des/Make.package @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# CEXE_headers += bmx_des_K.H CEXE_headers += bmx_pc.H diff --git a/src/des/bmx_calc_txfr.cpp b/src/des/bmx_calc_txfr.cpp index 0908f84..b89d0be 100644 --- a/src/des/bmx_calc_txfr.cpp +++ b/src/des/bmx_calc_txfr.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/des/bmx_calc_volume_fraction.cpp b/src/des/bmx_calc_volume_fraction.cpp index 3732a4f..16d99ee 100644 --- a/src/des/bmx_calc_volume_fraction.cpp +++ b/src/des/bmx_calc_volume_fraction.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/des/bmx_des_K.H b/src/des/bmx_des_K.H index 1154bcf..efda310 100644 --- a/src/des/bmx_des_K.H +++ b/src/des/bmx_des_K.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include "bmx_pc.H" AMREX_GPU_HOST_DEVICE AMREX_INLINE diff --git a/src/des/bmx_pc.H b/src/des/bmx_pc.H index 2d0c217..72754a6 100644 --- a/src/des/bmx_pc.H +++ b/src/des/bmx_pc.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef _BMX_PC_H_ #define _BMX_PC_H_ diff --git a/src/des/bmx_pc.cpp b/src/des/bmx_pc.cpp index 52be4eb..b50b152 100644 --- a/src/des/bmx_pc.cpp +++ b/src/des/bmx_pc.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/des/bmx_pc_init.cpp b/src/des/bmx_pc_init.cpp index 9330139..0bd641b 100644 --- a/src/des/bmx_pc_init.cpp +++ b/src/des/bmx_pc_init.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/des/bmx_pc_interaction.cpp b/src/des/bmx_pc_interaction.cpp index 31fcfdf..3a346c1 100644 --- a/src/des/bmx_pc_interaction.cpp +++ b/src/des/bmx_pc_interaction.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/des/bmx_split_particles.cpp b/src/des/bmx_split_particles.cpp index f21d26d..2b5f018 100644 --- a/src/des/bmx_split_particles.cpp +++ b/src/des/bmx_split_particles.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/diffusion/CMakeLists.txt b/src/diffusion/CMakeLists.txt index d859257..21f18bc 100644 --- a/src/diffusion/CMakeLists.txt +++ b/src/diffusion/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# target_include_directories(bmxcore PUBLIC $) diff --git a/src/diffusion/Make.package b/src/diffusion/Make.package index f36af88..55a588b 100644 --- a/src/diffusion/Make.package +++ b/src/diffusion/Make.package @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# CEXE_sources += bmx_define_coeffs_on_faces.cpp CEXE_sources += bmx_diffusion_op.cpp CEXE_headers += bmx_diffusion_op.H diff --git a/src/diffusion/bmx_define_coeffs_on_faces.cpp b/src/diffusion/bmx_define_coeffs_on_faces.cpp index 8162347..bee7aed 100644 --- a/src/diffusion/bmx_define_coeffs_on_faces.cpp +++ b/src/diffusion/bmx_define_coeffs_on_faces.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/diffusion/bmx_diffuse_chem_species.cpp b/src/diffusion/bmx_diffuse_chem_species.cpp index 6e7acc1..08b0b11 100644 --- a/src/diffusion/bmx_diffuse_chem_species.cpp +++ b/src/diffusion/bmx_diffuse_chem_species.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/diffusion/bmx_diffusion_op.H b/src/diffusion/bmx_diffusion_op.H index 93bde24..1b4930c 100644 --- a/src/diffusion/bmx_diffusion_op.H +++ b/src/diffusion/bmx_diffusion_op.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef DIFFUSION_EQUATION_H_ #define DIFFUSION_EQUATION_H_ diff --git a/src/diffusion/bmx_diffusion_op.cpp b/src/diffusion/bmx_diffusion_op.cpp index 5f8bdc7..ff9e4a7 100644 --- a/src/diffusion/bmx_diffusion_op.cpp +++ b/src/diffusion/bmx_diffusion_op.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/interpolation/CMakeLists.txt b/src/interpolation/CMakeLists.txt index a6208f1..1deb566 100644 --- a/src/interpolation/CMakeLists.txt +++ b/src/interpolation/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# target_include_directories( bmxcore PUBLIC $) diff --git a/src/interpolation/Make.package b/src/interpolation/Make.package index c787930..b67f8f7 100644 --- a/src/interpolation/Make.package +++ b/src/interpolation/Make.package @@ -1 +1,6 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# CEXE_headers += bmx_interp_K.H diff --git a/src/interpolation/bmx_interp_K.H b/src/interpolation/bmx_interp_K.H index c90a77c..39dcaac 100644 --- a/src/interpolation/bmx_interp_K.H +++ b/src/interpolation/bmx_interp_K.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef _BMX_INTERP_K_H_ #define _BMX_INTERP_K_H_ diff --git a/src/io/CMakeLists.txt b/src/io/CMakeLists.txt index bda12ac..0c32934 100644 --- a/src/io/CMakeLists.txt +++ b/src/io/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# target_sources( bmxcore PRIVATE bmx_io.cpp diff --git a/src/io/Make.package b/src/io/Make.package index 7be9a1e..e2e3d6d 100644 --- a/src/io/Make.package +++ b/src/io/Make.package @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# CEXE_sources += bmx_io.cpp CEXE_sources += bmx_build_info.cpp CEXE_sources += bmx_chk.cpp diff --git a/src/io/bmx_build_info.cpp b/src/io/bmx_build_info.cpp index ae7d1c6..18f5441 100644 --- a/src/io/bmx_build_info.cpp +++ b/src/io/bmx_build_info.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include "AMReX_buildInfo.H" #include diff --git a/src/io/bmx_chk.cpp b/src/io/bmx_chk.cpp index fbf9342..1b9631b 100644 --- a/src/io/bmx_chk.cpp +++ b/src/io/bmx_chk.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/io/bmx_io.cpp b/src/io/bmx_io.cpp index 9164a77..7dc01ef 100644 --- a/src/io/bmx_io.cpp +++ b/src/io/bmx_io.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include // amrex::VisMF::Write(MultiFab) diff --git a/src/io/bmx_plt.cpp b/src/io/bmx_plt.cpp index 3797efb..07fd04c 100644 --- a/src/io/bmx_plt.cpp +++ b/src/io/bmx_plt.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include // amrex::VisMF::Write(MultiFab) #include // amrex::[read,write]IntData(array_of_ints) diff --git a/src/io/bmx_restart.cpp b/src/io/bmx_restart.cpp index d4f3e45..8e63ba8 100644 --- a/src/io/bmx_restart.cpp +++ b/src/io/bmx_restart.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include // amrex::VisMF::Write(MultiFab) diff --git a/src/leveldata/CMakeLists.txt b/src/leveldata/CMakeLists.txt index 1e2c17a..c957a04 100644 --- a/src/leveldata/CMakeLists.txt +++ b/src/leveldata/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# target_include_directories(bmxcore PUBLIC $) diff --git a/src/leveldata/Make.package b/src/leveldata/Make.package index ab3204d..d157aa3 100644 --- a/src/leveldata/Make.package +++ b/src/leveldata/Make.package @@ -1,2 +1,7 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# CEXE_headers += bmx_leveldata.H CEXE_sources += bmx_leveldata.cpp diff --git a/src/leveldata/bmx_leveldata.H b/src/leveldata/bmx_leveldata.H index d5ee01e..1f14106 100644 --- a/src/leveldata/bmx_leveldata.H +++ b/src/leveldata/bmx_leveldata.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef _BMX_LEVELDATA_H_ #define _BMX_LEVELDATA_H_ diff --git a/src/leveldata/bmx_leveldata.cpp b/src/leveldata/bmx_leveldata.cpp index 6d2c293..8bf7126 100644 --- a/src/leveldata/bmx_leveldata.cpp +++ b/src/leveldata/bmx_leveldata.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/main.cpp b/src/main.cpp index e4ff911..581a314 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/mods/CMakeLists.txt b/src/mods/CMakeLists.txt index 9c4a502..39255d5 100644 --- a/src/mods/CMakeLists.txt +++ b/src/mods/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# target_include_directories(bmxcore PUBLIC $) diff --git a/src/mods/Make.package b/src/mods/Make.package index f4ee084..e921d12 100644 --- a/src/mods/Make.package +++ b/src/mods/Make.package @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# CEXE_headers += bmx_bc_parms.H CEXE_headers += bmx_fluid_parms.H CEXE_headers += bmx_chem_species_parms.H diff --git a/src/mods/bmx_bc_list.H b/src/mods/bmx_bc_list.H index d3bacc8..bbda196 100644 --- a/src/mods/bmx_bc_list.H +++ b/src/mods/bmx_bc_list.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef _BMX_BCLIST_H_ #define _BMX_BCLIST_H_ diff --git a/src/mods/bmx_bc_parms.H b/src/mods/bmx_bc_parms.H index 3a0b0a9..519275d 100644 --- a/src/mods/bmx_bc_parms.H +++ b/src/mods/bmx_bc_parms.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef BMX_BC_PARMS_H_ #define BMX_BC_PARMS_H_ diff --git a/src/mods/bmx_bc_parms.cpp b/src/mods/bmx_bc_parms.cpp index 791a988..e8df84a 100644 --- a/src/mods/bmx_bc_parms.cpp +++ b/src/mods/bmx_bc_parms.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/mods/bmx_chem_species_parms.H b/src/mods/bmx_chem_species_parms.H index a0f80f1..5fcb332 100644 --- a/src/mods/bmx_chem_species_parms.H +++ b/src/mods/bmx_chem_species_parms.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef BMX_SPECIES_PARMS_H_ #define BMX_SPECIES_PARMS_H_ diff --git a/src/mods/bmx_chem_species_parms.cpp b/src/mods/bmx_chem_species_parms.cpp index a07acf1..67373a3 100644 --- a/src/mods/bmx_chem_species_parms.cpp +++ b/src/mods/bmx_chem_species_parms.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/mods/bmx_dem_parms.H b/src/mods/bmx_dem_parms.H index c16eb87..2b34942 100644 --- a/src/mods/bmx_dem_parms.H +++ b/src/mods/bmx_dem_parms.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef BMX_DEM_PARMS_H_ #define BMX_DEM_PARMS_H_ diff --git a/src/mods/bmx_dem_parms.cpp b/src/mods/bmx_dem_parms.cpp index 06dde8c..a20c25b 100644 --- a/src/mods/bmx_dem_parms.cpp +++ b/src/mods/bmx_dem_parms.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/mods/bmx_fluid_parms.H b/src/mods/bmx_fluid_parms.H index 7fd24d7..2af2610 100644 --- a/src/mods/bmx_fluid_parms.H +++ b/src/mods/bmx_fluid_parms.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef BMX_FLUID_PARMS_H_ #define BMX_FLUID_PARMS_H_ diff --git a/src/mods/bmx_fluid_parms.cpp b/src/mods/bmx_fluid_parms.cpp index be4528d..0c9d0b7 100644 --- a/src/mods/bmx_fluid_parms.cpp +++ b/src/mods/bmx_fluid_parms.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/setup/CMakeLists.txt b/src/setup/CMakeLists.txt index 4f355c4..cc3b3b4 100644 --- a/src/setup/CMakeLists.txt +++ b/src/setup/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# target_include_directories(bmxcore PUBLIC $ diff --git a/src/setup/Make.package b/src/setup/Make.package index 69314f2..7ca39c4 100644 --- a/src/setup/Make.package +++ b/src/setup/Make.package @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# CEXE_headers += bmx_calc_cell.H CEXE_headers += bmx_calc_fluid_coeffs.H CEXE_headers += bmx_init_fluid.H diff --git a/src/setup/bmx_arrays.cpp b/src/setup/bmx_arrays.cpp index 875a574..cef330a 100644 --- a/src/setup/bmx_arrays.cpp +++ b/src/setup/bmx_arrays.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/setup/bmx_calc_cell.H b/src/setup/bmx_calc_cell.H index 57acca9..a4b3068 100644 --- a/src/setup/bmx_calc_cell.H +++ b/src/setup/bmx_calc_cell.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef _BMX_CALCCELL_H_ #define _BMX_CALCCELL_H_ diff --git a/src/setup/bmx_calc_cell.cpp b/src/setup/bmx_calc_cell.cpp index 0646b57..c0c4640 100644 --- a/src/setup/bmx_calc_cell.cpp +++ b/src/setup/bmx_calc_cell.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// //vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv! // ! // Subroutine: calc_cell_ic ! diff --git a/src/setup/bmx_calc_fluid_coeffs.H b/src/setup/bmx_calc_fluid_coeffs.H index 0d4878e..aff8b91 100644 --- a/src/setup/bmx_calc_fluid_coeffs.H +++ b/src/setup/bmx_calc_fluid_coeffs.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef _BMX_CALC_FLUID_COEFFS_HPP_ #define _BMX_CALC_FLUID_COEFFS_HPP_ diff --git a/src/setup/bmx_calc_fluid_coeffs.cpp b/src/setup/bmx_calc_fluid_coeffs.cpp index 46bfa5d..4659a16 100644 --- a/src/setup/bmx_calc_fluid_coeffs.cpp +++ b/src/setup/bmx_calc_fluid_coeffs.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/setup/bmx_init.cpp b/src/setup/bmx_init.cpp index c22c441..c664cea 100644 --- a/src/setup/bmx_init.cpp +++ b/src/setup/bmx_init.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/setup/bmx_init_fluid.H b/src/setup/bmx_init_fluid.H index 5d244b4..3316ed5 100644 --- a/src/setup/bmx_init_fluid.H +++ b/src/setup/bmx_init_fluid.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef __BMX_INIT_FLUID_HPP_ #define __BMX_INIT_FLUID_HPP_ diff --git a/src/setup/bmx_init_fluid.cpp b/src/setup/bmx_init_fluid.cpp index a361d92..3842f0c 100644 --- a/src/setup/bmx_init_fluid.cpp +++ b/src/setup/bmx_init_fluid.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/setup/bmx_set_bc_type.cpp b/src/setup/bmx_set_bc_type.cpp index 1dbcaf7..226bc56 100644 --- a/src/setup/bmx_set_bc_type.cpp +++ b/src/setup/bmx_set_bc_type.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/setup/bmx_setup_solvers.cpp b/src/setup/bmx_setup_solvers.cpp index acdf4e2..ae0f676 100644 --- a/src/setup/bmx_setup_solvers.cpp +++ b/src/setup/bmx_setup_solvers.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/setup/bmx_tagging.cpp b/src/setup/bmx_tagging.cpp index 942896c..f94a116 100644 --- a/src/setup/bmx_tagging.cpp +++ b/src/setup/bmx_tagging.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/timestepping/CMakeLists.txt b/src/timestepping/CMakeLists.txt index 383f5cb..17fda50 100644 --- a/src/timestepping/CMakeLists.txt +++ b/src/timestepping/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# target_include_directories( bmxcore PUBLIC $) diff --git a/src/timestepping/Make.package b/src/timestepping/Make.package index 37ea7ec..31d99f4 100644 --- a/src/timestepping/Make.package +++ b/src/timestepping/Make.package @@ -1,2 +1,7 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# CEXE_sources += bmx_evolve.cpp CEXE_sources += bmx_evolve_fluid.cpp diff --git a/src/timestepping/bmx_evolve.cpp b/src/timestepping/bmx_evolve.cpp index fc1f70c..abe7602 100644 --- a/src/timestepping/bmx_evolve.cpp +++ b/src/timestepping/bmx_evolve.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/timestepping/bmx_evolve_fluid.cpp b/src/timestepping/bmx_evolve_fluid.cpp index f0097ab..f064f3c 100644 --- a/src/timestepping/bmx_evolve_fluid.cpp +++ b/src/timestepping/bmx_evolve_fluid.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/util/CMakeLists.txt b/src/util/CMakeLists.txt index 6535c1d..2def28f 100644 --- a/src/util/CMakeLists.txt +++ b/src/util/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# target_include_directories(bmxcore PUBLIC $) diff --git a/src/util/Make.package b/src/util/Make.package index e3be4cf..806c3b0 100644 --- a/src/util/Make.package +++ b/src/util/Make.package @@ -1,3 +1,8 @@ +# +# Copyright (c) 2013 Battelle Memorial Institute +# Licensed under modified BSD License. A copy of this license can be found +# in the LICENSE file in the top level directory of this distribution. +# CEXE_sources += bmx_set_chem_species_bcs.cpp CEXE_sources += bmx_fillpatch.cpp CEXE_sources += bmx_regrid.cpp diff --git a/src/util/bmx_algorithm.H b/src/util/bmx_algorithm.H index cfcb7a9..ed04d7d 100644 --- a/src/util/bmx_algorithm.H +++ b/src/util/bmx_algorithm.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef _BMX_ALGORITHM_H_ #define _BMX_ALGORITHM_H_ diff --git a/src/util/bmx_filcc.H b/src/util/bmx_filcc.H index 752347f..0854fe0 100644 --- a/src/util/bmx_filcc.H +++ b/src/util/bmx_filcc.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef _BMX_FILCC_H_ #define _BMX_FILCC_H_ diff --git a/src/util/bmx_filcc.cpp b/src/util/bmx_filcc.cpp index 5de18f0..97406a7 100644 --- a/src/util/bmx_filcc.cpp +++ b/src/util/bmx_filcc.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/util/bmx_fillpatch.cpp b/src/util/bmx_fillpatch.cpp index 4366ac3..62ce1a2 100644 --- a/src/util/bmx_fillpatch.cpp +++ b/src/util/bmx_fillpatch.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/util/bmx_fillpatch_bc.H b/src/util/bmx_fillpatch_bc.H index f094095..0f478c4 100644 --- a/src/util/bmx_fillpatch_bc.H +++ b/src/util/bmx_fillpatch_bc.H @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #ifndef BMX_FILLPATCH_BC_H_ #define BMX_FILLPATCH_BC_H_ diff --git a/src/util/bmx_regrid.cpp b/src/util/bmx_regrid.cpp index e674414..78c95d7 100644 --- a/src/util/bmx_regrid.cpp +++ b/src/util/bmx_regrid.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include #include diff --git a/src/util/bmx_set_chem_species_bcs.cpp b/src/util/bmx_set_chem_species_bcs.cpp index 30ebca8..4e2538a 100644 --- a/src/util/bmx_set_chem_species_bcs.cpp +++ b/src/util/bmx_set_chem_species_bcs.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include #include diff --git a/src/util/bmx_util.cpp b/src/util/bmx_util.cpp index 62ac8c6..1ffb6a7 100644 --- a/src/util/bmx_util.cpp +++ b/src/util/bmx_util.cpp @@ -1,3 +1,8 @@ +// +// Copyright (c) 2013 Battelle Memorial Institute +// Licensed under modified BSD License. A copy of this license can be found +// in the LICENSE file in the top level directory of this distribution. +// #include Real