From 1016f862f7c5ed885481614bcc5fba4571773962 Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 26 May 2016 14:20:56 -0400 Subject: [PATCH 01/18] Updated CHANGES for 0.7.0 release --- CHANGES | 48 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 2b1a06a25..25ac139bf 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,50 @@ -Version 0.7.0 (In progress) +Version 0.7.0 + * Complete refactoring of material property parsing. Old + style is deprecated. See examples, master input file for + a description of the new style. + * Complete refactoring of Variable parsing and internal + object construction. Old style is deprecated. See examples, + master input file for a description of new style. Expect + the old style to be unsupported soon after 0.7.0 release. + * Refactoring in progress for SolverOptions. Except further + changes to input parsing for SolverOptions. + * Refactoring ErrorEstimation parsing and construction. See + examples master input file for a description of new style. + * Complete refactoring of BoundaryCondition parsing and construction. + Old input style is deprecated. See examples, master input file + for a description of new style. In particular, for Neumann + boundary conditions, all fluxes are assumed to *positive outward* + in the new format. + * Added support for using multiple instances of the same Physics. + See examples, master input file for a description. + * Added support for second order-in-time problems, including + Physics::damping_residual and libMesh::NewmarkSolver. + * Minimum version of Antioch is now 0.4.0 + * Added support for Antioch's MixturedAveraged, KineticsTheory + models. This is still experimental. + * Further developments on parameter management/parsing for + sensitivity calculations. + * Better error checking for PressurePinning. + * Support for varying numerical Jacobian h values from input. + * Boost is now *optional*. If your compiler supports C++11, + that will be preferred. If it does not, then we will fallback + to Boost. This is specifically for shared_ptr. + * Updated testing infrastructure, including support for CppUnit. * Added support for output of 'base_velocity' in averaged_fan - * Added scalar parsed qoi regression test case + * Added scalar parsed qoi regression test case. + * Complete refactoring of Physics construction. + * Use libMesh::UniquePtr instead of libMesh::AutoPtr + * Much internal refactoring. + * Increased error checking, testing throughout. + * New Physics include: + - RayleighDamping + - ConvectionDiffusion + * New QoIs include: + - WeightedFlux + - ParsedBoundary + * New examples include: + - SpalartAllmaras Airfoil + - Time-dependent AMR (ConvectionDiffusion Physics) Version 0.6.1 https://github.com/grinsfem/grins/releases/tag/v0.6.1 From d00c280a307a236c78cb82f6cd2038885692951f Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 26 May 2016 14:21:26 -0400 Subject: [PATCH 02/18] Add @nicholasmalaya to AUTHORS --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 7940aad8c..9860a8fb2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -6,6 +6,7 @@ Timo van Opstal Timothy R. Adowski Vikram Garg Chris Haynes +Nicholas Malaya Early contributions from: Onkar Sahni From 5e476c2d93b500c3129733a8775b16edf2530ac6 Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 26 May 2016 14:27:44 -0400 Subject: [PATCH 03/18] Fix unused variable warning --- src/physics/src/spalart_allmaras_helper.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/physics/src/spalart_allmaras_helper.C b/src/physics/src/spalart_allmaras_helper.C index 26f2f370e..18678b0d4 100644 --- a/src/physics/src/spalart_allmaras_helper.C +++ b/src/physics/src/spalart_allmaras_helper.C @@ -44,7 +44,7 @@ namespace GRINS { - SpalartAllmarasHelper::SpalartAllmarasHelper(const GetPot& input ) + SpalartAllmarasHelper::SpalartAllmarasHelper(const GetPot& /*input*/ ) : _flow_vars(GRINSPrivate::VariableWarehouse::get_variable_subclass(VariablesParsing::velocity_section())), _press_var(GRINSPrivate::VariableWarehouse::get_variable_subclass(VariablesParsing::pressure_section())) {} From b17f0177e48129958aef416dad9d1ab6cac9c19d Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 26 May 2016 14:47:54 -0400 Subject: [PATCH 04/18] Add PETSC_OPTIONS to regression/parsed_qoi_scalar.sh test This test is effectively identical to its parsed_qoi.sh cousin, it just has a few extra qois. So, use the same solver options so we can successfully run the test in parallel. --- test/regression/parsed_qoi_scalar.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/regression/parsed_qoi_scalar.sh b/test/regression/parsed_qoi_scalar.sh index 4e3f9ff64..647df9e9d 100755 --- a/test/regression/parsed_qoi_scalar.sh +++ b/test/regression/parsed_qoi_scalar.sh @@ -4,5 +4,7 @@ PROG="${GRINS_BUILDSRC_DIR}/grins" INPUT="${GRINS_TEST_INPUT_DIR}/parsed_qoi.in" -${LIBMESH_RUN:-} $PROG $INPUT +PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 4 -sub_pc_type ilu -sub_pc_factor_levels 4 -sub_pc_factor_mat_ordering_type 1wd -sub_pc_factor_shift_type nonzero" + +${LIBMESH_RUN:-} $PROG $INPUT $PETSC_OPTIONS From ae0e1b59bb7b9bd0597cb122ed14fd3ea305cfcf Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 26 May 2016 15:59:38 -0400 Subject: [PATCH 05/18] distcheck fixes --- src/Makefile.am | 2 ++ test/Makefile.am | 13 ++++++++++++- test/exact_soln/convection_diffusion_steady_1d.sh | 3 +++ test/input_files/axi_poiseuille_flow_input.in | 2 +- .../input_files/convection_diffusion_unsteady_2d.in | 4 ++-- ...h_cea_constant_mole_fraction_input_regression.in | 2 +- ...cken_lewis_constant_catalytic_wall_regression.in | 2 +- 7 files changed, 22 insertions(+), 6 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 9b9bbcdaf..3b5d66b54 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -291,6 +291,7 @@ include_HEADERS += boundary_conditions/include/grins/bc_factory_abstract.h include_HEADERS += boundary_conditions/include/grins/dirichlet_bc_factory_abstract.h include_HEADERS += boundary_conditions/include/grins/dirichlet_bc_factory_function_base.h include_HEADERS += boundary_conditions/include/grins/dirichlet_bc_factory_function_old_style_base.h +include_HEADERS += boundary_conditions/include/grins/parsed_function_traits.h include_HEADERS += boundary_conditions/include/grins/parsed_function_factory_helper.h include_HEADERS += boundary_conditions/include/grins/parsed_function_dirichlet_bc_factory.h include_HEADERS += boundary_conditions/include/grins/constant_function_dirichlet_bc_factory.h @@ -506,6 +507,7 @@ include_HEADERS += variables/include/grins/displacement_fe_variables.h include_HEADERS += variables/include/grins/species_mass_fracs_fe_variables.h include_HEADERS += variables/include/grins/thermo_pressure_fe_variable.h include_HEADERS += variables/include/grins/turbulence_fe_variables.h +include_HEADERS += variables/include/grins/generic_fe_type_variable.h include_HEADERS += variables/include/grins/variable_name_defaults.h include_HEADERS += variables/include/grins/variables_parsing.h include_HEADERS += variables/include/grins/variable_warehouse.h diff --git a/test/Makefile.am b/test/Makefile.am index 5e6122960..81439076e 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -119,10 +119,21 @@ gas_solid_catalytic_wall_SOURCES = unit/gas_solid_catalytic_wall.C power_law_catalycity_SOURCES = unit/power_law_catalycity.C # Interface test source files +# Automake manual suggests for "convenience or program headers, +# to just put them in the SOURCES. Note we can't just blanket +# EXTRA_DIST the interface directory because then the .C files +# get excluded (for some unknown reason). interface_driver_SOURCES = interface/interface_driver.C \ + interface/antioch_test_base.h \ + interface/cantera_test_base.h \ + interface/kinetics_test_base.h \ + interface/nasa_thermo_test_base.h \ + interface/species_test_base.h \ + interface/thermochem_test_common.h \ interface/air_5sp.C antioch_mixture_averaged_transport_evaluator_regression_SOURCES = interface/antioch_mixture_averaged_transport_evaluator_regression.C + cantera_transport_regression_SOURCES = interface/cantera_transport_regression.C @@ -274,7 +285,7 @@ TESTS += regression/extra_quadrature_order_laplace_arefee_amr.sh #AMR TESTS TESTS += amr/convection_diffusion_unsteady_2d.sh -EXTRA_DIST = unit/input_files +EXTRA_DIST = unit/input_files common amr/gold_data amr/input_files amr/README exact_soln/README CLEANFILES = diff --git a/test/exact_soln/convection_diffusion_steady_1d.sh b/test/exact_soln/convection_diffusion_steady_1d.sh index d8ef770d8..2fa02de66 100755 --- a/test/exact_soln/convection_diffusion_steady_1d.sh +++ b/test/exact_soln/convection_diffusion_steady_1d.sh @@ -17,3 +17,6 @@ ${LIBMESH_RUN:-} ${GRINS_TEST_DIR}/generic_exact_solution_testing_app \ u_L2_error='4.1180937619033129e-04' \ u_exact_soln='x-(1-exp(40*x))/(1-exp(40))' \ test_data=$TESTDATA + +# Now remove the test turd +rm $TESTDATA diff --git a/test/input_files/axi_poiseuille_flow_input.in b/test/input_files/axi_poiseuille_flow_input.in index ec48cb3b5..567c12fb9 100644 --- a/test/input_files/axi_poiseuille_flow_input.in +++ b/test/input_files/axi_poiseuille_flow_input.in @@ -33,7 +33,7 @@ [vis-options] output_vis = 'true' vis_output_file_prefix = 'axi_ns_poiseuille_flow' - output_format = 'xdr ExodusII' + output_format = 'xdr' [] # Options for print info to the screen diff --git a/test/input_files/convection_diffusion_unsteady_2d.in b/test/input_files/convection_diffusion_unsteady_2d.in index 54be61ee0..5d5d2655d 100644 --- a/test/input_files/convection_diffusion_unsteady_2d.in +++ b/test/input_files/convection_diffusion_unsteady_2d.in @@ -77,8 +77,8 @@ [vis-options] output_vis = 'true' vis_output_file_prefix = 'convection_diffusion_unsteady_2d' - output_format = 'ExodusII xdr' - #timesteps_per_vis = '50' + output_format = 'xdr' + timesteps_per_vis = '50' [] [screen-options] diff --git a/test/input_files/reacting_low_mach_antioch_cea_constant_mole_fraction_input_regression.in b/test/input_files/reacting_low_mach_antioch_cea_constant_mole_fraction_input_regression.in index 7b6021613..0f71355ac 100644 --- a/test/input_files/reacting_low_mach_antioch_cea_constant_mole_fraction_input_regression.in +++ b/test/input_files/reacting_low_mach_antioch_cea_constant_mole_fraction_input_regression.in @@ -141,7 +141,7 @@ use_numerical_jacobians_only = 'true' # Visualization options [vis-options] -output_vis = 'true' +output_vis = 'false' vis_output_file_prefix = 'nitridation' diff --git a/test/input_files/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_constant_catalytic_wall_regression.in b/test/input_files/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_constant_catalytic_wall_regression.in index 1adbe6af8..976ffa389 100644 --- a/test/input_files/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_constant_catalytic_wall_regression.in +++ b/test/input_files/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_constant_catalytic_wall_regression.in @@ -152,7 +152,7 @@ # Visualization options [vis-options] -output_vis = 'true' +output_vis = 'false' vis_output_file_prefix = 'nitridation' From 334ec37056882873f12f99ce740d0a03393e7011 Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 26 May 2016 16:10:32 -0400 Subject: [PATCH 06/18] Remove svn cruft from build system --- Makefile.am | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Makefile.am b/Makefile.am index 4f7260d5a..998cc197c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,21 +30,6 @@ EXTRA_DIST += $(GRINS_TEST_SH_FILES) $(GRINS_TEST_INPUT_FILES) $(GRINS_TEST_DATA includedir = $(prefix)/include include_HEADERS = $(top_builddir)/grins_config.h -# Eliminate .svn directories in dist tarball -dist-hook: - rm -rf `find $(distdir)/ -name .svn` - -#if SVN_CHECKOUT -# EXTRA_DIST += dist_version -# -#TODO: check if dist_version is needed in BUILT_SOURCES (in addition to EXTRA_DIST) -# BUILT_SOURCES = dist_version -# -#dist_version: FORCE -# @SVN_REVISION@ > $(top_srcdir)/dist_version -# -#FORCE: -#endif # Tools in the auxiliary directory From 9329336932f7741d53dbc2c9b5fb51b17cbc351c Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 26 May 2016 16:10:51 -0400 Subject: [PATCH 07/18] Don't distribute license tool Only run if it's a cloned repo. This way, we get rid of those annoying warnings that come out in a build from a tarball. --- Makefile.am | 11 +++++++++-- configure.ac | 5 +++++ src/Makefile.am | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 998cc197c..e9cb11b36 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,8 +1,6 @@ include $(top_srcdir)/doxygen/aminclude.am -BUILT_SOURCES = .license.stamp -CLEANFILES = .license.stamp AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 -I m4/common @@ -28,6 +26,7 @@ EXTRA_DIST += $(GRINS_TEST_SH_FILES) $(GRINS_TEST_INPUT_FILES) $(GRINS_TEST_DATA #doxygen_DATA = $(top_srcdir)/docs/doxygen/GRINS.tag includedir = $(prefix)/include +BUILT_SOURCES = grins_config.h include_HEADERS = $(top_builddir)/grins_config.h @@ -74,10 +73,18 @@ MOSTLYCLEANFILES = $(DX_CLEANFILES) \ # works. #STAMPED_FILES = $(shell find $(top_srcdir)/src -name '*.h' -or -name '*.C') +# Since we don't distribute the lic_utils, check and make sure it's there. +# This way, we won't run this on distributed tarballs, only on the repos clones + +if GRINS_LICENSESTAMPEXISTS +BUILT_SOURCES += .license.stamp .license.stamp: $(top_srcdir)/LICENSE @$(top_srcdir)/src/common/lic_utils/update_license.pl $(top_srcdir)/LICENSE $(GRINS_STAMPED_FILES) echo 'updated source license headers' >$@ +CLEANFILES = .license.stamp +endif + # ------------------------------------------- # Optional support for code coverage analysis # ------------------------------------------- diff --git a/configure.ac b/configure.ac index 22121d232..a4f95eac0 100644 --- a/configure.ac +++ b/configure.ac @@ -465,6 +465,11 @@ _AC_SRCDIRS(.) ABS_TOP_SRC_DIR=$ac_abs_top_srcdir TOP_SRC_DIR=$ac_srcdir +# Since we don't distribute the lic_utils, check and make sure it's there. +# This way, we won't run the license stamping perl script on distributed +# tarballs, only on the repository clones +AM_CONDITIONAL(GRINS_LICENSESTAMPEXISTS, [test -f $ABS_TOP_SRC_DIR/src/common/lic_utils/update_license.pl]) + # We have to do this by subdirectory because otherwise distcheck # breaks as we start picking up files in the directories # that it uses. diff --git a/src/Makefile.am b/src/Makefile.am index 3b5d66b54..fdc2a4276 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -634,7 +634,7 @@ if CODE_COVERAGE_ENABLED CLEANFILES += *.gcda *.gcno endif -EXTRA_DIST = common +EXTRA_DIST = common/lcov EXTRA_DIST += $(sfiles_DATA) # Required for AX_AM_MACROS From b60652fa17c29142e7e363b23d26c44be245dce8 Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 26 May 2016 16:24:36 -0400 Subject: [PATCH 08/18] For real, it's 2016 --- LICENSE | 2 +- examples/cavity_benchmark/cavity.C | 2 +- examples/elastic_sheet/displacement_continuation_solver.C | 2 +- examples/elastic_sheet/displacement_continuation_solver.h | 2 +- .../elastic_sheet/displacement_continuation_solver_factory.h | 2 +- examples/elastic_sheet/stretching_sheet.C | 2 +- examples/inflating_sheet/inflating_sheet.C | 2 +- examples/inflating_sheet/inflating_sheet_solver_factory.C | 2 +- examples/inflating_sheet/inflating_sheet_solver_factory.h | 2 +- examples/inflating_sheet/pressure_continuation_solver.C | 2 +- examples/inflating_sheet/pressure_continuation_solver.h | 2 +- examples/suspended_cable/suspended_cable.C | 2 +- src/apps/antioch_kinetic_rates.C | 2 +- src/apps/antioch_thermo_tables.C | 2 +- src/apps/antioch_transport_values.C | 2 +- src/apps/cantera_kinetic_rates.C | 2 +- src/boundary_conditions/include/grins/arrhenius_catalycity.h | 2 +- src/boundary_conditions/include/grins/bc_builder.h | 2 +- src/boundary_conditions/include/grins/bc_factory_abstract.h | 2 +- .../include/grins/boundary_condition_names.h | 2 +- src/boundary_conditions/include/grins/catalycity_base.h | 2 +- src/boundary_conditions/include/grins/catalycity_factories.h | 2 +- .../include/grins/catalycity_factories_old_style.h | 2 +- .../include/grins/catalycity_factory_abstract.h | 2 +- .../include/grins/catalycity_factory_old_style_base.h | 2 +- src/boundary_conditions/include/grins/catalytic_wall_base.h | 2 +- .../include/grins/catalytic_wall_neumann_bc_factory_base.h | 2 +- .../include/grins/catalytic_wall_neumann_bc_factory_common.h | 2 +- .../grins/catalytic_wall_neumann_bc_old_style_factory_base.h | 2 +- src/boundary_conditions/include/grins/constant_catalycity.h | 2 +- .../include/grins/constant_function_dirichlet_bc_factory.h | 2 +- src/boundary_conditions/include/grins/default_bc_builder.h | 2 +- .../include/grins/dirichlet_bc_factory_abstract.h | 2 +- .../include/grins/dirichlet_bc_factory_function_base.h | 2 +- .../grins/dirichlet_bc_factory_function_old_style_base.h | 2 +- .../include/grins/gas_catalytic_wall_neumann_bc_factories.h | 2 +- .../grins/gas_catalytic_wall_neumann_bc_old_style_factories.h | 2 +- .../include/grins/gas_recombination_catalytic_wall.h | 2 +- .../gas_recombination_catalytic_wall_neumann_bc_factory_impl.h | 2 +- .../include/grins/gas_solid_catalytic_wall.h | 2 +- .../grins/gas_solid_catalytic_wall_neumann_bc_factory_impl.h | 2 +- .../include/grins/homogeneous_dirichlet_bc_factory.h | 2 +- .../include/grins/homogeneous_neumann_bc_factory.h | 2 +- .../include/grins/isothermal_dirichlet_old_style_bc_factory.h | 2 +- src/boundary_conditions/include/grins/neumann_bc_abstract.h | 2 +- src/boundary_conditions/include/grins/neumann_bc_container.h | 2 +- .../include/grins/neumann_bc_factory_abstract.h | 2 +- .../include/grins/neumann_bc_function_base.h | 2 +- .../include/grins/neumann_bc_old_style_factory_abstract.h | 2 +- src/boundary_conditions/include/grins/neumann_bc_parsed.h | 2 +- src/boundary_conditions/include/grins/old_style_bc_builder.h | 2 +- .../include/grins/parsed_function_dirichlet_bc_factory.h | 2 +- .../grins/parsed_function_dirichlet_old_style_bc_factory.h | 2 +- .../include/grins/parsed_function_factory_helper.h | 2 +- .../include/grins/parsed_function_neumann_bc_factory.h | 2 +- .../include/grins/parsed_function_neumann_bc_factory_helper.h | 2 +- .../grins/parsed_function_neumann_old_style_bc_factory.h | 2 +- src/boundary_conditions/include/grins/parsed_function_traits.h | 2 +- src/boundary_conditions/include/grins/power_law_catalycity.h | 2 +- .../prescribed_vector_value_dirichlet_old_style_bc_factory.h | 2 +- src/boundary_conditions/include/grins/pressure_pinning.h | 2 +- .../include/grins/symmetry_type_bc_factories.h | 2 +- src/boundary_conditions/src/arrhenius_catalycity.C | 2 +- src/boundary_conditions/src/bc_builder.C | 2 +- src/boundary_conditions/src/catalycity_base.C | 2 +- src/boundary_conditions/src/catalycity_factories.C | 2 +- src/boundary_conditions/src/catalycity_factories_old_style.C | 2 +- src/boundary_conditions/src/catalycity_factory_abstract.C | 2 +- src/boundary_conditions/src/catalycity_factory_old_style_base.C | 2 +- src/boundary_conditions/src/catalytic_wall_base.C | 2 +- src/boundary_conditions/src/catalytic_wall_instantiate.C | 2 +- .../src/catalytic_wall_neumann_bc_factory_base.C | 2 +- .../src/catalytic_wall_neumann_bc_factory_common.C | 2 +- .../src/catalytic_wall_neumann_bc_old_style_factory_base.C | 2 +- src/boundary_conditions/src/constant_catalycity.C | 2 +- .../src/constant_function_dirichlet_bc_factory.C | 2 +- src/boundary_conditions/src/default_bc_builder.C | 2 +- src/boundary_conditions/src/dirichlet_bc_factory_abstract.C | 2 +- .../src/dirichlet_bc_factory_function_base.C | 2 +- .../src/dirichlet_bc_factory_function_old_style_base.C | 2 +- .../src/gas_catalytic_wall_neumann_bc_factories.C | 2 +- .../src/gas_catalytic_wall_neumann_bc_old_style_factories.C | 2 +- src/boundary_conditions/src/gas_recombination_catalytic_wall.C | 2 +- .../gas_recombination_catalytic_wall_neumann_bc_factory_impl.C | 2 +- src/boundary_conditions/src/gas_solid_catalytic_wall.C | 2 +- .../src/gas_solid_catalytic_wall_neumann_bc_factory_impl.C | 2 +- src/boundary_conditions/src/homogeneous_dirichlet_bc_factory.C | 2 +- src/boundary_conditions/src/homogeneous_neumann_bc_factory.C | 2 +- .../src/isothermal_dirichlet_old_style_bc_factory.C | 2 +- src/boundary_conditions/src/neumann_bc_factory_abstract.C | 2 +- src/boundary_conditions/src/neumann_bc_function_base.C | 2 +- .../src/neumann_bc_old_style_factory_abstract.C | 2 +- src/boundary_conditions/src/neumann_bc_parsed.C | 2 +- src/boundary_conditions/src/old_style_bc_builder.C | 2 +- .../src/parsed_function_dirichlet_bc_factory.C | 2 +- .../src/parsed_function_dirichlet_old_style_bc_factory.C | 2 +- src/boundary_conditions/src/parsed_function_factory_helper.C | 2 +- .../src/parsed_function_neumann_bc_factory.C | 2 +- .../src/parsed_function_neumann_bc_factory_helper.C | 2 +- .../src/parsed_function_neumann_old_style_bc_factory.C | 2 +- src/boundary_conditions/src/power_law_catalycity.C | 2 +- .../prescribed_vector_value_dirichlet_old_style_bc_factory.C | 2 +- src/boundary_conditions/src/pressure_pinning.C | 2 +- src/boundary_conditions/src/symmetry_type_bc_factories.C | 2 +- src/common/include/grins/common.h | 2 +- src/common/include/grins/factory_with_getpot.h | 2 +- src/common/include/grins/factory_with_getpot_physics_name.h | 2 +- src/ic_handling/include/grins/generic_ic_handler.h | 2 +- src/ic_handling/include/grins/ic_handling_base.h | 2 +- src/ic_handling/src/generic_ic_handler.C | 2 +- src/ic_handling/src/ic_handling_base.C | 2 +- src/physics/include/grins/antioch_instantiation_macro.h | 2 +- src/physics/include/grins/assembly_context.h | 2 +- src/physics/include/grins/averaged_fan.h | 2 +- src/physics/include/grins/averaged_fan_adjoint_stab.h | 2 +- src/physics/include/grins/averaged_fan_base.h | 2 +- src/physics/include/grins/averaged_turbine.h | 2 +- src/physics/include/grins/averaged_turbine_adjoint_stab.h | 2 +- src/physics/include/grins/averaged_turbine_base.h | 2 +- src/physics/include/grins/axisym_boussinesq_buoyancy.h | 2 +- src/physics/include/grins/axisym_heat_transfer.h | 2 +- src/physics/include/grins/boussinesq_buoyancy.h | 2 +- src/physics/include/grins/boussinesq_buoyancy_adjoint_stab.h | 2 +- src/physics/include/grins/boussinesq_buoyancy_base.h | 2 +- src/physics/include/grins/boussinesq_buoyancy_spgsm_stab.h | 2 +- src/physics/include/grins/constant_source_term.h | 2 +- src/physics/include/grins/convection_diffusion.h | 2 +- src/physics/include/grins/elastic_cable.h | 2 +- src/physics/include/grins/elastic_cable_abstract.h | 2 +- src/physics/include/grins/elastic_cable_base.h | 2 +- src/physics/include/grins/elastic_cable_constant_gravity.h | 2 +- src/physics/include/grins/elastic_cable_rayleigh_damping.h | 2 +- src/physics/include/grins/elastic_membrane.h | 2 +- src/physics/include/grins/elastic_membrane_abstract.h | 2 +- src/physics/include/grins/elastic_membrane_base.h | 2 +- src/physics/include/grins/elastic_membrane_constant_pressure.h | 2 +- src/physics/include/grins/elastic_membrane_rayleigh_damping.h | 2 +- src/physics/include/grins/heat_conduction.h | 2 +- src/physics/include/grins/heat_transfer.h | 2 +- src/physics/include/grins/heat_transfer_adjoint_stab.h | 2 +- src/physics/include/grins/heat_transfer_base.h | 2 +- src/physics/include/grins/heat_transfer_spgsm_stab.h | 2 +- src/physics/include/grins/heat_transfer_stab_base.h | 2 +- src/physics/include/grins/heat_transfer_stab_helper.h | 2 +- src/physics/include/grins/inc_navier_stokes.h | 2 +- src/physics/include/grins/inc_navier_stokes_adjoint_stab.h | 2 +- src/physics/include/grins/inc_navier_stokes_base.h | 2 +- src/physics/include/grins/inc_navier_stokes_spgsm_stab.h | 2 +- src/physics/include/grins/inc_navier_stokes_stab_base.h | 2 +- src/physics/include/grins/inc_navier_stokes_stab_helper.h | 2 +- src/physics/include/grins/low_mach_navier_stokes.h | 2 +- src/physics/include/grins/low_mach_navier_stokes_base.h | 2 +- src/physics/include/grins/low_mach_navier_stokes_braack_stab.h | 2 +- src/physics/include/grins/low_mach_navier_stokes_spgsm_stab.h | 2 +- src/physics/include/grins/low_mach_navier_stokes_stab_base.h | 2 +- src/physics/include/grins/low_mach_navier_stokes_stab_helper.h | 2 +- src/physics/include/grins/low_mach_navier_stokes_vms_stab.h | 2 +- src/physics/include/grins/multiphysics_sys.h | 2 +- src/physics/include/grins/parsed_source_term.h | 2 +- src/physics/include/grins/parsed_velocity_source.h | 2 +- src/physics/include/grins/parsed_velocity_source_adjoint_stab.h | 2 +- src/physics/include/grins/parsed_velocity_source_base.h | 2 +- src/physics/include/grins/physics.h | 2 +- src/physics/include/grins/physics_builder.h | 2 +- src/physics/include/grins/physics_factory_base.h | 2 +- src/physics/include/grins/physics_factory_basic.h | 2 +- src/physics/include/grins/physics_factory_heat_transfer.h | 2 +- src/physics/include/grins/physics_factory_helper.h | 2 +- src/physics/include/grins/physics_factory_incompressible_flow.h | 2 +- .../include/grins/physics_factory_incompressible_turb_flow.h | 2 +- src/physics/include/grins/physics_factory_one_d_stress_solids.h | 2 +- src/physics/include/grins/physics_factory_plane_stress_solids.h | 2 +- src/physics/include/grins/physics_factory_reacting_flows.h | 2 +- .../include/grins/physics_factory_variable_density_flow.h | 2 +- src/physics/include/grins/physics_factory_with_core.h | 2 +- src/physics/include/grins/physics_naming.h | 2 +- src/physics/include/grins/reacting_low_mach_navier_stokes.h | 2 +- .../include/grins/reacting_low_mach_navier_stokes_abstract.h | 2 +- .../include/grins/reacting_low_mach_navier_stokes_base.h | 2 +- src/physics/include/grins/scalar_ode.h | 2 +- src/physics/include/grins/solid_mechanics_abstract.h | 2 +- src/physics/include/grins/source_term_base.h | 2 +- src/physics/include/grins/spalart_allmaras.h | 2 +- src/physics/include/grins/spalart_allmaras_helper.h | 2 +- src/physics/include/grins/spalart_allmaras_parameters.h | 2 +- src/physics/include/grins/spalart_allmaras_spgsm_stab.h | 2 +- src/physics/include/grins/spalart_allmaras_stab_base.h | 2 +- src/physics/include/grins/spalart_allmaras_stab_helper.h | 2 +- src/physics/include/grins/stab_helper.h | 2 +- src/physics/include/grins/stokes.h | 2 +- src/physics/include/grins/turbulence_models_base.h | 2 +- src/physics/include/grins/var_typedefs.h | 2 +- src/physics/include/grins/velocity_drag.h | 2 +- src/physics/include/grins/velocity_drag_adjoint_stab.h | 2 +- src/physics/include/grins/velocity_drag_base.h | 2 +- src/physics/include/grins/velocity_penalty.h | 2 +- src/physics/include/grins/velocity_penalty_adjoint_stab.h | 2 +- src/physics/include/grins/velocity_penalty_base.h | 2 +- src/physics/src/assembly_context.C | 2 +- src/physics/src/averaged_fan.C | 2 +- src/physics/src/averaged_fan_adjoint_stab.C | 2 +- src/physics/src/averaged_fan_base.C | 2 +- src/physics/src/averaged_turbine.C | 2 +- src/physics/src/averaged_turbine_adjoint_stab.C | 2 +- src/physics/src/averaged_turbine_base.C | 2 +- src/physics/src/axisym_boussinesq_buoyancy.C | 2 +- src/physics/src/axisym_heat_transfer.C | 2 +- src/physics/src/boussinesq_buoyancy.C | 2 +- src/physics/src/boussinesq_buoyancy_adjoint_stab.C | 2 +- src/physics/src/boussinesq_buoyancy_base.C | 2 +- src/physics/src/boussinesq_buoyancy_spgsm_stab.C | 2 +- src/physics/src/constant_source_term.C | 2 +- src/physics/src/convection_diffusion.C | 2 +- src/physics/src/elastic_cable.C | 2 +- src/physics/src/elastic_cable_abstract.C | 2 +- src/physics/src/elastic_cable_base.C | 2 +- src/physics/src/elastic_cable_constant_gravity.C | 2 +- src/physics/src/elastic_cable_rayleigh_damping.C | 2 +- src/physics/src/elastic_membrane.C | 2 +- src/physics/src/elastic_membrane_abstract.C | 2 +- src/physics/src/elastic_membrane_base.C | 2 +- src/physics/src/elastic_membrane_constant_pressure.C | 2 +- src/physics/src/elastic_membrane_rayleigh_damping.C | 2 +- src/physics/src/heat_conduction.C | 2 +- src/physics/src/heat_transfer.C | 2 +- src/physics/src/heat_transfer_adjoint_stab.C | 2 +- src/physics/src/heat_transfer_base.C | 2 +- src/physics/src/heat_transfer_spgsm_stab.C | 2 +- src/physics/src/heat_transfer_stab_base.C | 2 +- src/physics/src/heat_transfer_stab_helper.C | 2 +- src/physics/src/inc_navier_stokes.C | 2 +- src/physics/src/inc_navier_stokes_adjoint_stab.C | 2 +- src/physics/src/inc_navier_stokes_base.C | 2 +- src/physics/src/inc_navier_stokes_spgsm_stab.C | 2 +- src/physics/src/inc_navier_stokes_stab_base.C | 2 +- src/physics/src/inc_navier_stokes_stab_helper.C | 2 +- src/physics/src/low_mach_navier_stokes.C | 2 +- src/physics/src/low_mach_navier_stokes_base.C | 2 +- src/physics/src/low_mach_navier_stokes_braack_stab.C | 2 +- src/physics/src/low_mach_navier_stokes_spgsm_stab.C | 2 +- src/physics/src/low_mach_navier_stokes_stab_base.C | 2 +- src/physics/src/low_mach_navier_stokes_stab_helper.C | 2 +- src/physics/src/low_mach_navier_stokes_vms_stab.C | 2 +- src/physics/src/multiphysics_sys.C | 2 +- src/physics/src/nonlinear_elasticity_instantiate.C | 2 +- src/physics/src/parsed_source_term.C | 2 +- src/physics/src/parsed_velocity_source.C | 2 +- src/physics/src/parsed_velocity_source_adjoint_stab.C | 2 +- src/physics/src/parsed_velocity_source_base.C | 2 +- src/physics/src/physics.C | 2 +- src/physics/src/physics_builder.C | 2 +- src/physics/src/physics_factory_base.C | 2 +- src/physics/src/physics_factory_basic.C | 2 +- src/physics/src/physics_factory_heat_transfer.C | 2 +- src/physics/src/physics_factory_helper.C | 2 +- src/physics/src/physics_factory_incompressible_flow.C | 2 +- src/physics/src/physics_factory_incompressible_turb_flow.C | 2 +- src/physics/src/physics_factory_one_d_stress_solids.C | 2 +- src/physics/src/physics_factory_plane_stress_solids.C | 2 +- src/physics/src/physics_factory_variable_density_flow.C | 2 +- src/physics/src/physics_factory_with_core.C | 2 +- src/physics/src/physics_naming.C | 2 +- src/physics/src/reacting_low_mach_navier_stokes.C | 2 +- src/physics/src/reacting_low_mach_navier_stokes_abstract.C | 2 +- src/physics/src/reacting_low_mach_navier_stokes_instantiate.C | 2 +- src/physics/src/scalar_ode.C | 2 +- src/physics/src/solid_mechanics_abstract.C | 2 +- src/physics/src/source_term_base.C | 2 +- src/physics/src/spalart_allmaras.C | 2 +- src/physics/src/spalart_allmaras_helper.C | 2 +- src/physics/src/spalart_allmaras_parameters.C | 2 +- src/physics/src/spalart_allmaras_spgsm_stab.C | 2 +- src/physics/src/spalart_allmaras_stab_base.C | 2 +- src/physics/src/spalart_allmaras_stab_helper.C | 2 +- src/physics/src/stab_helper.C | 2 +- src/physics/src/stokes.C | 2 +- src/physics/src/turbulence_models_base.C | 2 +- src/physics/src/velocity_drag.C | 2 +- src/physics/src/velocity_drag_adjoint_stab.C | 2 +- src/physics/src/velocity_drag_base.C | 2 +- src/physics/src/velocity_penalty.C | 2 +- src/physics/src/velocity_penalty_adjoint_stab.C | 2 +- src/physics/src/velocity_penalty_base.C | 2 +- src/properties/include/grins/antioch_chemistry.h | 2 +- .../include/grins/antioch_constant_transport_evaluator.h | 2 +- .../include/grins/antioch_constant_transport_mixture.h | 2 +- src/properties/include/grins/antioch_evaluator.h | 2 +- src/properties/include/grins/antioch_kinetics.h | 2 +- src/properties/include/grins/antioch_mixture.h | 2 +- .../grins/antioch_mixture_averaged_transport_evaluator.h | 2 +- .../include/grins/antioch_mixture_averaged_transport_mixture.h | 2 +- src/properties/include/grins/cantera_evaluator.h | 2 +- src/properties/include/grins/cantera_kinetics.h | 2 +- src/properties/include/grins/cantera_mixture.h | 2 +- src/properties/include/grins/cantera_thermo.h | 2 +- src/properties/include/grins/cantera_transport.h | 2 +- src/properties/include/grins/constant_conductivity.h | 2 +- src/properties/include/grins/constant_prandtl_conductivity.h | 2 +- src/properties/include/grins/constant_source_func.h | 2 +- src/properties/include/grins/constant_specific_heat.h | 2 +- src/properties/include/grins/constant_viscosity.h | 2 +- src/properties/include/grins/elasticity_tensor.h | 2 +- src/properties/include/grins/gas_mixture.h | 2 +- src/properties/include/grins/hookes_law.h | 2 +- src/properties/include/grins/hookes_law_1d.h | 2 +- src/properties/include/grins/hyperelastic_strain_energy.h | 2 +- src/properties/include/grins/hyperelasticity.h | 2 +- .../include/grins/incompressible_plane_stress_hyperelasticity.h | 2 +- src/properties/include/grins/materials_parsing.h | 2 +- src/properties/include/grins/mooney_rivlin.h | 2 +- src/properties/include/grins/parsed_conductivity.h | 2 +- src/properties/include/grins/parsed_property_base.h | 2 +- src/properties/include/grins/parsed_viscosity.h | 2 +- src/properties/include/grins/property_types.h | 2 +- src/properties/include/grins/spalart_allmaras_viscosity.h | 2 +- src/properties/include/grins/stress_strain_law.h | 2 +- src/properties/include/grins/viscosity_base.h | 2 +- src/properties/src/antioch_chemistry.C | 2 +- src/properties/src/antioch_constant_transport_evaluator.C | 2 +- src/properties/src/antioch_constant_transport_instantiate.C | 2 +- src/properties/src/antioch_constant_transport_mixture.C | 2 +- src/properties/src/antioch_evaluator.C | 2 +- src/properties/src/antioch_evaluator_instantiate.C | 2 +- src/properties/src/antioch_kinetics.C | 2 +- src/properties/src/antioch_mixture.C | 2 +- .../src/antioch_mixture_averaged_transport_evaluator.C | 2 +- .../antioch_mixture_averaged_transport_evaluator_instantiate.C | 2 +- src/properties/src/antioch_mixture_averaged_transport_mixture.C | 2 +- .../antioch_mixture_averaged_transport_mixture_instantiate.C | 2 +- src/properties/src/cantera_evaluator.C | 2 +- src/properties/src/cantera_kinetics.C | 2 +- src/properties/src/cantera_mixture.C | 2 +- src/properties/src/cantera_thermo.C | 2 +- src/properties/src/cantera_transport.C | 2 +- src/properties/src/constant_conductivity.C | 2 +- src/properties/src/constant_prandtl_conductivity.C | 2 +- src/properties/src/constant_source_func.C | 2 +- src/properties/src/constant_specific_heat.C | 2 +- src/properties/src/constant_viscosity.C | 2 +- src/properties/src/gas_mixture.C | 2 +- src/properties/src/hookes_law.C | 2 +- src/properties/src/hookes_law_1d.C | 2 +- src/properties/src/hyperelasticity.C | 2 +- src/properties/src/hyperelasticity_instantiate.C | 2 +- .../src/incompressible_plane_stress_hyperelasticity.C | 2 +- src/properties/src/materials_parsing.C | 2 +- src/properties/src/mooney_rivlin.C | 2 +- src/properties/src/parsed_property_base.C | 2 +- src/properties/src/parsed_viscosity.C | 2 +- src/properties/src/viscosity_base.C | 2 +- src/qoi/include/grins/average_nusselt_number.h | 2 +- src/qoi/include/grins/composite_qoi.h | 2 +- src/qoi/include/grins/parsed_boundary_qoi.h | 2 +- src/qoi/include/grins/parsed_interior_qoi.h | 2 +- src/qoi/include/grins/qoi_base.h | 2 +- src/qoi/include/grins/qoi_factory.h | 2 +- src/qoi/include/grins/qoi_names.h | 2 +- src/qoi/include/grins/vorticity.h | 2 +- src/qoi/include/grins/weighted_flux_qoi.h | 2 +- src/qoi/src/average_nusselt_number.C | 2 +- src/qoi/src/composite_qoi.C | 2 +- src/qoi/src/parsed_boundary_qoi.C | 2 +- src/qoi/src/parsed_interior_qoi.C | 2 +- src/qoi/src/qoi_base.C | 2 +- src/qoi/src/qoi_factory.C | 2 +- src/qoi/src/vorticity.C | 2 +- src/qoi/src/weighted_flux_qoi.C | 2 +- src/solver/include/grins/grins_solver.h | 2 +- src/solver/include/grins/grins_steady_solver.h | 2 +- src/solver/include/grins/grins_unsteady_solver.h | 2 +- src/solver/include/grins/mesh_adaptive_solver_base.h | 2 +- src/solver/include/grins/mesh_builder.h | 2 +- src/solver/include/grins/parameter_manager.h | 2 +- src/solver/include/grins/parameter_user.h | 2 +- src/solver/include/grins/simulation.h | 2 +- src/solver/include/grins/simulation_builder.h | 2 +- src/solver/include/grins/simulation_parsing.h | 2 +- src/solver/include/grins/solver_context.h | 2 +- src/solver/include/grins/solver_factory.h | 2 +- src/solver/include/grins/solver_names.h | 2 +- src/solver/include/grins/solver_parsing.h | 2 +- src/solver/include/grins/steady_mesh_adaptive_solver.h | 2 +- src/solver/include/grins/time_stepping_parsing.h | 2 +- src/solver/include/grins/unsteady_mesh_adaptive_solver.h | 2 +- src/solver/src/grins.C | 2 +- src/solver/src/grins_solver.C | 2 +- src/solver/src/grins_steady_solver.C | 2 +- src/solver/src/grins_unsteady_solver.C | 2 +- src/solver/src/mesh_adaptive_solver_base.C | 2 +- src/solver/src/mesh_builder.C | 2 +- src/solver/src/parameter_manager.C | 2 +- src/solver/src/parameter_user.C | 2 +- src/solver/src/simulation.C | 2 +- src/solver/src/simulation_builder.C | 2 +- src/solver/src/solver_context.C | 2 +- src/solver/src/solver_factory.C | 2 +- src/solver/src/solver_parsing.C | 2 +- src/solver/src/steady_mesh_adaptive_solver.C | 2 +- src/solver/src/time_stepping_parsing.C | 2 +- src/solver/src/unsteady_mesh_adaptive_solver.C | 2 +- src/strategies/include/grins/adaptive_time_stepping_options.h | 2 +- .../include/grins/adjoint_error_estimator_factories.h | 2 +- src/strategies/include/grins/error_estimator_factory_base.h | 2 +- src/strategies/include/grins/error_estimator_factory_basic.h | 2 +- src/strategies/include/grins/error_estimator_options.h | 2 +- src/strategies/include/grins/strategies_parsing.h | 2 +- src/strategies/src/adaptive_time_stepping_options.C | 2 +- src/strategies/src/adjoint_error_estimator_factories.C | 2 +- src/strategies/src/error_estimator_factory_base.C | 2 +- src/strategies/src/error_estimator_factory_basic.C | 2 +- src/strategies/src/error_estimator_options.C | 2 +- src/strategies/src/strategies_parsing.C | 2 +- src/utilities/include/grins/cached_quantities_enum.h | 2 +- src/utilities/include/grins/cached_values.h | 2 +- src/utilities/include/grins/distance_function.h | 2 +- src/utilities/include/grins/grins_enums.h | 2 +- src/utilities/include/grins/input_utils.h | 2 +- src/utilities/include/grins/math_constants.h | 2 +- src/utilities/include/grins/parameter_antioch_reset.h | 2 +- src/utilities/include/grins/physical_constants.h | 2 +- src/utilities/include/grins/shared_ptr.h | 2 +- src/utilities/include/grins/string_utils.h | 2 +- src/utilities/src/cached_values.C | 2 +- src/utilities/src/grins_version.C | 2 +- src/utilities/src/input_utils.C | 2 +- src/utilities/src/parameter_antioch_reset.C | 2 +- src/utilities/src/string_utils.C | 2 +- src/utilities/src/version.C | 2 +- src/variables/include/grins/displacement_fe_variables.h | 2 +- src/variables/include/grins/fe_variables_base.h | 2 +- src/variables/include/grins/generic_fe_type_variable.h | 2 +- src/variables/include/grins/multi_var_single_fe_type_variable.h | 2 +- src/variables/include/grins/pressure_fe_variable.h | 2 +- src/variables/include/grins/primitive_temp_fe_variables.h | 2 +- src/variables/include/grins/single_fe_type_variable.h | 2 +- .../include/grins/single_var_single_fe_type_variable.h | 2 +- src/variables/include/grins/species_mass_fracs_fe_variables.h | 2 +- src/variables/include/grins/thermo_pressure_fe_variable.h | 2 +- src/variables/include/grins/turbulence_fe_variables.h | 2 +- src/variables/include/grins/variable_name_defaults.h | 2 +- src/variables/include/grins/variable_warehouse.h | 2 +- src/variables/include/grins/variables_parsing.h | 2 +- src/variables/include/grins/velocity_fe_variables.h | 2 +- src/variables/src/displacement_fe_variables.C | 2 +- src/variables/src/fe_variables_base.C | 2 +- src/variables/src/multi_var_single_fe_type_variable.C | 2 +- src/variables/src/single_fe_type_variable.C | 2 +- src/variables/src/single_var_single_fe_type_variable.C | 2 +- src/variables/src/species_mass_fracs_fe_variables.C | 2 +- src/variables/src/variable_warehouse.C | 2 +- src/variables/src/velocity_fe_variables.C | 2 +- src/visualization/include/grins/postprocessed_quantities.h | 2 +- src/visualization/include/grins/postprocessing_factory.h | 2 +- src/visualization/include/grins/steady_visualization.h | 2 +- src/visualization/include/grins/unsteady_visualization.h | 2 +- src/visualization/include/grins/visualization.h | 2 +- src/visualization/include/grins/visualization_factory.h | 2 +- src/visualization/src/postprocessed_quantities.C | 2 +- src/visualization/src/postprocessing_factory.C | 2 +- src/visualization/src/steady_visualization.C | 2 +- src/visualization/src/unsteady_visualization.C | 2 +- src/visualization/src/visualization.C | 2 +- src/visualization/src/visualization_factory.C | 2 +- test/amr/generic_amr_testing_app.C | 2 +- test/common/system_helper.h | 2 +- test/common/testing_utils.h | 2 +- test/exact_soln/generic_exact_solution_testing_app.C | 2 +- test/exact_soln/vorticity_qoi.C | 2 +- test/interface/air_5sp.C | 2 +- .../antioch_mixture_averaged_transport_evaluator_regression.C | 2 +- test/interface/antioch_test_base.h | 2 +- test/interface/cantera_test_base.h | 2 +- test/interface/cantera_transport_regression.C | 2 +- test/interface/interface_driver.C | 2 +- test/interface/kinetics_test_base.h | 2 +- test/interface/nasa_thermo_test_base.h | 2 +- test/interface/species_test_base.h | 2 +- test/interface/thermochem_test_common.h | 2 +- test/regression/3d_low_mach_jacobians.C | 2 +- test/regression/elastic_sheet_regression.C | 2 +- test/regression/gaussian_profiles.C | 2 +- test/regression/generic_solution_regression.C | 2 +- test/regression/grins_flow_regression.C | 2 +- test/regression/low_mach_cavity_benchmark_regression.C | 2 +- test/regression/suspended_cable_regression.C | 2 +- test/regression/test_turbulent_channel.C | 2 +- test/unit/antioch_mixture.C | 2 +- test/unit/arrhenius_catalycity.C | 2 +- test/unit/cantera_mixture.C | 2 +- test/unit/composite_function.C | 2 +- test/unit/constant_catalycity.C | 2 +- test/unit/default_bc_builder.C | 2 +- test/unit/gas_recombination_catalytic_wall.C | 2 +- test/unit/gas_solid_catalytic_wall.C | 2 +- test/unit/mesh_builder.C | 2 +- test/unit/power_law_catalycity.C | 2 +- test/unit/string_utils.C | 2 +- test/unit/unit_driver.C | 2 +- test/unit/variables.C | 2 +- 499 files changed, 499 insertions(+), 499 deletions(-) diff --git a/LICENSE b/LICENSE index 8517758f3..fdb85cb47 100644 --- a/LICENSE +++ b/LICENSE @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/examples/cavity_benchmark/cavity.C b/examples/cavity_benchmark/cavity.C index 8980da4d3..aca6e49ae 100644 --- a/examples/cavity_benchmark/cavity.C +++ b/examples/cavity_benchmark/cavity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/examples/elastic_sheet/displacement_continuation_solver.C b/examples/elastic_sheet/displacement_continuation_solver.C index 3e71a0d3a..dd388b7a3 100644 --- a/examples/elastic_sheet/displacement_continuation_solver.C +++ b/examples/elastic_sheet/displacement_continuation_solver.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/examples/elastic_sheet/displacement_continuation_solver.h b/examples/elastic_sheet/displacement_continuation_solver.h index bbe043d64..a89c01b89 100644 --- a/examples/elastic_sheet/displacement_continuation_solver.h +++ b/examples/elastic_sheet/displacement_continuation_solver.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/examples/elastic_sheet/displacement_continuation_solver_factory.h b/examples/elastic_sheet/displacement_continuation_solver_factory.h index 4fbf12aff..97db5dea5 100644 --- a/examples/elastic_sheet/displacement_continuation_solver_factory.h +++ b/examples/elastic_sheet/displacement_continuation_solver_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/examples/elastic_sheet/stretching_sheet.C b/examples/elastic_sheet/stretching_sheet.C index 2b7bbaeaa..8218bd109 100644 --- a/examples/elastic_sheet/stretching_sheet.C +++ b/examples/elastic_sheet/stretching_sheet.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/examples/inflating_sheet/inflating_sheet.C b/examples/inflating_sheet/inflating_sheet.C index 98b27e3e8..d6e1db880 100644 --- a/examples/inflating_sheet/inflating_sheet.C +++ b/examples/inflating_sheet/inflating_sheet.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/examples/inflating_sheet/inflating_sheet_solver_factory.C b/examples/inflating_sheet/inflating_sheet_solver_factory.C index 4db5fbc52..59c70050d 100644 --- a/examples/inflating_sheet/inflating_sheet_solver_factory.C +++ b/examples/inflating_sheet/inflating_sheet_solver_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/examples/inflating_sheet/inflating_sheet_solver_factory.h b/examples/inflating_sheet/inflating_sheet_solver_factory.h index 71e9ef4b9..862b8e4f8 100644 --- a/examples/inflating_sheet/inflating_sheet_solver_factory.h +++ b/examples/inflating_sheet/inflating_sheet_solver_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/examples/inflating_sheet/pressure_continuation_solver.C b/examples/inflating_sheet/pressure_continuation_solver.C index 7bb98c601..42fd44e2d 100644 --- a/examples/inflating_sheet/pressure_continuation_solver.C +++ b/examples/inflating_sheet/pressure_continuation_solver.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/examples/inflating_sheet/pressure_continuation_solver.h b/examples/inflating_sheet/pressure_continuation_solver.h index 0c9ebc3ec..302ef1b2a 100644 --- a/examples/inflating_sheet/pressure_continuation_solver.h +++ b/examples/inflating_sheet/pressure_continuation_solver.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/examples/suspended_cable/suspended_cable.C b/examples/suspended_cable/suspended_cable.C index f22aa1167..f07342410 100644 --- a/examples/suspended_cable/suspended_cable.C +++ b/examples/suspended_cable/suspended_cable.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/apps/antioch_kinetic_rates.C b/src/apps/antioch_kinetic_rates.C index 54165e73c..223e8ccef 100644 --- a/src/apps/antioch_kinetic_rates.C +++ b/src/apps/antioch_kinetic_rates.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/apps/antioch_thermo_tables.C b/src/apps/antioch_thermo_tables.C index 0da754477..2bdb781fe 100644 --- a/src/apps/antioch_thermo_tables.C +++ b/src/apps/antioch_thermo_tables.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/apps/antioch_transport_values.C b/src/apps/antioch_transport_values.C index 9f054b50a..4cd039d84 100644 --- a/src/apps/antioch_transport_values.C +++ b/src/apps/antioch_transport_values.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/apps/cantera_kinetic_rates.C b/src/apps/cantera_kinetic_rates.C index d86cbee35..a315deae9 100644 --- a/src/apps/cantera_kinetic_rates.C +++ b/src/apps/cantera_kinetic_rates.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/arrhenius_catalycity.h b/src/boundary_conditions/include/grins/arrhenius_catalycity.h index cdfea871a..303023fcf 100644 --- a/src/boundary_conditions/include/grins/arrhenius_catalycity.h +++ b/src/boundary_conditions/include/grins/arrhenius_catalycity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/bc_builder.h b/src/boundary_conditions/include/grins/bc_builder.h index 163010f2f..de180f029 100644 --- a/src/boundary_conditions/include/grins/bc_builder.h +++ b/src/boundary_conditions/include/grins/bc_builder.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/bc_factory_abstract.h b/src/boundary_conditions/include/grins/bc_factory_abstract.h index 0af24a778..dfa74e5e0 100644 --- a/src/boundary_conditions/include/grins/bc_factory_abstract.h +++ b/src/boundary_conditions/include/grins/bc_factory_abstract.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/boundary_condition_names.h b/src/boundary_conditions/include/grins/boundary_condition_names.h index 76f777fa8..60a4b02d3 100644 --- a/src/boundary_conditions/include/grins/boundary_condition_names.h +++ b/src/boundary_conditions/include/grins/boundary_condition_names.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/catalycity_base.h b/src/boundary_conditions/include/grins/catalycity_base.h index 940c7d9a5..25142594e 100644 --- a/src/boundary_conditions/include/grins/catalycity_base.h +++ b/src/boundary_conditions/include/grins/catalycity_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/catalycity_factories.h b/src/boundary_conditions/include/grins/catalycity_factories.h index 3b0b11341..11c05cb4b 100644 --- a/src/boundary_conditions/include/grins/catalycity_factories.h +++ b/src/boundary_conditions/include/grins/catalycity_factories.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/catalycity_factories_old_style.h b/src/boundary_conditions/include/grins/catalycity_factories_old_style.h index 75b020165..e5b2c6373 100644 --- a/src/boundary_conditions/include/grins/catalycity_factories_old_style.h +++ b/src/boundary_conditions/include/grins/catalycity_factories_old_style.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/catalycity_factory_abstract.h b/src/boundary_conditions/include/grins/catalycity_factory_abstract.h index 37900f11a..1cc4a9d7c 100644 --- a/src/boundary_conditions/include/grins/catalycity_factory_abstract.h +++ b/src/boundary_conditions/include/grins/catalycity_factory_abstract.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/catalycity_factory_old_style_base.h b/src/boundary_conditions/include/grins/catalycity_factory_old_style_base.h index 28fde54a4..d6542fee5 100644 --- a/src/boundary_conditions/include/grins/catalycity_factory_old_style_base.h +++ b/src/boundary_conditions/include/grins/catalycity_factory_old_style_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/catalytic_wall_base.h b/src/boundary_conditions/include/grins/catalytic_wall_base.h index 42d192fb8..40f9b5500 100644 --- a/src/boundary_conditions/include/grins/catalytic_wall_base.h +++ b/src/boundary_conditions/include/grins/catalytic_wall_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/catalytic_wall_neumann_bc_factory_base.h b/src/boundary_conditions/include/grins/catalytic_wall_neumann_bc_factory_base.h index dcd37fbd4..4e8353468 100644 --- a/src/boundary_conditions/include/grins/catalytic_wall_neumann_bc_factory_base.h +++ b/src/boundary_conditions/include/grins/catalytic_wall_neumann_bc_factory_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/catalytic_wall_neumann_bc_factory_common.h b/src/boundary_conditions/include/grins/catalytic_wall_neumann_bc_factory_common.h index 393659b97..82fc58b4c 100644 --- a/src/boundary_conditions/include/grins/catalytic_wall_neumann_bc_factory_common.h +++ b/src/boundary_conditions/include/grins/catalytic_wall_neumann_bc_factory_common.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/catalytic_wall_neumann_bc_old_style_factory_base.h b/src/boundary_conditions/include/grins/catalytic_wall_neumann_bc_old_style_factory_base.h index d653fbffb..d00b2cad9 100644 --- a/src/boundary_conditions/include/grins/catalytic_wall_neumann_bc_old_style_factory_base.h +++ b/src/boundary_conditions/include/grins/catalytic_wall_neumann_bc_old_style_factory_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/constant_catalycity.h b/src/boundary_conditions/include/grins/constant_catalycity.h index d3b7e6525..68b78d261 100644 --- a/src/boundary_conditions/include/grins/constant_catalycity.h +++ b/src/boundary_conditions/include/grins/constant_catalycity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/constant_function_dirichlet_bc_factory.h b/src/boundary_conditions/include/grins/constant_function_dirichlet_bc_factory.h index 68467035e..e223adf72 100644 --- a/src/boundary_conditions/include/grins/constant_function_dirichlet_bc_factory.h +++ b/src/boundary_conditions/include/grins/constant_function_dirichlet_bc_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/default_bc_builder.h b/src/boundary_conditions/include/grins/default_bc_builder.h index 3c5001c54..17971d329 100644 --- a/src/boundary_conditions/include/grins/default_bc_builder.h +++ b/src/boundary_conditions/include/grins/default_bc_builder.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/dirichlet_bc_factory_abstract.h b/src/boundary_conditions/include/grins/dirichlet_bc_factory_abstract.h index d1e99a80a..1c17e2189 100644 --- a/src/boundary_conditions/include/grins/dirichlet_bc_factory_abstract.h +++ b/src/boundary_conditions/include/grins/dirichlet_bc_factory_abstract.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/dirichlet_bc_factory_function_base.h b/src/boundary_conditions/include/grins/dirichlet_bc_factory_function_base.h index 62e9654da..9598badd7 100644 --- a/src/boundary_conditions/include/grins/dirichlet_bc_factory_function_base.h +++ b/src/boundary_conditions/include/grins/dirichlet_bc_factory_function_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/dirichlet_bc_factory_function_old_style_base.h b/src/boundary_conditions/include/grins/dirichlet_bc_factory_function_old_style_base.h index 73f5281b1..eccb75042 100644 --- a/src/boundary_conditions/include/grins/dirichlet_bc_factory_function_old_style_base.h +++ b/src/boundary_conditions/include/grins/dirichlet_bc_factory_function_old_style_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/gas_catalytic_wall_neumann_bc_factories.h b/src/boundary_conditions/include/grins/gas_catalytic_wall_neumann_bc_factories.h index d679527c6..ef4df38f4 100644 --- a/src/boundary_conditions/include/grins/gas_catalytic_wall_neumann_bc_factories.h +++ b/src/boundary_conditions/include/grins/gas_catalytic_wall_neumann_bc_factories.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/gas_catalytic_wall_neumann_bc_old_style_factories.h b/src/boundary_conditions/include/grins/gas_catalytic_wall_neumann_bc_old_style_factories.h index 1aac784a2..2c4464f18 100644 --- a/src/boundary_conditions/include/grins/gas_catalytic_wall_neumann_bc_old_style_factories.h +++ b/src/boundary_conditions/include/grins/gas_catalytic_wall_neumann_bc_old_style_factories.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/gas_recombination_catalytic_wall.h b/src/boundary_conditions/include/grins/gas_recombination_catalytic_wall.h index 228a546cf..6a6190049 100644 --- a/src/boundary_conditions/include/grins/gas_recombination_catalytic_wall.h +++ b/src/boundary_conditions/include/grins/gas_recombination_catalytic_wall.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/gas_recombination_catalytic_wall_neumann_bc_factory_impl.h b/src/boundary_conditions/include/grins/gas_recombination_catalytic_wall_neumann_bc_factory_impl.h index 0bdbcd868..42af0a0f0 100644 --- a/src/boundary_conditions/include/grins/gas_recombination_catalytic_wall_neumann_bc_factory_impl.h +++ b/src/boundary_conditions/include/grins/gas_recombination_catalytic_wall_neumann_bc_factory_impl.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/gas_solid_catalytic_wall.h b/src/boundary_conditions/include/grins/gas_solid_catalytic_wall.h index becc714f8..9e41c37f2 100644 --- a/src/boundary_conditions/include/grins/gas_solid_catalytic_wall.h +++ b/src/boundary_conditions/include/grins/gas_solid_catalytic_wall.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/gas_solid_catalytic_wall_neumann_bc_factory_impl.h b/src/boundary_conditions/include/grins/gas_solid_catalytic_wall_neumann_bc_factory_impl.h index 68de93901..ab366fab8 100644 --- a/src/boundary_conditions/include/grins/gas_solid_catalytic_wall_neumann_bc_factory_impl.h +++ b/src/boundary_conditions/include/grins/gas_solid_catalytic_wall_neumann_bc_factory_impl.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/homogeneous_dirichlet_bc_factory.h b/src/boundary_conditions/include/grins/homogeneous_dirichlet_bc_factory.h index 2af01aed1..ad77e799c 100644 --- a/src/boundary_conditions/include/grins/homogeneous_dirichlet_bc_factory.h +++ b/src/boundary_conditions/include/grins/homogeneous_dirichlet_bc_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/homogeneous_neumann_bc_factory.h b/src/boundary_conditions/include/grins/homogeneous_neumann_bc_factory.h index f4415df51..6b0a362d8 100644 --- a/src/boundary_conditions/include/grins/homogeneous_neumann_bc_factory.h +++ b/src/boundary_conditions/include/grins/homogeneous_neumann_bc_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/isothermal_dirichlet_old_style_bc_factory.h b/src/boundary_conditions/include/grins/isothermal_dirichlet_old_style_bc_factory.h index 04d79a93b..0ef2880ed 100644 --- a/src/boundary_conditions/include/grins/isothermal_dirichlet_old_style_bc_factory.h +++ b/src/boundary_conditions/include/grins/isothermal_dirichlet_old_style_bc_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/neumann_bc_abstract.h b/src/boundary_conditions/include/grins/neumann_bc_abstract.h index 03bab51d3..be67e1ba5 100644 --- a/src/boundary_conditions/include/grins/neumann_bc_abstract.h +++ b/src/boundary_conditions/include/grins/neumann_bc_abstract.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/neumann_bc_container.h b/src/boundary_conditions/include/grins/neumann_bc_container.h index 00938dc6b..f05a6a920 100644 --- a/src/boundary_conditions/include/grins/neumann_bc_container.h +++ b/src/boundary_conditions/include/grins/neumann_bc_container.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/neumann_bc_factory_abstract.h b/src/boundary_conditions/include/grins/neumann_bc_factory_abstract.h index fc3f79cc0..e6345c241 100644 --- a/src/boundary_conditions/include/grins/neumann_bc_factory_abstract.h +++ b/src/boundary_conditions/include/grins/neumann_bc_factory_abstract.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/neumann_bc_function_base.h b/src/boundary_conditions/include/grins/neumann_bc_function_base.h index 0db483914..5dff7094a 100644 --- a/src/boundary_conditions/include/grins/neumann_bc_function_base.h +++ b/src/boundary_conditions/include/grins/neumann_bc_function_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/neumann_bc_old_style_factory_abstract.h b/src/boundary_conditions/include/grins/neumann_bc_old_style_factory_abstract.h index 8c6ab8c46..ba7118d92 100644 --- a/src/boundary_conditions/include/grins/neumann_bc_old_style_factory_abstract.h +++ b/src/boundary_conditions/include/grins/neumann_bc_old_style_factory_abstract.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/neumann_bc_parsed.h b/src/boundary_conditions/include/grins/neumann_bc_parsed.h index aabc7bd69..0d157d1d6 100644 --- a/src/boundary_conditions/include/grins/neumann_bc_parsed.h +++ b/src/boundary_conditions/include/grins/neumann_bc_parsed.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/old_style_bc_builder.h b/src/boundary_conditions/include/grins/old_style_bc_builder.h index 7e8a86525..8e7edef0b 100644 --- a/src/boundary_conditions/include/grins/old_style_bc_builder.h +++ b/src/boundary_conditions/include/grins/old_style_bc_builder.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/parsed_function_dirichlet_bc_factory.h b/src/boundary_conditions/include/grins/parsed_function_dirichlet_bc_factory.h index f6318055b..12f351478 100644 --- a/src/boundary_conditions/include/grins/parsed_function_dirichlet_bc_factory.h +++ b/src/boundary_conditions/include/grins/parsed_function_dirichlet_bc_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/parsed_function_dirichlet_old_style_bc_factory.h b/src/boundary_conditions/include/grins/parsed_function_dirichlet_old_style_bc_factory.h index 9f425c17b..4df1250af 100644 --- a/src/boundary_conditions/include/grins/parsed_function_dirichlet_old_style_bc_factory.h +++ b/src/boundary_conditions/include/grins/parsed_function_dirichlet_old_style_bc_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/parsed_function_factory_helper.h b/src/boundary_conditions/include/grins/parsed_function_factory_helper.h index 305ebff1f..7e855b38a 100644 --- a/src/boundary_conditions/include/grins/parsed_function_factory_helper.h +++ b/src/boundary_conditions/include/grins/parsed_function_factory_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/parsed_function_neumann_bc_factory.h b/src/boundary_conditions/include/grins/parsed_function_neumann_bc_factory.h index b2072401a..5f4ceeac8 100644 --- a/src/boundary_conditions/include/grins/parsed_function_neumann_bc_factory.h +++ b/src/boundary_conditions/include/grins/parsed_function_neumann_bc_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/parsed_function_neumann_bc_factory_helper.h b/src/boundary_conditions/include/grins/parsed_function_neumann_bc_factory_helper.h index 953ebbf71..0278c2fd5 100644 --- a/src/boundary_conditions/include/grins/parsed_function_neumann_bc_factory_helper.h +++ b/src/boundary_conditions/include/grins/parsed_function_neumann_bc_factory_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/parsed_function_neumann_old_style_bc_factory.h b/src/boundary_conditions/include/grins/parsed_function_neumann_old_style_bc_factory.h index 6cc8d390f..99fbac826 100644 --- a/src/boundary_conditions/include/grins/parsed_function_neumann_old_style_bc_factory.h +++ b/src/boundary_conditions/include/grins/parsed_function_neumann_old_style_bc_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/parsed_function_traits.h b/src/boundary_conditions/include/grins/parsed_function_traits.h index 21fbe020a..73fab16df 100644 --- a/src/boundary_conditions/include/grins/parsed_function_traits.h +++ b/src/boundary_conditions/include/grins/parsed_function_traits.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/power_law_catalycity.h b/src/boundary_conditions/include/grins/power_law_catalycity.h index a69a46909..2c8710d13 100644 --- a/src/boundary_conditions/include/grins/power_law_catalycity.h +++ b/src/boundary_conditions/include/grins/power_law_catalycity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/prescribed_vector_value_dirichlet_old_style_bc_factory.h b/src/boundary_conditions/include/grins/prescribed_vector_value_dirichlet_old_style_bc_factory.h index d63f357f1..8f4891cf4 100644 --- a/src/boundary_conditions/include/grins/prescribed_vector_value_dirichlet_old_style_bc_factory.h +++ b/src/boundary_conditions/include/grins/prescribed_vector_value_dirichlet_old_style_bc_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/pressure_pinning.h b/src/boundary_conditions/include/grins/pressure_pinning.h index 692c44d6c..8c09d157b 100644 --- a/src/boundary_conditions/include/grins/pressure_pinning.h +++ b/src/boundary_conditions/include/grins/pressure_pinning.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/include/grins/symmetry_type_bc_factories.h b/src/boundary_conditions/include/grins/symmetry_type_bc_factories.h index f7ba132f6..15fba8700 100644 --- a/src/boundary_conditions/include/grins/symmetry_type_bc_factories.h +++ b/src/boundary_conditions/include/grins/symmetry_type_bc_factories.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/arrhenius_catalycity.C b/src/boundary_conditions/src/arrhenius_catalycity.C index 086af043e..b04cbfd31 100644 --- a/src/boundary_conditions/src/arrhenius_catalycity.C +++ b/src/boundary_conditions/src/arrhenius_catalycity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/bc_builder.C b/src/boundary_conditions/src/bc_builder.C index 87b5511bc..2bc9ad76f 100644 --- a/src/boundary_conditions/src/bc_builder.C +++ b/src/boundary_conditions/src/bc_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/catalycity_base.C b/src/boundary_conditions/src/catalycity_base.C index 478eac317..733e01cc4 100644 --- a/src/boundary_conditions/src/catalycity_base.C +++ b/src/boundary_conditions/src/catalycity_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/catalycity_factories.C b/src/boundary_conditions/src/catalycity_factories.C index 15de356e0..4f4708cb2 100644 --- a/src/boundary_conditions/src/catalycity_factories.C +++ b/src/boundary_conditions/src/catalycity_factories.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/catalycity_factories_old_style.C b/src/boundary_conditions/src/catalycity_factories_old_style.C index 3eb109d8f..400058167 100644 --- a/src/boundary_conditions/src/catalycity_factories_old_style.C +++ b/src/boundary_conditions/src/catalycity_factories_old_style.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/catalycity_factory_abstract.C b/src/boundary_conditions/src/catalycity_factory_abstract.C index 0e7fc297b..a5d3daa56 100644 --- a/src/boundary_conditions/src/catalycity_factory_abstract.C +++ b/src/boundary_conditions/src/catalycity_factory_abstract.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/catalycity_factory_old_style_base.C b/src/boundary_conditions/src/catalycity_factory_old_style_base.C index 65ad3707d..318fee718 100644 --- a/src/boundary_conditions/src/catalycity_factory_old_style_base.C +++ b/src/boundary_conditions/src/catalycity_factory_old_style_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/catalytic_wall_base.C b/src/boundary_conditions/src/catalytic_wall_base.C index e3a9d47b5..8e8d31c17 100644 --- a/src/boundary_conditions/src/catalytic_wall_base.C +++ b/src/boundary_conditions/src/catalytic_wall_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/catalytic_wall_instantiate.C b/src/boundary_conditions/src/catalytic_wall_instantiate.C index f76f01eb7..a59ca49e8 100644 --- a/src/boundary_conditions/src/catalytic_wall_instantiate.C +++ b/src/boundary_conditions/src/catalytic_wall_instantiate.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/catalytic_wall_neumann_bc_factory_base.C b/src/boundary_conditions/src/catalytic_wall_neumann_bc_factory_base.C index 14ee4bf46..ebf0444b3 100644 --- a/src/boundary_conditions/src/catalytic_wall_neumann_bc_factory_base.C +++ b/src/boundary_conditions/src/catalytic_wall_neumann_bc_factory_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/catalytic_wall_neumann_bc_factory_common.C b/src/boundary_conditions/src/catalytic_wall_neumann_bc_factory_common.C index 6392de470..1d32fc542 100644 --- a/src/boundary_conditions/src/catalytic_wall_neumann_bc_factory_common.C +++ b/src/boundary_conditions/src/catalytic_wall_neumann_bc_factory_common.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/catalytic_wall_neumann_bc_old_style_factory_base.C b/src/boundary_conditions/src/catalytic_wall_neumann_bc_old_style_factory_base.C index 84ec8afe2..91375bd22 100644 --- a/src/boundary_conditions/src/catalytic_wall_neumann_bc_old_style_factory_base.C +++ b/src/boundary_conditions/src/catalytic_wall_neumann_bc_old_style_factory_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/constant_catalycity.C b/src/boundary_conditions/src/constant_catalycity.C index 834de6064..d6de1f7f3 100644 --- a/src/boundary_conditions/src/constant_catalycity.C +++ b/src/boundary_conditions/src/constant_catalycity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/constant_function_dirichlet_bc_factory.C b/src/boundary_conditions/src/constant_function_dirichlet_bc_factory.C index 43d6614e7..9a442da3a 100644 --- a/src/boundary_conditions/src/constant_function_dirichlet_bc_factory.C +++ b/src/boundary_conditions/src/constant_function_dirichlet_bc_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/default_bc_builder.C b/src/boundary_conditions/src/default_bc_builder.C index 6e78e9393..345b7f410 100644 --- a/src/boundary_conditions/src/default_bc_builder.C +++ b/src/boundary_conditions/src/default_bc_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/dirichlet_bc_factory_abstract.C b/src/boundary_conditions/src/dirichlet_bc_factory_abstract.C index 4ca44a466..1645eef26 100644 --- a/src/boundary_conditions/src/dirichlet_bc_factory_abstract.C +++ b/src/boundary_conditions/src/dirichlet_bc_factory_abstract.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/dirichlet_bc_factory_function_base.C b/src/boundary_conditions/src/dirichlet_bc_factory_function_base.C index 1e82465d0..b80c6b9d9 100644 --- a/src/boundary_conditions/src/dirichlet_bc_factory_function_base.C +++ b/src/boundary_conditions/src/dirichlet_bc_factory_function_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/dirichlet_bc_factory_function_old_style_base.C b/src/boundary_conditions/src/dirichlet_bc_factory_function_old_style_base.C index c1d32a4a5..cb529ed5f 100644 --- a/src/boundary_conditions/src/dirichlet_bc_factory_function_old_style_base.C +++ b/src/boundary_conditions/src/dirichlet_bc_factory_function_old_style_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/gas_catalytic_wall_neumann_bc_factories.C b/src/boundary_conditions/src/gas_catalytic_wall_neumann_bc_factories.C index 2d5604f7d..321935f86 100644 --- a/src/boundary_conditions/src/gas_catalytic_wall_neumann_bc_factories.C +++ b/src/boundary_conditions/src/gas_catalytic_wall_neumann_bc_factories.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/gas_catalytic_wall_neumann_bc_old_style_factories.C b/src/boundary_conditions/src/gas_catalytic_wall_neumann_bc_old_style_factories.C index a143f0fb5..e2070692a 100644 --- a/src/boundary_conditions/src/gas_catalytic_wall_neumann_bc_old_style_factories.C +++ b/src/boundary_conditions/src/gas_catalytic_wall_neumann_bc_old_style_factories.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/gas_recombination_catalytic_wall.C b/src/boundary_conditions/src/gas_recombination_catalytic_wall.C index e0ec4e7ac..43cc5a226 100644 --- a/src/boundary_conditions/src/gas_recombination_catalytic_wall.C +++ b/src/boundary_conditions/src/gas_recombination_catalytic_wall.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/gas_recombination_catalytic_wall_neumann_bc_factory_impl.C b/src/boundary_conditions/src/gas_recombination_catalytic_wall_neumann_bc_factory_impl.C index 60bf73914..666cb3fb6 100644 --- a/src/boundary_conditions/src/gas_recombination_catalytic_wall_neumann_bc_factory_impl.C +++ b/src/boundary_conditions/src/gas_recombination_catalytic_wall_neumann_bc_factory_impl.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/gas_solid_catalytic_wall.C b/src/boundary_conditions/src/gas_solid_catalytic_wall.C index 1d80a40a2..7cad8248c 100644 --- a/src/boundary_conditions/src/gas_solid_catalytic_wall.C +++ b/src/boundary_conditions/src/gas_solid_catalytic_wall.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/gas_solid_catalytic_wall_neumann_bc_factory_impl.C b/src/boundary_conditions/src/gas_solid_catalytic_wall_neumann_bc_factory_impl.C index f2590dd62..910426bee 100644 --- a/src/boundary_conditions/src/gas_solid_catalytic_wall_neumann_bc_factory_impl.C +++ b/src/boundary_conditions/src/gas_solid_catalytic_wall_neumann_bc_factory_impl.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/homogeneous_dirichlet_bc_factory.C b/src/boundary_conditions/src/homogeneous_dirichlet_bc_factory.C index eab1c20d5..d6ade7dca 100644 --- a/src/boundary_conditions/src/homogeneous_dirichlet_bc_factory.C +++ b/src/boundary_conditions/src/homogeneous_dirichlet_bc_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/homogeneous_neumann_bc_factory.C b/src/boundary_conditions/src/homogeneous_neumann_bc_factory.C index 7951fd3dc..94105a552 100644 --- a/src/boundary_conditions/src/homogeneous_neumann_bc_factory.C +++ b/src/boundary_conditions/src/homogeneous_neumann_bc_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/isothermal_dirichlet_old_style_bc_factory.C b/src/boundary_conditions/src/isothermal_dirichlet_old_style_bc_factory.C index 4b5211960..9952c32db 100644 --- a/src/boundary_conditions/src/isothermal_dirichlet_old_style_bc_factory.C +++ b/src/boundary_conditions/src/isothermal_dirichlet_old_style_bc_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/neumann_bc_factory_abstract.C b/src/boundary_conditions/src/neumann_bc_factory_abstract.C index 833299077..d2a0bf44b 100644 --- a/src/boundary_conditions/src/neumann_bc_factory_abstract.C +++ b/src/boundary_conditions/src/neumann_bc_factory_abstract.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/neumann_bc_function_base.C b/src/boundary_conditions/src/neumann_bc_function_base.C index 3828678f6..daf2b93e5 100644 --- a/src/boundary_conditions/src/neumann_bc_function_base.C +++ b/src/boundary_conditions/src/neumann_bc_function_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/neumann_bc_old_style_factory_abstract.C b/src/boundary_conditions/src/neumann_bc_old_style_factory_abstract.C index 1d3d8942a..add0fa827 100644 --- a/src/boundary_conditions/src/neumann_bc_old_style_factory_abstract.C +++ b/src/boundary_conditions/src/neumann_bc_old_style_factory_abstract.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/neumann_bc_parsed.C b/src/boundary_conditions/src/neumann_bc_parsed.C index 8ed60952a..134829ecc 100644 --- a/src/boundary_conditions/src/neumann_bc_parsed.C +++ b/src/boundary_conditions/src/neumann_bc_parsed.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/old_style_bc_builder.C b/src/boundary_conditions/src/old_style_bc_builder.C index 16bea975c..92c4e7655 100644 --- a/src/boundary_conditions/src/old_style_bc_builder.C +++ b/src/boundary_conditions/src/old_style_bc_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/parsed_function_dirichlet_bc_factory.C b/src/boundary_conditions/src/parsed_function_dirichlet_bc_factory.C index ae777b9ce..819457485 100644 --- a/src/boundary_conditions/src/parsed_function_dirichlet_bc_factory.C +++ b/src/boundary_conditions/src/parsed_function_dirichlet_bc_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/parsed_function_dirichlet_old_style_bc_factory.C b/src/boundary_conditions/src/parsed_function_dirichlet_old_style_bc_factory.C index ba7005b50..2b38918ad 100644 --- a/src/boundary_conditions/src/parsed_function_dirichlet_old_style_bc_factory.C +++ b/src/boundary_conditions/src/parsed_function_dirichlet_old_style_bc_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/parsed_function_factory_helper.C b/src/boundary_conditions/src/parsed_function_factory_helper.C index 370818981..3ec3d8d74 100644 --- a/src/boundary_conditions/src/parsed_function_factory_helper.C +++ b/src/boundary_conditions/src/parsed_function_factory_helper.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/parsed_function_neumann_bc_factory.C b/src/boundary_conditions/src/parsed_function_neumann_bc_factory.C index 040e1844c..c1ec64d3c 100644 --- a/src/boundary_conditions/src/parsed_function_neumann_bc_factory.C +++ b/src/boundary_conditions/src/parsed_function_neumann_bc_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/parsed_function_neumann_bc_factory_helper.C b/src/boundary_conditions/src/parsed_function_neumann_bc_factory_helper.C index b6379549d..875eb5510 100644 --- a/src/boundary_conditions/src/parsed_function_neumann_bc_factory_helper.C +++ b/src/boundary_conditions/src/parsed_function_neumann_bc_factory_helper.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/parsed_function_neumann_old_style_bc_factory.C b/src/boundary_conditions/src/parsed_function_neumann_old_style_bc_factory.C index 6a9e4bee3..28055ad07 100644 --- a/src/boundary_conditions/src/parsed_function_neumann_old_style_bc_factory.C +++ b/src/boundary_conditions/src/parsed_function_neumann_old_style_bc_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/power_law_catalycity.C b/src/boundary_conditions/src/power_law_catalycity.C index 0c7bc569b..eab88a5b4 100644 --- a/src/boundary_conditions/src/power_law_catalycity.C +++ b/src/boundary_conditions/src/power_law_catalycity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/prescribed_vector_value_dirichlet_old_style_bc_factory.C b/src/boundary_conditions/src/prescribed_vector_value_dirichlet_old_style_bc_factory.C index 8f01b6b83..979ce8bfc 100644 --- a/src/boundary_conditions/src/prescribed_vector_value_dirichlet_old_style_bc_factory.C +++ b/src/boundary_conditions/src/prescribed_vector_value_dirichlet_old_style_bc_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/pressure_pinning.C b/src/boundary_conditions/src/pressure_pinning.C index 163f53705..e35b83dba 100644 --- a/src/boundary_conditions/src/pressure_pinning.C +++ b/src/boundary_conditions/src/pressure_pinning.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/boundary_conditions/src/symmetry_type_bc_factories.C b/src/boundary_conditions/src/symmetry_type_bc_factories.C index e479dbb7c..36f423a53 100644 --- a/src/boundary_conditions/src/symmetry_type_bc_factories.C +++ b/src/boundary_conditions/src/symmetry_type_bc_factories.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/common/include/grins/common.h b/src/common/include/grins/common.h index 9f43c1328..689e3416b 100644 --- a/src/common/include/grins/common.h +++ b/src/common/include/grins/common.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/common/include/grins/factory_with_getpot.h b/src/common/include/grins/factory_with_getpot.h index b90d71786..fabb8403e 100644 --- a/src/common/include/grins/factory_with_getpot.h +++ b/src/common/include/grins/factory_with_getpot.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/common/include/grins/factory_with_getpot_physics_name.h b/src/common/include/grins/factory_with_getpot_physics_name.h index 32faee302..b7a74e01e 100644 --- a/src/common/include/grins/factory_with_getpot_physics_name.h +++ b/src/common/include/grins/factory_with_getpot_physics_name.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/ic_handling/include/grins/generic_ic_handler.h b/src/ic_handling/include/grins/generic_ic_handler.h index 49d413a01..be1404fd6 100644 --- a/src/ic_handling/include/grins/generic_ic_handler.h +++ b/src/ic_handling/include/grins/generic_ic_handler.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/ic_handling/include/grins/ic_handling_base.h b/src/ic_handling/include/grins/ic_handling_base.h index 241bc79ee..a6eb9c2ec 100644 --- a/src/ic_handling/include/grins/ic_handling_base.h +++ b/src/ic_handling/include/grins/ic_handling_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/ic_handling/src/generic_ic_handler.C b/src/ic_handling/src/generic_ic_handler.C index 4eedc9c8a..6d950753e 100644 --- a/src/ic_handling/src/generic_ic_handler.C +++ b/src/ic_handling/src/generic_ic_handler.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/ic_handling/src/ic_handling_base.C b/src/ic_handling/src/ic_handling_base.C index 6af635ed0..f23bbdee8 100644 --- a/src/ic_handling/src/ic_handling_base.C +++ b/src/ic_handling/src/ic_handling_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/antioch_instantiation_macro.h b/src/physics/include/grins/antioch_instantiation_macro.h index d261ee449..bd5089019 100644 --- a/src/physics/include/grins/antioch_instantiation_macro.h +++ b/src/physics/include/grins/antioch_instantiation_macro.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/assembly_context.h b/src/physics/include/grins/assembly_context.h index 7a09cfece..a0fb510bd 100644 --- a/src/physics/include/grins/assembly_context.h +++ b/src/physics/include/grins/assembly_context.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/averaged_fan.h b/src/physics/include/grins/averaged_fan.h index 5c313abf0..e3452f68a 100644 --- a/src/physics/include/grins/averaged_fan.h +++ b/src/physics/include/grins/averaged_fan.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/averaged_fan_adjoint_stab.h b/src/physics/include/grins/averaged_fan_adjoint_stab.h index 75b21b9a9..b57936c0e 100644 --- a/src/physics/include/grins/averaged_fan_adjoint_stab.h +++ b/src/physics/include/grins/averaged_fan_adjoint_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/averaged_fan_base.h b/src/physics/include/grins/averaged_fan_base.h index 1f6b28416..9dc9ea78f 100644 --- a/src/physics/include/grins/averaged_fan_base.h +++ b/src/physics/include/grins/averaged_fan_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/averaged_turbine.h b/src/physics/include/grins/averaged_turbine.h index 2a9d44726..b8eca9921 100644 --- a/src/physics/include/grins/averaged_turbine.h +++ b/src/physics/include/grins/averaged_turbine.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/averaged_turbine_adjoint_stab.h b/src/physics/include/grins/averaged_turbine_adjoint_stab.h index b4deb9463..18d9a3a30 100644 --- a/src/physics/include/grins/averaged_turbine_adjoint_stab.h +++ b/src/physics/include/grins/averaged_turbine_adjoint_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/averaged_turbine_base.h b/src/physics/include/grins/averaged_turbine_base.h index f9b15ab8b..577090958 100644 --- a/src/physics/include/grins/averaged_turbine_base.h +++ b/src/physics/include/grins/averaged_turbine_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/axisym_boussinesq_buoyancy.h b/src/physics/include/grins/axisym_boussinesq_buoyancy.h index b38a6a5fa..41e879b4c 100644 --- a/src/physics/include/grins/axisym_boussinesq_buoyancy.h +++ b/src/physics/include/grins/axisym_boussinesq_buoyancy.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/axisym_heat_transfer.h b/src/physics/include/grins/axisym_heat_transfer.h index 714b26ee7..93bc34054 100644 --- a/src/physics/include/grins/axisym_heat_transfer.h +++ b/src/physics/include/grins/axisym_heat_transfer.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/boussinesq_buoyancy.h b/src/physics/include/grins/boussinesq_buoyancy.h index a8d69ff87..90bed8723 100644 --- a/src/physics/include/grins/boussinesq_buoyancy.h +++ b/src/physics/include/grins/boussinesq_buoyancy.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/boussinesq_buoyancy_adjoint_stab.h b/src/physics/include/grins/boussinesq_buoyancy_adjoint_stab.h index c1c58d330..e835ec868 100644 --- a/src/physics/include/grins/boussinesq_buoyancy_adjoint_stab.h +++ b/src/physics/include/grins/boussinesq_buoyancy_adjoint_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/boussinesq_buoyancy_base.h b/src/physics/include/grins/boussinesq_buoyancy_base.h index 3560ae6f3..2dfe06fcb 100644 --- a/src/physics/include/grins/boussinesq_buoyancy_base.h +++ b/src/physics/include/grins/boussinesq_buoyancy_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/boussinesq_buoyancy_spgsm_stab.h b/src/physics/include/grins/boussinesq_buoyancy_spgsm_stab.h index fc2f32dbd..d0094707f 100644 --- a/src/physics/include/grins/boussinesq_buoyancy_spgsm_stab.h +++ b/src/physics/include/grins/boussinesq_buoyancy_spgsm_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/constant_source_term.h b/src/physics/include/grins/constant_source_term.h index 46e131b76..3862483d7 100644 --- a/src/physics/include/grins/constant_source_term.h +++ b/src/physics/include/grins/constant_source_term.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/convection_diffusion.h b/src/physics/include/grins/convection_diffusion.h index 799614c87..83429f252 100644 --- a/src/physics/include/grins/convection_diffusion.h +++ b/src/physics/include/grins/convection_diffusion.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/elastic_cable.h b/src/physics/include/grins/elastic_cable.h index 3b81687b8..0aa7d2fb0 100644 --- a/src/physics/include/grins/elastic_cable.h +++ b/src/physics/include/grins/elastic_cable.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/elastic_cable_abstract.h b/src/physics/include/grins/elastic_cable_abstract.h index 7594472ed..453fe963c 100644 --- a/src/physics/include/grins/elastic_cable_abstract.h +++ b/src/physics/include/grins/elastic_cable_abstract.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/elastic_cable_base.h b/src/physics/include/grins/elastic_cable_base.h index b5d51995a..06b682b55 100644 --- a/src/physics/include/grins/elastic_cable_base.h +++ b/src/physics/include/grins/elastic_cable_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/elastic_cable_constant_gravity.h b/src/physics/include/grins/elastic_cable_constant_gravity.h index c65607d5b..646559d96 100644 --- a/src/physics/include/grins/elastic_cable_constant_gravity.h +++ b/src/physics/include/grins/elastic_cable_constant_gravity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/elastic_cable_rayleigh_damping.h b/src/physics/include/grins/elastic_cable_rayleigh_damping.h index 77d7587cb..ea6659d98 100644 --- a/src/physics/include/grins/elastic_cable_rayleigh_damping.h +++ b/src/physics/include/grins/elastic_cable_rayleigh_damping.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/elastic_membrane.h b/src/physics/include/grins/elastic_membrane.h index 0509636b6..a77ed5919 100644 --- a/src/physics/include/grins/elastic_membrane.h +++ b/src/physics/include/grins/elastic_membrane.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/elastic_membrane_abstract.h b/src/physics/include/grins/elastic_membrane_abstract.h index fd8a4dedc..1fb40245b 100644 --- a/src/physics/include/grins/elastic_membrane_abstract.h +++ b/src/physics/include/grins/elastic_membrane_abstract.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/elastic_membrane_base.h b/src/physics/include/grins/elastic_membrane_base.h index 7fa9c40d2..8096355ff 100644 --- a/src/physics/include/grins/elastic_membrane_base.h +++ b/src/physics/include/grins/elastic_membrane_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/elastic_membrane_constant_pressure.h b/src/physics/include/grins/elastic_membrane_constant_pressure.h index d96d9307e..1492e55ae 100644 --- a/src/physics/include/grins/elastic_membrane_constant_pressure.h +++ b/src/physics/include/grins/elastic_membrane_constant_pressure.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/elastic_membrane_rayleigh_damping.h b/src/physics/include/grins/elastic_membrane_rayleigh_damping.h index ed577e145..095de578e 100644 --- a/src/physics/include/grins/elastic_membrane_rayleigh_damping.h +++ b/src/physics/include/grins/elastic_membrane_rayleigh_damping.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/heat_conduction.h b/src/physics/include/grins/heat_conduction.h index 91f0081b2..5d5dbb0c7 100644 --- a/src/physics/include/grins/heat_conduction.h +++ b/src/physics/include/grins/heat_conduction.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/heat_transfer.h b/src/physics/include/grins/heat_transfer.h index daf08c0fc..bca267a72 100644 --- a/src/physics/include/grins/heat_transfer.h +++ b/src/physics/include/grins/heat_transfer.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/heat_transfer_adjoint_stab.h b/src/physics/include/grins/heat_transfer_adjoint_stab.h index cc93a03cf..9adab5009 100644 --- a/src/physics/include/grins/heat_transfer_adjoint_stab.h +++ b/src/physics/include/grins/heat_transfer_adjoint_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/heat_transfer_base.h b/src/physics/include/grins/heat_transfer_base.h index 7c73145c0..684c84774 100644 --- a/src/physics/include/grins/heat_transfer_base.h +++ b/src/physics/include/grins/heat_transfer_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/heat_transfer_spgsm_stab.h b/src/physics/include/grins/heat_transfer_spgsm_stab.h index e8cdf4074..8ab39271d 100644 --- a/src/physics/include/grins/heat_transfer_spgsm_stab.h +++ b/src/physics/include/grins/heat_transfer_spgsm_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/heat_transfer_stab_base.h b/src/physics/include/grins/heat_transfer_stab_base.h index 58e4eb955..5132f0c08 100644 --- a/src/physics/include/grins/heat_transfer_stab_base.h +++ b/src/physics/include/grins/heat_transfer_stab_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/heat_transfer_stab_helper.h b/src/physics/include/grins/heat_transfer_stab_helper.h index bd8d3da2d..d7a5a91dc 100644 --- a/src/physics/include/grins/heat_transfer_stab_helper.h +++ b/src/physics/include/grins/heat_transfer_stab_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/inc_navier_stokes.h b/src/physics/include/grins/inc_navier_stokes.h index ed93a63b9..c2ce8239a 100644 --- a/src/physics/include/grins/inc_navier_stokes.h +++ b/src/physics/include/grins/inc_navier_stokes.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/inc_navier_stokes_adjoint_stab.h b/src/physics/include/grins/inc_navier_stokes_adjoint_stab.h index a22427b35..8644e1500 100644 --- a/src/physics/include/grins/inc_navier_stokes_adjoint_stab.h +++ b/src/physics/include/grins/inc_navier_stokes_adjoint_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/inc_navier_stokes_base.h b/src/physics/include/grins/inc_navier_stokes_base.h index 36030989f..a1528fc31 100644 --- a/src/physics/include/grins/inc_navier_stokes_base.h +++ b/src/physics/include/grins/inc_navier_stokes_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/inc_navier_stokes_spgsm_stab.h b/src/physics/include/grins/inc_navier_stokes_spgsm_stab.h index 92ec6adef..704c71878 100644 --- a/src/physics/include/grins/inc_navier_stokes_spgsm_stab.h +++ b/src/physics/include/grins/inc_navier_stokes_spgsm_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/inc_navier_stokes_stab_base.h b/src/physics/include/grins/inc_navier_stokes_stab_base.h index 7483c7d8c..35a1580a1 100644 --- a/src/physics/include/grins/inc_navier_stokes_stab_base.h +++ b/src/physics/include/grins/inc_navier_stokes_stab_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/inc_navier_stokes_stab_helper.h b/src/physics/include/grins/inc_navier_stokes_stab_helper.h index 3c1594b85..5bd235240 100644 --- a/src/physics/include/grins/inc_navier_stokes_stab_helper.h +++ b/src/physics/include/grins/inc_navier_stokes_stab_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/low_mach_navier_stokes.h b/src/physics/include/grins/low_mach_navier_stokes.h index 1d06eef66..24a0621d9 100644 --- a/src/physics/include/grins/low_mach_navier_stokes.h +++ b/src/physics/include/grins/low_mach_navier_stokes.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/low_mach_navier_stokes_base.h b/src/physics/include/grins/low_mach_navier_stokes_base.h index 5b34953c5..63623f3a9 100644 --- a/src/physics/include/grins/low_mach_navier_stokes_base.h +++ b/src/physics/include/grins/low_mach_navier_stokes_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/low_mach_navier_stokes_braack_stab.h b/src/physics/include/grins/low_mach_navier_stokes_braack_stab.h index 0e245cd55..0dbdfcc0c 100644 --- a/src/physics/include/grins/low_mach_navier_stokes_braack_stab.h +++ b/src/physics/include/grins/low_mach_navier_stokes_braack_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/low_mach_navier_stokes_spgsm_stab.h b/src/physics/include/grins/low_mach_navier_stokes_spgsm_stab.h index 01e2e83b5..3f025214c 100644 --- a/src/physics/include/grins/low_mach_navier_stokes_spgsm_stab.h +++ b/src/physics/include/grins/low_mach_navier_stokes_spgsm_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/low_mach_navier_stokes_stab_base.h b/src/physics/include/grins/low_mach_navier_stokes_stab_base.h index 1b470b2cd..00b947eb8 100644 --- a/src/physics/include/grins/low_mach_navier_stokes_stab_base.h +++ b/src/physics/include/grins/low_mach_navier_stokes_stab_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/low_mach_navier_stokes_stab_helper.h b/src/physics/include/grins/low_mach_navier_stokes_stab_helper.h index ddbeab5b0..68b8460a0 100644 --- a/src/physics/include/grins/low_mach_navier_stokes_stab_helper.h +++ b/src/physics/include/grins/low_mach_navier_stokes_stab_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/low_mach_navier_stokes_vms_stab.h b/src/physics/include/grins/low_mach_navier_stokes_vms_stab.h index cb4aca2a5..9ad9605ae 100644 --- a/src/physics/include/grins/low_mach_navier_stokes_vms_stab.h +++ b/src/physics/include/grins/low_mach_navier_stokes_vms_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/multiphysics_sys.h b/src/physics/include/grins/multiphysics_sys.h index 8bb18e0c9..d3386b5c7 100644 --- a/src/physics/include/grins/multiphysics_sys.h +++ b/src/physics/include/grins/multiphysics_sys.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/parsed_source_term.h b/src/physics/include/grins/parsed_source_term.h index d20493d97..6a2aa6e40 100644 --- a/src/physics/include/grins/parsed_source_term.h +++ b/src/physics/include/grins/parsed_source_term.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/parsed_velocity_source.h b/src/physics/include/grins/parsed_velocity_source.h index 7667cc36b..d56492f4f 100644 --- a/src/physics/include/grins/parsed_velocity_source.h +++ b/src/physics/include/grins/parsed_velocity_source.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/parsed_velocity_source_adjoint_stab.h b/src/physics/include/grins/parsed_velocity_source_adjoint_stab.h index 10d8ed9a7..48764ec09 100644 --- a/src/physics/include/grins/parsed_velocity_source_adjoint_stab.h +++ b/src/physics/include/grins/parsed_velocity_source_adjoint_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/parsed_velocity_source_base.h b/src/physics/include/grins/parsed_velocity_source_base.h index 731afda20..6ebd756f8 100644 --- a/src/physics/include/grins/parsed_velocity_source_base.h +++ b/src/physics/include/grins/parsed_velocity_source_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics.h b/src/physics/include/grins/physics.h index fbd16e8a0..9f4785a8d 100644 --- a/src/physics/include/grins/physics.h +++ b/src/physics/include/grins/physics.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_builder.h b/src/physics/include/grins/physics_builder.h index 3f9e4a8f3..2ac16a449 100644 --- a/src/physics/include/grins/physics_builder.h +++ b/src/physics/include/grins/physics_builder.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_factory_base.h b/src/physics/include/grins/physics_factory_base.h index 1c6fb6198..deda4be48 100644 --- a/src/physics/include/grins/physics_factory_base.h +++ b/src/physics/include/grins/physics_factory_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_factory_basic.h b/src/physics/include/grins/physics_factory_basic.h index 8d3fd7492..746534820 100644 --- a/src/physics/include/grins/physics_factory_basic.h +++ b/src/physics/include/grins/physics_factory_basic.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_factory_heat_transfer.h b/src/physics/include/grins/physics_factory_heat_transfer.h index 9176e502e..a3cb75667 100644 --- a/src/physics/include/grins/physics_factory_heat_transfer.h +++ b/src/physics/include/grins/physics_factory_heat_transfer.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_factory_helper.h b/src/physics/include/grins/physics_factory_helper.h index 649f7c7e5..6f10ba564 100644 --- a/src/physics/include/grins/physics_factory_helper.h +++ b/src/physics/include/grins/physics_factory_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_factory_incompressible_flow.h b/src/physics/include/grins/physics_factory_incompressible_flow.h index 1e595e74e..cc1a2fc2e 100644 --- a/src/physics/include/grins/physics_factory_incompressible_flow.h +++ b/src/physics/include/grins/physics_factory_incompressible_flow.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_factory_incompressible_turb_flow.h b/src/physics/include/grins/physics_factory_incompressible_turb_flow.h index 57217061f..b9be3e8a2 100644 --- a/src/physics/include/grins/physics_factory_incompressible_turb_flow.h +++ b/src/physics/include/grins/physics_factory_incompressible_turb_flow.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_factory_one_d_stress_solids.h b/src/physics/include/grins/physics_factory_one_d_stress_solids.h index c4ad3c13d..a34f7c20b 100644 --- a/src/physics/include/grins/physics_factory_one_d_stress_solids.h +++ b/src/physics/include/grins/physics_factory_one_d_stress_solids.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_factory_plane_stress_solids.h b/src/physics/include/grins/physics_factory_plane_stress_solids.h index a10d08e97..fe2571aa3 100644 --- a/src/physics/include/grins/physics_factory_plane_stress_solids.h +++ b/src/physics/include/grins/physics_factory_plane_stress_solids.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_factory_reacting_flows.h b/src/physics/include/grins/physics_factory_reacting_flows.h index 642627293..1d0d5e57d 100644 --- a/src/physics/include/grins/physics_factory_reacting_flows.h +++ b/src/physics/include/grins/physics_factory_reacting_flows.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_factory_variable_density_flow.h b/src/physics/include/grins/physics_factory_variable_density_flow.h index 1526a1be4..218145cc8 100644 --- a/src/physics/include/grins/physics_factory_variable_density_flow.h +++ b/src/physics/include/grins/physics_factory_variable_density_flow.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_factory_with_core.h b/src/physics/include/grins/physics_factory_with_core.h index 1d468b574..a925297bc 100644 --- a/src/physics/include/grins/physics_factory_with_core.h +++ b/src/physics/include/grins/physics_factory_with_core.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/physics_naming.h b/src/physics/include/grins/physics_naming.h index 90ffd074b..6a4a7bda4 100644 --- a/src/physics/include/grins/physics_naming.h +++ b/src/physics/include/grins/physics_naming.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/reacting_low_mach_navier_stokes.h b/src/physics/include/grins/reacting_low_mach_navier_stokes.h index 3ea931e62..0ce7d55b0 100644 --- a/src/physics/include/grins/reacting_low_mach_navier_stokes.h +++ b/src/physics/include/grins/reacting_low_mach_navier_stokes.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/reacting_low_mach_navier_stokes_abstract.h b/src/physics/include/grins/reacting_low_mach_navier_stokes_abstract.h index cb56957cc..38cd4a3bb 100644 --- a/src/physics/include/grins/reacting_low_mach_navier_stokes_abstract.h +++ b/src/physics/include/grins/reacting_low_mach_navier_stokes_abstract.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/reacting_low_mach_navier_stokes_base.h b/src/physics/include/grins/reacting_low_mach_navier_stokes_base.h index 9b4644947..a5084b47d 100644 --- a/src/physics/include/grins/reacting_low_mach_navier_stokes_base.h +++ b/src/physics/include/grins/reacting_low_mach_navier_stokes_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/scalar_ode.h b/src/physics/include/grins/scalar_ode.h index 1c1ed9724..e9117db22 100644 --- a/src/physics/include/grins/scalar_ode.h +++ b/src/physics/include/grins/scalar_ode.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/solid_mechanics_abstract.h b/src/physics/include/grins/solid_mechanics_abstract.h index 942565530..d505cccd0 100644 --- a/src/physics/include/grins/solid_mechanics_abstract.h +++ b/src/physics/include/grins/solid_mechanics_abstract.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/source_term_base.h b/src/physics/include/grins/source_term_base.h index 4ef37553a..09808d427 100644 --- a/src/physics/include/grins/source_term_base.h +++ b/src/physics/include/grins/source_term_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/spalart_allmaras.h b/src/physics/include/grins/spalart_allmaras.h index df9d7a3c8..cc586d1cd 100644 --- a/src/physics/include/grins/spalart_allmaras.h +++ b/src/physics/include/grins/spalart_allmaras.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/spalart_allmaras_helper.h b/src/physics/include/grins/spalart_allmaras_helper.h index 7bd50d295..efa9e26b9 100644 --- a/src/physics/include/grins/spalart_allmaras_helper.h +++ b/src/physics/include/grins/spalart_allmaras_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/spalart_allmaras_parameters.h b/src/physics/include/grins/spalart_allmaras_parameters.h index 80640eaae..640b1d6cf 100644 --- a/src/physics/include/grins/spalart_allmaras_parameters.h +++ b/src/physics/include/grins/spalart_allmaras_parameters.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/spalart_allmaras_spgsm_stab.h b/src/physics/include/grins/spalart_allmaras_spgsm_stab.h index e5d26dc5b..9094070d3 100644 --- a/src/physics/include/grins/spalart_allmaras_spgsm_stab.h +++ b/src/physics/include/grins/spalart_allmaras_spgsm_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/spalart_allmaras_stab_base.h b/src/physics/include/grins/spalart_allmaras_stab_base.h index 2d6dc4c4d..950422914 100644 --- a/src/physics/include/grins/spalart_allmaras_stab_base.h +++ b/src/physics/include/grins/spalart_allmaras_stab_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/spalart_allmaras_stab_helper.h b/src/physics/include/grins/spalart_allmaras_stab_helper.h index b12cf5bea..4b9098005 100644 --- a/src/physics/include/grins/spalart_allmaras_stab_helper.h +++ b/src/physics/include/grins/spalart_allmaras_stab_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/stab_helper.h b/src/physics/include/grins/stab_helper.h index 441658dd4..70c54ce99 100644 --- a/src/physics/include/grins/stab_helper.h +++ b/src/physics/include/grins/stab_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/stokes.h b/src/physics/include/grins/stokes.h index c52f6c812..8d2fb92da 100644 --- a/src/physics/include/grins/stokes.h +++ b/src/physics/include/grins/stokes.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/turbulence_models_base.h b/src/physics/include/grins/turbulence_models_base.h index a39d465c9..9e1a6976a 100644 --- a/src/physics/include/grins/turbulence_models_base.h +++ b/src/physics/include/grins/turbulence_models_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/var_typedefs.h b/src/physics/include/grins/var_typedefs.h index 48f21375d..f6790385d 100644 --- a/src/physics/include/grins/var_typedefs.h +++ b/src/physics/include/grins/var_typedefs.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/velocity_drag.h b/src/physics/include/grins/velocity_drag.h index 3279a842b..5c868e42b 100644 --- a/src/physics/include/grins/velocity_drag.h +++ b/src/physics/include/grins/velocity_drag.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/velocity_drag_adjoint_stab.h b/src/physics/include/grins/velocity_drag_adjoint_stab.h index 267d2cf1f..eb0cd2a3f 100644 --- a/src/physics/include/grins/velocity_drag_adjoint_stab.h +++ b/src/physics/include/grins/velocity_drag_adjoint_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/velocity_drag_base.h b/src/physics/include/grins/velocity_drag_base.h index 309cbef38..b106953b7 100644 --- a/src/physics/include/grins/velocity_drag_base.h +++ b/src/physics/include/grins/velocity_drag_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/velocity_penalty.h b/src/physics/include/grins/velocity_penalty.h index 8f2083fa1..52f6c9f4e 100644 --- a/src/physics/include/grins/velocity_penalty.h +++ b/src/physics/include/grins/velocity_penalty.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/velocity_penalty_adjoint_stab.h b/src/physics/include/grins/velocity_penalty_adjoint_stab.h index 909ff4c32..3bd164be7 100644 --- a/src/physics/include/grins/velocity_penalty_adjoint_stab.h +++ b/src/physics/include/grins/velocity_penalty_adjoint_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/include/grins/velocity_penalty_base.h b/src/physics/include/grins/velocity_penalty_base.h index d53beab92..9fc848385 100644 --- a/src/physics/include/grins/velocity_penalty_base.h +++ b/src/physics/include/grins/velocity_penalty_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/assembly_context.C b/src/physics/src/assembly_context.C index d3116ce29..408deb712 100644 --- a/src/physics/src/assembly_context.C +++ b/src/physics/src/assembly_context.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/averaged_fan.C b/src/physics/src/averaged_fan.C index b74de7494..ef1f2d5fc 100644 --- a/src/physics/src/averaged_fan.C +++ b/src/physics/src/averaged_fan.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/averaged_fan_adjoint_stab.C b/src/physics/src/averaged_fan_adjoint_stab.C index 52278728e..1002c00d2 100644 --- a/src/physics/src/averaged_fan_adjoint_stab.C +++ b/src/physics/src/averaged_fan_adjoint_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/averaged_fan_base.C b/src/physics/src/averaged_fan_base.C index bf386d55b..7ae94f73f 100644 --- a/src/physics/src/averaged_fan_base.C +++ b/src/physics/src/averaged_fan_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/averaged_turbine.C b/src/physics/src/averaged_turbine.C index 7787adac3..07b912440 100644 --- a/src/physics/src/averaged_turbine.C +++ b/src/physics/src/averaged_turbine.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/averaged_turbine_adjoint_stab.C b/src/physics/src/averaged_turbine_adjoint_stab.C index 1e7441d75..47856a4b2 100644 --- a/src/physics/src/averaged_turbine_adjoint_stab.C +++ b/src/physics/src/averaged_turbine_adjoint_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/averaged_turbine_base.C b/src/physics/src/averaged_turbine_base.C index 02ad59d37..7f5c1c856 100644 --- a/src/physics/src/averaged_turbine_base.C +++ b/src/physics/src/averaged_turbine_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/axisym_boussinesq_buoyancy.C b/src/physics/src/axisym_boussinesq_buoyancy.C index a5477e655..0433803d2 100644 --- a/src/physics/src/axisym_boussinesq_buoyancy.C +++ b/src/physics/src/axisym_boussinesq_buoyancy.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/axisym_heat_transfer.C b/src/physics/src/axisym_heat_transfer.C index 9dcb9d1e8..490cfcc38 100644 --- a/src/physics/src/axisym_heat_transfer.C +++ b/src/physics/src/axisym_heat_transfer.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/boussinesq_buoyancy.C b/src/physics/src/boussinesq_buoyancy.C index d38751482..070d1a226 100644 --- a/src/physics/src/boussinesq_buoyancy.C +++ b/src/physics/src/boussinesq_buoyancy.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/boussinesq_buoyancy_adjoint_stab.C b/src/physics/src/boussinesq_buoyancy_adjoint_stab.C index b76d1ce00..773f4585a 100644 --- a/src/physics/src/boussinesq_buoyancy_adjoint_stab.C +++ b/src/physics/src/boussinesq_buoyancy_adjoint_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/boussinesq_buoyancy_base.C b/src/physics/src/boussinesq_buoyancy_base.C index 250ba4cb1..c03f9a2b5 100644 --- a/src/physics/src/boussinesq_buoyancy_base.C +++ b/src/physics/src/boussinesq_buoyancy_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/boussinesq_buoyancy_spgsm_stab.C b/src/physics/src/boussinesq_buoyancy_spgsm_stab.C index af57ac1d5..eff8dd0c0 100644 --- a/src/physics/src/boussinesq_buoyancy_spgsm_stab.C +++ b/src/physics/src/boussinesq_buoyancy_spgsm_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/constant_source_term.C b/src/physics/src/constant_source_term.C index 160ea9edb..f0d488286 100644 --- a/src/physics/src/constant_source_term.C +++ b/src/physics/src/constant_source_term.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/convection_diffusion.C b/src/physics/src/convection_diffusion.C index f186b4713..43a821ee9 100644 --- a/src/physics/src/convection_diffusion.C +++ b/src/physics/src/convection_diffusion.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/elastic_cable.C b/src/physics/src/elastic_cable.C index 96504ecd6..486b87bca 100644 --- a/src/physics/src/elastic_cable.C +++ b/src/physics/src/elastic_cable.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/elastic_cable_abstract.C b/src/physics/src/elastic_cable_abstract.C index 1ffb57317..c201bcaad 100644 --- a/src/physics/src/elastic_cable_abstract.C +++ b/src/physics/src/elastic_cable_abstract.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/elastic_cable_base.C b/src/physics/src/elastic_cable_base.C index 669c7d250..70ccdf91f 100644 --- a/src/physics/src/elastic_cable_base.C +++ b/src/physics/src/elastic_cable_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/elastic_cable_constant_gravity.C b/src/physics/src/elastic_cable_constant_gravity.C index 3e8a336ec..b777e910d 100644 --- a/src/physics/src/elastic_cable_constant_gravity.C +++ b/src/physics/src/elastic_cable_constant_gravity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/elastic_cable_rayleigh_damping.C b/src/physics/src/elastic_cable_rayleigh_damping.C index 18ab052a9..f0047b5ab 100644 --- a/src/physics/src/elastic_cable_rayleigh_damping.C +++ b/src/physics/src/elastic_cable_rayleigh_damping.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/elastic_membrane.C b/src/physics/src/elastic_membrane.C index e24a19d01..c66a1a880 100644 --- a/src/physics/src/elastic_membrane.C +++ b/src/physics/src/elastic_membrane.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/elastic_membrane_abstract.C b/src/physics/src/elastic_membrane_abstract.C index 861cce175..dc3b819f6 100644 --- a/src/physics/src/elastic_membrane_abstract.C +++ b/src/physics/src/elastic_membrane_abstract.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/elastic_membrane_base.C b/src/physics/src/elastic_membrane_base.C index c7e412855..ae766a251 100644 --- a/src/physics/src/elastic_membrane_base.C +++ b/src/physics/src/elastic_membrane_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/elastic_membrane_constant_pressure.C b/src/physics/src/elastic_membrane_constant_pressure.C index 95ef00786..0a05b4298 100644 --- a/src/physics/src/elastic_membrane_constant_pressure.C +++ b/src/physics/src/elastic_membrane_constant_pressure.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/elastic_membrane_rayleigh_damping.C b/src/physics/src/elastic_membrane_rayleigh_damping.C index 78ccba62c..ea4475a99 100644 --- a/src/physics/src/elastic_membrane_rayleigh_damping.C +++ b/src/physics/src/elastic_membrane_rayleigh_damping.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/heat_conduction.C b/src/physics/src/heat_conduction.C index 7f8a3ac0d..309a12227 100644 --- a/src/physics/src/heat_conduction.C +++ b/src/physics/src/heat_conduction.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/heat_transfer.C b/src/physics/src/heat_transfer.C index 8a27b9c05..a934abb41 100644 --- a/src/physics/src/heat_transfer.C +++ b/src/physics/src/heat_transfer.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/heat_transfer_adjoint_stab.C b/src/physics/src/heat_transfer_adjoint_stab.C index 8f77e2139..c6ef432de 100644 --- a/src/physics/src/heat_transfer_adjoint_stab.C +++ b/src/physics/src/heat_transfer_adjoint_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/heat_transfer_base.C b/src/physics/src/heat_transfer_base.C index 89bea3741..0baad046c 100644 --- a/src/physics/src/heat_transfer_base.C +++ b/src/physics/src/heat_transfer_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/heat_transfer_spgsm_stab.C b/src/physics/src/heat_transfer_spgsm_stab.C index 1a5d1ece0..5da657217 100644 --- a/src/physics/src/heat_transfer_spgsm_stab.C +++ b/src/physics/src/heat_transfer_spgsm_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/heat_transfer_stab_base.C b/src/physics/src/heat_transfer_stab_base.C index 3d4805849..a54f35c81 100644 --- a/src/physics/src/heat_transfer_stab_base.C +++ b/src/physics/src/heat_transfer_stab_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/heat_transfer_stab_helper.C b/src/physics/src/heat_transfer_stab_helper.C index 32aea012e..24929c7c8 100644 --- a/src/physics/src/heat_transfer_stab_helper.C +++ b/src/physics/src/heat_transfer_stab_helper.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/inc_navier_stokes.C b/src/physics/src/inc_navier_stokes.C index e85ee71b5..395aac108 100644 --- a/src/physics/src/inc_navier_stokes.C +++ b/src/physics/src/inc_navier_stokes.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/inc_navier_stokes_adjoint_stab.C b/src/physics/src/inc_navier_stokes_adjoint_stab.C index 10a42db0b..ba2f7ff4b 100644 --- a/src/physics/src/inc_navier_stokes_adjoint_stab.C +++ b/src/physics/src/inc_navier_stokes_adjoint_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/inc_navier_stokes_base.C b/src/physics/src/inc_navier_stokes_base.C index 751b82ca2..c89ba290a 100644 --- a/src/physics/src/inc_navier_stokes_base.C +++ b/src/physics/src/inc_navier_stokes_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/inc_navier_stokes_spgsm_stab.C b/src/physics/src/inc_navier_stokes_spgsm_stab.C index 922abf842..dc3cdd660 100644 --- a/src/physics/src/inc_navier_stokes_spgsm_stab.C +++ b/src/physics/src/inc_navier_stokes_spgsm_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/inc_navier_stokes_stab_base.C b/src/physics/src/inc_navier_stokes_stab_base.C index e74eaed13..dbaf56628 100644 --- a/src/physics/src/inc_navier_stokes_stab_base.C +++ b/src/physics/src/inc_navier_stokes_stab_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/inc_navier_stokes_stab_helper.C b/src/physics/src/inc_navier_stokes_stab_helper.C index ad48ffa4d..69da844e8 100644 --- a/src/physics/src/inc_navier_stokes_stab_helper.C +++ b/src/physics/src/inc_navier_stokes_stab_helper.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/low_mach_navier_stokes.C b/src/physics/src/low_mach_navier_stokes.C index 1476169d5..ff5843faa 100644 --- a/src/physics/src/low_mach_navier_stokes.C +++ b/src/physics/src/low_mach_navier_stokes.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/low_mach_navier_stokes_base.C b/src/physics/src/low_mach_navier_stokes_base.C index 21b2d5bbc..7064d7beb 100644 --- a/src/physics/src/low_mach_navier_stokes_base.C +++ b/src/physics/src/low_mach_navier_stokes_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/low_mach_navier_stokes_braack_stab.C b/src/physics/src/low_mach_navier_stokes_braack_stab.C index d934bc4ac..c20c6479d 100644 --- a/src/physics/src/low_mach_navier_stokes_braack_stab.C +++ b/src/physics/src/low_mach_navier_stokes_braack_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/low_mach_navier_stokes_spgsm_stab.C b/src/physics/src/low_mach_navier_stokes_spgsm_stab.C index facc5e14f..d245625be 100644 --- a/src/physics/src/low_mach_navier_stokes_spgsm_stab.C +++ b/src/physics/src/low_mach_navier_stokes_spgsm_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/low_mach_navier_stokes_stab_base.C b/src/physics/src/low_mach_navier_stokes_stab_base.C index 7cf137cf2..7c3c90863 100644 --- a/src/physics/src/low_mach_navier_stokes_stab_base.C +++ b/src/physics/src/low_mach_navier_stokes_stab_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/low_mach_navier_stokes_stab_helper.C b/src/physics/src/low_mach_navier_stokes_stab_helper.C index f3d462ee7..a80cf762c 100644 --- a/src/physics/src/low_mach_navier_stokes_stab_helper.C +++ b/src/physics/src/low_mach_navier_stokes_stab_helper.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/low_mach_navier_stokes_vms_stab.C b/src/physics/src/low_mach_navier_stokes_vms_stab.C index affdc9f1e..f5411da62 100644 --- a/src/physics/src/low_mach_navier_stokes_vms_stab.C +++ b/src/physics/src/low_mach_navier_stokes_vms_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/multiphysics_sys.C b/src/physics/src/multiphysics_sys.C index 993b5e5a6..275df9d2a 100644 --- a/src/physics/src/multiphysics_sys.C +++ b/src/physics/src/multiphysics_sys.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/nonlinear_elasticity_instantiate.C b/src/physics/src/nonlinear_elasticity_instantiate.C index 29c1f6ae9..50a44814a 100644 --- a/src/physics/src/nonlinear_elasticity_instantiate.C +++ b/src/physics/src/nonlinear_elasticity_instantiate.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/parsed_source_term.C b/src/physics/src/parsed_source_term.C index e1297596e..5f106d9de 100644 --- a/src/physics/src/parsed_source_term.C +++ b/src/physics/src/parsed_source_term.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/parsed_velocity_source.C b/src/physics/src/parsed_velocity_source.C index 3197fe517..13d35f2f6 100644 --- a/src/physics/src/parsed_velocity_source.C +++ b/src/physics/src/parsed_velocity_source.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/parsed_velocity_source_adjoint_stab.C b/src/physics/src/parsed_velocity_source_adjoint_stab.C index cc396d431..cc34f82ed 100644 --- a/src/physics/src/parsed_velocity_source_adjoint_stab.C +++ b/src/physics/src/parsed_velocity_source_adjoint_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/parsed_velocity_source_base.C b/src/physics/src/parsed_velocity_source_base.C index 1824e9a8b..001be80fd 100644 --- a/src/physics/src/parsed_velocity_source_base.C +++ b/src/physics/src/parsed_velocity_source_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics.C b/src/physics/src/physics.C index 860d5f15e..ede0b8266 100644 --- a/src/physics/src/physics.C +++ b/src/physics/src/physics.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics_builder.C b/src/physics/src/physics_builder.C index cbdb452a7..bd61fda2c 100644 --- a/src/physics/src/physics_builder.C +++ b/src/physics/src/physics_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics_factory_base.C b/src/physics/src/physics_factory_base.C index f3ee8b6a0..a5024487e 100644 --- a/src/physics/src/physics_factory_base.C +++ b/src/physics/src/physics_factory_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics_factory_basic.C b/src/physics/src/physics_factory_basic.C index 889656fde..57912c9e7 100644 --- a/src/physics/src/physics_factory_basic.C +++ b/src/physics/src/physics_factory_basic.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics_factory_heat_transfer.C b/src/physics/src/physics_factory_heat_transfer.C index d515b8d25..84297000c 100644 --- a/src/physics/src/physics_factory_heat_transfer.C +++ b/src/physics/src/physics_factory_heat_transfer.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics_factory_helper.C b/src/physics/src/physics_factory_helper.C index eb50be611..6dd37e268 100644 --- a/src/physics/src/physics_factory_helper.C +++ b/src/physics/src/physics_factory_helper.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics_factory_incompressible_flow.C b/src/physics/src/physics_factory_incompressible_flow.C index 8b98101a0..d873de32b 100644 --- a/src/physics/src/physics_factory_incompressible_flow.C +++ b/src/physics/src/physics_factory_incompressible_flow.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics_factory_incompressible_turb_flow.C b/src/physics/src/physics_factory_incompressible_turb_flow.C index ed60eb68a..c27d42cd9 100644 --- a/src/physics/src/physics_factory_incompressible_turb_flow.C +++ b/src/physics/src/physics_factory_incompressible_turb_flow.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics_factory_one_d_stress_solids.C b/src/physics/src/physics_factory_one_d_stress_solids.C index 7d8f74342..53dd51c09 100644 --- a/src/physics/src/physics_factory_one_d_stress_solids.C +++ b/src/physics/src/physics_factory_one_d_stress_solids.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics_factory_plane_stress_solids.C b/src/physics/src/physics_factory_plane_stress_solids.C index 4bb23e304..36a5e66b7 100644 --- a/src/physics/src/physics_factory_plane_stress_solids.C +++ b/src/physics/src/physics_factory_plane_stress_solids.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics_factory_variable_density_flow.C b/src/physics/src/physics_factory_variable_density_flow.C index 100aa36e8..c0b5488d1 100644 --- a/src/physics/src/physics_factory_variable_density_flow.C +++ b/src/physics/src/physics_factory_variable_density_flow.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics_factory_with_core.C b/src/physics/src/physics_factory_with_core.C index 639641f36..e71b6436b 100644 --- a/src/physics/src/physics_factory_with_core.C +++ b/src/physics/src/physics_factory_with_core.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/physics_naming.C b/src/physics/src/physics_naming.C index b3880dfd3..ac95fa31e 100644 --- a/src/physics/src/physics_naming.C +++ b/src/physics/src/physics_naming.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/reacting_low_mach_navier_stokes.C b/src/physics/src/reacting_low_mach_navier_stokes.C index 2961f9c46..012fdfdcf 100644 --- a/src/physics/src/reacting_low_mach_navier_stokes.C +++ b/src/physics/src/reacting_low_mach_navier_stokes.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/reacting_low_mach_navier_stokes_abstract.C b/src/physics/src/reacting_low_mach_navier_stokes_abstract.C index 419048147..f89240dd6 100644 --- a/src/physics/src/reacting_low_mach_navier_stokes_abstract.C +++ b/src/physics/src/reacting_low_mach_navier_stokes_abstract.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/reacting_low_mach_navier_stokes_instantiate.C b/src/physics/src/reacting_low_mach_navier_stokes_instantiate.C index 011b3ae87..94d7f7ba4 100644 --- a/src/physics/src/reacting_low_mach_navier_stokes_instantiate.C +++ b/src/physics/src/reacting_low_mach_navier_stokes_instantiate.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/scalar_ode.C b/src/physics/src/scalar_ode.C index 755ad56d2..90afcceae 100644 --- a/src/physics/src/scalar_ode.C +++ b/src/physics/src/scalar_ode.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/solid_mechanics_abstract.C b/src/physics/src/solid_mechanics_abstract.C index 849452b6f..bc2e8708e 100644 --- a/src/physics/src/solid_mechanics_abstract.C +++ b/src/physics/src/solid_mechanics_abstract.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/source_term_base.C b/src/physics/src/source_term_base.C index 5ffb8300b..b9230da55 100644 --- a/src/physics/src/source_term_base.C +++ b/src/physics/src/source_term_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/spalart_allmaras.C b/src/physics/src/spalart_allmaras.C index 319f6511d..1b0ecca5a 100644 --- a/src/physics/src/spalart_allmaras.C +++ b/src/physics/src/spalart_allmaras.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/spalart_allmaras_helper.C b/src/physics/src/spalart_allmaras_helper.C index 18678b0d4..c9ba820c8 100644 --- a/src/physics/src/spalart_allmaras_helper.C +++ b/src/physics/src/spalart_allmaras_helper.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/spalart_allmaras_parameters.C b/src/physics/src/spalart_allmaras_parameters.C index 1019a8bb9..6bd659a84 100644 --- a/src/physics/src/spalart_allmaras_parameters.C +++ b/src/physics/src/spalart_allmaras_parameters.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/spalart_allmaras_spgsm_stab.C b/src/physics/src/spalart_allmaras_spgsm_stab.C index b85d50d63..7e25577f6 100644 --- a/src/physics/src/spalart_allmaras_spgsm_stab.C +++ b/src/physics/src/spalart_allmaras_spgsm_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/spalart_allmaras_stab_base.C b/src/physics/src/spalart_allmaras_stab_base.C index 8c5569beb..107c00e91 100644 --- a/src/physics/src/spalart_allmaras_stab_base.C +++ b/src/physics/src/spalart_allmaras_stab_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/spalart_allmaras_stab_helper.C b/src/physics/src/spalart_allmaras_stab_helper.C index 4c7713be7..c72f35ee6 100644 --- a/src/physics/src/spalart_allmaras_stab_helper.C +++ b/src/physics/src/spalart_allmaras_stab_helper.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/stab_helper.C b/src/physics/src/stab_helper.C index 00fcbe4e3..1a430b215 100644 --- a/src/physics/src/stab_helper.C +++ b/src/physics/src/stab_helper.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/stokes.C b/src/physics/src/stokes.C index 7ee564b4f..63270654e 100644 --- a/src/physics/src/stokes.C +++ b/src/physics/src/stokes.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/turbulence_models_base.C b/src/physics/src/turbulence_models_base.C index 0a6d4228f..78ea9c139 100644 --- a/src/physics/src/turbulence_models_base.C +++ b/src/physics/src/turbulence_models_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/velocity_drag.C b/src/physics/src/velocity_drag.C index 326438138..546ef3b9e 100644 --- a/src/physics/src/velocity_drag.C +++ b/src/physics/src/velocity_drag.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/velocity_drag_adjoint_stab.C b/src/physics/src/velocity_drag_adjoint_stab.C index bff683377..f0aedc203 100644 --- a/src/physics/src/velocity_drag_adjoint_stab.C +++ b/src/physics/src/velocity_drag_adjoint_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/velocity_drag_base.C b/src/physics/src/velocity_drag_base.C index 67bee9062..ea3709280 100644 --- a/src/physics/src/velocity_drag_base.C +++ b/src/physics/src/velocity_drag_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/velocity_penalty.C b/src/physics/src/velocity_penalty.C index 41ee43aab..8c16796dd 100644 --- a/src/physics/src/velocity_penalty.C +++ b/src/physics/src/velocity_penalty.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/velocity_penalty_adjoint_stab.C b/src/physics/src/velocity_penalty_adjoint_stab.C index 455ef9083..64b536971 100644 --- a/src/physics/src/velocity_penalty_adjoint_stab.C +++ b/src/physics/src/velocity_penalty_adjoint_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/physics/src/velocity_penalty_base.C b/src/physics/src/velocity_penalty_base.C index ee52eb14e..92ea2d205 100644 --- a/src/physics/src/velocity_penalty_base.C +++ b/src/physics/src/velocity_penalty_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/antioch_chemistry.h b/src/properties/include/grins/antioch_chemistry.h index 1e67727b1..7c39060fc 100644 --- a/src/properties/include/grins/antioch_chemistry.h +++ b/src/properties/include/grins/antioch_chemistry.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/antioch_constant_transport_evaluator.h b/src/properties/include/grins/antioch_constant_transport_evaluator.h index 76ed779fe..8f3ec1c9f 100644 --- a/src/properties/include/grins/antioch_constant_transport_evaluator.h +++ b/src/properties/include/grins/antioch_constant_transport_evaluator.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/antioch_constant_transport_mixture.h b/src/properties/include/grins/antioch_constant_transport_mixture.h index ad2778e32..f9f7393d5 100644 --- a/src/properties/include/grins/antioch_constant_transport_mixture.h +++ b/src/properties/include/grins/antioch_constant_transport_mixture.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/antioch_evaluator.h b/src/properties/include/grins/antioch_evaluator.h index 32f599450..3295fd181 100644 --- a/src/properties/include/grins/antioch_evaluator.h +++ b/src/properties/include/grins/antioch_evaluator.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/antioch_kinetics.h b/src/properties/include/grins/antioch_kinetics.h index f3ab74a47..065dc765b 100644 --- a/src/properties/include/grins/antioch_kinetics.h +++ b/src/properties/include/grins/antioch_kinetics.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/antioch_mixture.h b/src/properties/include/grins/antioch_mixture.h index 2885ec501..718e27d61 100644 --- a/src/properties/include/grins/antioch_mixture.h +++ b/src/properties/include/grins/antioch_mixture.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/antioch_mixture_averaged_transport_evaluator.h b/src/properties/include/grins/antioch_mixture_averaged_transport_evaluator.h index 32704262b..f3a93d511 100644 --- a/src/properties/include/grins/antioch_mixture_averaged_transport_evaluator.h +++ b/src/properties/include/grins/antioch_mixture_averaged_transport_evaluator.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/antioch_mixture_averaged_transport_mixture.h b/src/properties/include/grins/antioch_mixture_averaged_transport_mixture.h index 1acdffb14..b9275c624 100644 --- a/src/properties/include/grins/antioch_mixture_averaged_transport_mixture.h +++ b/src/properties/include/grins/antioch_mixture_averaged_transport_mixture.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/cantera_evaluator.h b/src/properties/include/grins/cantera_evaluator.h index 7cf666230..ac7625a67 100644 --- a/src/properties/include/grins/cantera_evaluator.h +++ b/src/properties/include/grins/cantera_evaluator.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/cantera_kinetics.h b/src/properties/include/grins/cantera_kinetics.h index 55ca64b02..e0aae4712 100644 --- a/src/properties/include/grins/cantera_kinetics.h +++ b/src/properties/include/grins/cantera_kinetics.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/cantera_mixture.h b/src/properties/include/grins/cantera_mixture.h index 1794e509e..8df1b6e05 100644 --- a/src/properties/include/grins/cantera_mixture.h +++ b/src/properties/include/grins/cantera_mixture.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/cantera_thermo.h b/src/properties/include/grins/cantera_thermo.h index 9c73d8a08..2479dbd45 100644 --- a/src/properties/include/grins/cantera_thermo.h +++ b/src/properties/include/grins/cantera_thermo.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/cantera_transport.h b/src/properties/include/grins/cantera_transport.h index c88027038..8492f61c7 100644 --- a/src/properties/include/grins/cantera_transport.h +++ b/src/properties/include/grins/cantera_transport.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/constant_conductivity.h b/src/properties/include/grins/constant_conductivity.h index 4d6e83f9f..e4cbcde65 100644 --- a/src/properties/include/grins/constant_conductivity.h +++ b/src/properties/include/grins/constant_conductivity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/constant_prandtl_conductivity.h b/src/properties/include/grins/constant_prandtl_conductivity.h index c47f7e600..66bf244ad 100644 --- a/src/properties/include/grins/constant_prandtl_conductivity.h +++ b/src/properties/include/grins/constant_prandtl_conductivity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/constant_source_func.h b/src/properties/include/grins/constant_source_func.h index d6a7d65c5..789ad8355 100644 --- a/src/properties/include/grins/constant_source_func.h +++ b/src/properties/include/grins/constant_source_func.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/constant_specific_heat.h b/src/properties/include/grins/constant_specific_heat.h index 9f337c958..2e6232214 100644 --- a/src/properties/include/grins/constant_specific_heat.h +++ b/src/properties/include/grins/constant_specific_heat.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/constant_viscosity.h b/src/properties/include/grins/constant_viscosity.h index 74e5f9ec5..c3e1e262b 100644 --- a/src/properties/include/grins/constant_viscosity.h +++ b/src/properties/include/grins/constant_viscosity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/elasticity_tensor.h b/src/properties/include/grins/elasticity_tensor.h index 4b4c03570..16b33605d 100644 --- a/src/properties/include/grins/elasticity_tensor.h +++ b/src/properties/include/grins/elasticity_tensor.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/gas_mixture.h b/src/properties/include/grins/gas_mixture.h index 6e2d6b7fe..766ee3649 100644 --- a/src/properties/include/grins/gas_mixture.h +++ b/src/properties/include/grins/gas_mixture.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/hookes_law.h b/src/properties/include/grins/hookes_law.h index 68aceb6b7..aa7ce3ebe 100644 --- a/src/properties/include/grins/hookes_law.h +++ b/src/properties/include/grins/hookes_law.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/hookes_law_1d.h b/src/properties/include/grins/hookes_law_1d.h index 25e4e08a3..0775ebebd 100644 --- a/src/properties/include/grins/hookes_law_1d.h +++ b/src/properties/include/grins/hookes_law_1d.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/hyperelastic_strain_energy.h b/src/properties/include/grins/hyperelastic_strain_energy.h index 2cde30954..09851ef66 100644 --- a/src/properties/include/grins/hyperelastic_strain_energy.h +++ b/src/properties/include/grins/hyperelastic_strain_energy.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/hyperelasticity.h b/src/properties/include/grins/hyperelasticity.h index 4177eeafb..5927ab1c8 100644 --- a/src/properties/include/grins/hyperelasticity.h +++ b/src/properties/include/grins/hyperelasticity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/incompressible_plane_stress_hyperelasticity.h b/src/properties/include/grins/incompressible_plane_stress_hyperelasticity.h index c2d3bf72b..d7f66a62a 100644 --- a/src/properties/include/grins/incompressible_plane_stress_hyperelasticity.h +++ b/src/properties/include/grins/incompressible_plane_stress_hyperelasticity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/materials_parsing.h b/src/properties/include/grins/materials_parsing.h index deb2b2aef..3ccdbc822 100644 --- a/src/properties/include/grins/materials_parsing.h +++ b/src/properties/include/grins/materials_parsing.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/mooney_rivlin.h b/src/properties/include/grins/mooney_rivlin.h index 1a229bed7..36c0cc2df 100644 --- a/src/properties/include/grins/mooney_rivlin.h +++ b/src/properties/include/grins/mooney_rivlin.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/parsed_conductivity.h b/src/properties/include/grins/parsed_conductivity.h index 548131e0e..c5ff43f4b 100644 --- a/src/properties/include/grins/parsed_conductivity.h +++ b/src/properties/include/grins/parsed_conductivity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/parsed_property_base.h b/src/properties/include/grins/parsed_property_base.h index 92b8c6cd2..f30413813 100644 --- a/src/properties/include/grins/parsed_property_base.h +++ b/src/properties/include/grins/parsed_property_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/parsed_viscosity.h b/src/properties/include/grins/parsed_viscosity.h index a85747d9e..97db7dbbb 100644 --- a/src/properties/include/grins/parsed_viscosity.h +++ b/src/properties/include/grins/parsed_viscosity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/property_types.h b/src/properties/include/grins/property_types.h index 4b7d41f1b..9d7f71066 100644 --- a/src/properties/include/grins/property_types.h +++ b/src/properties/include/grins/property_types.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/spalart_allmaras_viscosity.h b/src/properties/include/grins/spalart_allmaras_viscosity.h index ef0468f84..232e33ddb 100644 --- a/src/properties/include/grins/spalart_allmaras_viscosity.h +++ b/src/properties/include/grins/spalart_allmaras_viscosity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/stress_strain_law.h b/src/properties/include/grins/stress_strain_law.h index 91447be14..78578233b 100644 --- a/src/properties/include/grins/stress_strain_law.h +++ b/src/properties/include/grins/stress_strain_law.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/include/grins/viscosity_base.h b/src/properties/include/grins/viscosity_base.h index ca3eaec94..e085210b5 100644 --- a/src/properties/include/grins/viscosity_base.h +++ b/src/properties/include/grins/viscosity_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/antioch_chemistry.C b/src/properties/src/antioch_chemistry.C index cad5ddebd..7ca9f3e4c 100644 --- a/src/properties/src/antioch_chemistry.C +++ b/src/properties/src/antioch_chemistry.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/antioch_constant_transport_evaluator.C b/src/properties/src/antioch_constant_transport_evaluator.C index 640ae0b50..c3cdc7c88 100644 --- a/src/properties/src/antioch_constant_transport_evaluator.C +++ b/src/properties/src/antioch_constant_transport_evaluator.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/antioch_constant_transport_instantiate.C b/src/properties/src/antioch_constant_transport_instantiate.C index 4e0479a82..48631457c 100644 --- a/src/properties/src/antioch_constant_transport_instantiate.C +++ b/src/properties/src/antioch_constant_transport_instantiate.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/antioch_constant_transport_mixture.C b/src/properties/src/antioch_constant_transport_mixture.C index 392244fe5..3fcc1ce44 100644 --- a/src/properties/src/antioch_constant_transport_mixture.C +++ b/src/properties/src/antioch_constant_transport_mixture.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/antioch_evaluator.C b/src/properties/src/antioch_evaluator.C index 38b75374f..a53226ded 100644 --- a/src/properties/src/antioch_evaluator.C +++ b/src/properties/src/antioch_evaluator.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/antioch_evaluator_instantiate.C b/src/properties/src/antioch_evaluator_instantiate.C index e81261f56..9116eced9 100644 --- a/src/properties/src/antioch_evaluator_instantiate.C +++ b/src/properties/src/antioch_evaluator_instantiate.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/antioch_kinetics.C b/src/properties/src/antioch_kinetics.C index 8aa9ecc90..4df749da2 100644 --- a/src/properties/src/antioch_kinetics.C +++ b/src/properties/src/antioch_kinetics.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/antioch_mixture.C b/src/properties/src/antioch_mixture.C index 64c201512..11c4bcf31 100644 --- a/src/properties/src/antioch_mixture.C +++ b/src/properties/src/antioch_mixture.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/antioch_mixture_averaged_transport_evaluator.C b/src/properties/src/antioch_mixture_averaged_transport_evaluator.C index c05f9c4b2..609082f9b 100644 --- a/src/properties/src/antioch_mixture_averaged_transport_evaluator.C +++ b/src/properties/src/antioch_mixture_averaged_transport_evaluator.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/antioch_mixture_averaged_transport_evaluator_instantiate.C b/src/properties/src/antioch_mixture_averaged_transport_evaluator_instantiate.C index 7902fdb01..4d49ead1c 100644 --- a/src/properties/src/antioch_mixture_averaged_transport_evaluator_instantiate.C +++ b/src/properties/src/antioch_mixture_averaged_transport_evaluator_instantiate.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/antioch_mixture_averaged_transport_mixture.C b/src/properties/src/antioch_mixture_averaged_transport_mixture.C index 1d7cfef68..39b8b8661 100644 --- a/src/properties/src/antioch_mixture_averaged_transport_mixture.C +++ b/src/properties/src/antioch_mixture_averaged_transport_mixture.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/antioch_mixture_averaged_transport_mixture_instantiate.C b/src/properties/src/antioch_mixture_averaged_transport_mixture_instantiate.C index e739c3aaf..f67cf57e1 100644 --- a/src/properties/src/antioch_mixture_averaged_transport_mixture_instantiate.C +++ b/src/properties/src/antioch_mixture_averaged_transport_mixture_instantiate.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/cantera_evaluator.C b/src/properties/src/cantera_evaluator.C index d7f3426b6..4d4b43dfd 100644 --- a/src/properties/src/cantera_evaluator.C +++ b/src/properties/src/cantera_evaluator.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/cantera_kinetics.C b/src/properties/src/cantera_kinetics.C index e028581ca..9273910ad 100644 --- a/src/properties/src/cantera_kinetics.C +++ b/src/properties/src/cantera_kinetics.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/cantera_mixture.C b/src/properties/src/cantera_mixture.C index 61e30f959..5432ec084 100644 --- a/src/properties/src/cantera_mixture.C +++ b/src/properties/src/cantera_mixture.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/cantera_thermo.C b/src/properties/src/cantera_thermo.C index 5dc04010b..7203e2637 100644 --- a/src/properties/src/cantera_thermo.C +++ b/src/properties/src/cantera_thermo.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/cantera_transport.C b/src/properties/src/cantera_transport.C index 0269ddc6e..25fd948fd 100644 --- a/src/properties/src/cantera_transport.C +++ b/src/properties/src/cantera_transport.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/constant_conductivity.C b/src/properties/src/constant_conductivity.C index 5a15859fe..3d1fdb199 100644 --- a/src/properties/src/constant_conductivity.C +++ b/src/properties/src/constant_conductivity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/constant_prandtl_conductivity.C b/src/properties/src/constant_prandtl_conductivity.C index 8424affaf..2c07341c1 100644 --- a/src/properties/src/constant_prandtl_conductivity.C +++ b/src/properties/src/constant_prandtl_conductivity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/constant_source_func.C b/src/properties/src/constant_source_func.C index 77f8d2b1d..219192880 100644 --- a/src/properties/src/constant_source_func.C +++ b/src/properties/src/constant_source_func.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/constant_specific_heat.C b/src/properties/src/constant_specific_heat.C index be1b4a43a..35ba4f5e4 100644 --- a/src/properties/src/constant_specific_heat.C +++ b/src/properties/src/constant_specific_heat.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/constant_viscosity.C b/src/properties/src/constant_viscosity.C index e04386f84..20e1966d8 100644 --- a/src/properties/src/constant_viscosity.C +++ b/src/properties/src/constant_viscosity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/gas_mixture.C b/src/properties/src/gas_mixture.C index 0b38996af..7d195fb03 100644 --- a/src/properties/src/gas_mixture.C +++ b/src/properties/src/gas_mixture.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/hookes_law.C b/src/properties/src/hookes_law.C index 8ef33214f..4aa37342f 100644 --- a/src/properties/src/hookes_law.C +++ b/src/properties/src/hookes_law.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/hookes_law_1d.C b/src/properties/src/hookes_law_1d.C index b8c211aee..0f33eebd5 100644 --- a/src/properties/src/hookes_law_1d.C +++ b/src/properties/src/hookes_law_1d.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/hyperelasticity.C b/src/properties/src/hyperelasticity.C index e0bda5e15..ee6b2c7fe 100644 --- a/src/properties/src/hyperelasticity.C +++ b/src/properties/src/hyperelasticity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/hyperelasticity_instantiate.C b/src/properties/src/hyperelasticity_instantiate.C index b7d772341..c53f303b8 100644 --- a/src/properties/src/hyperelasticity_instantiate.C +++ b/src/properties/src/hyperelasticity_instantiate.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/incompressible_plane_stress_hyperelasticity.C b/src/properties/src/incompressible_plane_stress_hyperelasticity.C index ffcdd9860..67d7fce6b 100644 --- a/src/properties/src/incompressible_plane_stress_hyperelasticity.C +++ b/src/properties/src/incompressible_plane_stress_hyperelasticity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/materials_parsing.C b/src/properties/src/materials_parsing.C index a38dcde09..493c72ee2 100644 --- a/src/properties/src/materials_parsing.C +++ b/src/properties/src/materials_parsing.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/mooney_rivlin.C b/src/properties/src/mooney_rivlin.C index fc9c5b734..77a3ebfb9 100644 --- a/src/properties/src/mooney_rivlin.C +++ b/src/properties/src/mooney_rivlin.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/parsed_property_base.C b/src/properties/src/parsed_property_base.C index 3e25dace3..f58ff256d 100644 --- a/src/properties/src/parsed_property_base.C +++ b/src/properties/src/parsed_property_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/parsed_viscosity.C b/src/properties/src/parsed_viscosity.C index 4dfd16447..7f1188086 100644 --- a/src/properties/src/parsed_viscosity.C +++ b/src/properties/src/parsed_viscosity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/properties/src/viscosity_base.C b/src/properties/src/viscosity_base.C index 4770f21e3..5b3ea920a 100644 --- a/src/properties/src/viscosity_base.C +++ b/src/properties/src/viscosity_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/include/grins/average_nusselt_number.h b/src/qoi/include/grins/average_nusselt_number.h index 00c06a593..10c831843 100644 --- a/src/qoi/include/grins/average_nusselt_number.h +++ b/src/qoi/include/grins/average_nusselt_number.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/include/grins/composite_qoi.h b/src/qoi/include/grins/composite_qoi.h index 64ef7de3f..c1634a221 100644 --- a/src/qoi/include/grins/composite_qoi.h +++ b/src/qoi/include/grins/composite_qoi.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/include/grins/parsed_boundary_qoi.h b/src/qoi/include/grins/parsed_boundary_qoi.h index 17f8cf31a..fd4d2e40d 100644 --- a/src/qoi/include/grins/parsed_boundary_qoi.h +++ b/src/qoi/include/grins/parsed_boundary_qoi.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/include/grins/parsed_interior_qoi.h b/src/qoi/include/grins/parsed_interior_qoi.h index 42eaece04..6d72c5a89 100644 --- a/src/qoi/include/grins/parsed_interior_qoi.h +++ b/src/qoi/include/grins/parsed_interior_qoi.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/include/grins/qoi_base.h b/src/qoi/include/grins/qoi_base.h index ea7d28fb3..386a5e597 100644 --- a/src/qoi/include/grins/qoi_base.h +++ b/src/qoi/include/grins/qoi_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/include/grins/qoi_factory.h b/src/qoi/include/grins/qoi_factory.h index f1c239697..c2cca76d9 100644 --- a/src/qoi/include/grins/qoi_factory.h +++ b/src/qoi/include/grins/qoi_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/include/grins/qoi_names.h b/src/qoi/include/grins/qoi_names.h index d60d17053..2e0264509 100644 --- a/src/qoi/include/grins/qoi_names.h +++ b/src/qoi/include/grins/qoi_names.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/include/grins/vorticity.h b/src/qoi/include/grins/vorticity.h index 2d0b81b62..efdeb1aa9 100644 --- a/src/qoi/include/grins/vorticity.h +++ b/src/qoi/include/grins/vorticity.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/include/grins/weighted_flux_qoi.h b/src/qoi/include/grins/weighted_flux_qoi.h index 0850080a2..328a2a581 100644 --- a/src/qoi/include/grins/weighted_flux_qoi.h +++ b/src/qoi/include/grins/weighted_flux_qoi.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/src/average_nusselt_number.C b/src/qoi/src/average_nusselt_number.C index 3cc90027d..fe1bf467b 100644 --- a/src/qoi/src/average_nusselt_number.C +++ b/src/qoi/src/average_nusselt_number.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/src/composite_qoi.C b/src/qoi/src/composite_qoi.C index f6abf4f54..89b36e128 100644 --- a/src/qoi/src/composite_qoi.C +++ b/src/qoi/src/composite_qoi.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/src/parsed_boundary_qoi.C b/src/qoi/src/parsed_boundary_qoi.C index ddff7c0fa..cb0a0ee64 100644 --- a/src/qoi/src/parsed_boundary_qoi.C +++ b/src/qoi/src/parsed_boundary_qoi.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/src/parsed_interior_qoi.C b/src/qoi/src/parsed_interior_qoi.C index 148230c9d..dcfa0da69 100644 --- a/src/qoi/src/parsed_interior_qoi.C +++ b/src/qoi/src/parsed_interior_qoi.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/src/qoi_base.C b/src/qoi/src/qoi_base.C index cb6cf1d2a..7a5c58c69 100644 --- a/src/qoi/src/qoi_base.C +++ b/src/qoi/src/qoi_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/src/qoi_factory.C b/src/qoi/src/qoi_factory.C index c6779f078..e5dc15f04 100644 --- a/src/qoi/src/qoi_factory.C +++ b/src/qoi/src/qoi_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/src/vorticity.C b/src/qoi/src/vorticity.C index fc64ce153..ac687f662 100644 --- a/src/qoi/src/vorticity.C +++ b/src/qoi/src/vorticity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/qoi/src/weighted_flux_qoi.C b/src/qoi/src/weighted_flux_qoi.C index ab71cf213..b3a0a7816 100644 --- a/src/qoi/src/weighted_flux_qoi.C +++ b/src/qoi/src/weighted_flux_qoi.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/grins_solver.h b/src/solver/include/grins/grins_solver.h index 3f5bcbcb8..b129206d7 100644 --- a/src/solver/include/grins/grins_solver.h +++ b/src/solver/include/grins/grins_solver.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/grins_steady_solver.h b/src/solver/include/grins/grins_steady_solver.h index 665765dee..177e2ccbb 100644 --- a/src/solver/include/grins/grins_steady_solver.h +++ b/src/solver/include/grins/grins_steady_solver.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/grins_unsteady_solver.h b/src/solver/include/grins/grins_unsteady_solver.h index 9399ab043..4c772ebdb 100644 --- a/src/solver/include/grins/grins_unsteady_solver.h +++ b/src/solver/include/grins/grins_unsteady_solver.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/mesh_adaptive_solver_base.h b/src/solver/include/grins/mesh_adaptive_solver_base.h index ccd14e450..16dff08f4 100644 --- a/src/solver/include/grins/mesh_adaptive_solver_base.h +++ b/src/solver/include/grins/mesh_adaptive_solver_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/mesh_builder.h b/src/solver/include/grins/mesh_builder.h index 3363a951b..36378c58d 100644 --- a/src/solver/include/grins/mesh_builder.h +++ b/src/solver/include/grins/mesh_builder.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/parameter_manager.h b/src/solver/include/grins/parameter_manager.h index 5d9896dc7..21a941db8 100644 --- a/src/solver/include/grins/parameter_manager.h +++ b/src/solver/include/grins/parameter_manager.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/parameter_user.h b/src/solver/include/grins/parameter_user.h index c54b54fd6..98f512311 100644 --- a/src/solver/include/grins/parameter_user.h +++ b/src/solver/include/grins/parameter_user.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/simulation.h b/src/solver/include/grins/simulation.h index c0f354b0b..24d07e7b7 100644 --- a/src/solver/include/grins/simulation.h +++ b/src/solver/include/grins/simulation.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/simulation_builder.h b/src/solver/include/grins/simulation_builder.h index 9141977b6..db5cadd7e 100644 --- a/src/solver/include/grins/simulation_builder.h +++ b/src/solver/include/grins/simulation_builder.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/simulation_parsing.h b/src/solver/include/grins/simulation_parsing.h index 8486557a0..d5bd9dda8 100644 --- a/src/solver/include/grins/simulation_parsing.h +++ b/src/solver/include/grins/simulation_parsing.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/solver_context.h b/src/solver/include/grins/solver_context.h index 5ef0cc28f..439422d46 100644 --- a/src/solver/include/grins/solver_context.h +++ b/src/solver/include/grins/solver_context.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/solver_factory.h b/src/solver/include/grins/solver_factory.h index 97da4f8c0..633c53277 100644 --- a/src/solver/include/grins/solver_factory.h +++ b/src/solver/include/grins/solver_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/solver_names.h b/src/solver/include/grins/solver_names.h index a26518d83..5ecc8bb78 100644 --- a/src/solver/include/grins/solver_names.h +++ b/src/solver/include/grins/solver_names.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/solver_parsing.h b/src/solver/include/grins/solver_parsing.h index 65473c463..c0c97824f 100644 --- a/src/solver/include/grins/solver_parsing.h +++ b/src/solver/include/grins/solver_parsing.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/steady_mesh_adaptive_solver.h b/src/solver/include/grins/steady_mesh_adaptive_solver.h index 0a6b7dea3..6af73ee68 100644 --- a/src/solver/include/grins/steady_mesh_adaptive_solver.h +++ b/src/solver/include/grins/steady_mesh_adaptive_solver.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/time_stepping_parsing.h b/src/solver/include/grins/time_stepping_parsing.h index 8cce6fd5f..47c70d075 100644 --- a/src/solver/include/grins/time_stepping_parsing.h +++ b/src/solver/include/grins/time_stepping_parsing.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/include/grins/unsteady_mesh_adaptive_solver.h b/src/solver/include/grins/unsteady_mesh_adaptive_solver.h index bb56f6176..2199688c0 100644 --- a/src/solver/include/grins/unsteady_mesh_adaptive_solver.h +++ b/src/solver/include/grins/unsteady_mesh_adaptive_solver.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/grins.C b/src/solver/src/grins.C index f77dd59a3..c4f759eff 100644 --- a/src/solver/src/grins.C +++ b/src/solver/src/grins.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/grins_solver.C b/src/solver/src/grins_solver.C index 71115e616..1915f70fe 100644 --- a/src/solver/src/grins_solver.C +++ b/src/solver/src/grins_solver.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/grins_steady_solver.C b/src/solver/src/grins_steady_solver.C index e97891b97..766182cae 100644 --- a/src/solver/src/grins_steady_solver.C +++ b/src/solver/src/grins_steady_solver.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/grins_unsteady_solver.C b/src/solver/src/grins_unsteady_solver.C index 49bc9db0a..b59955666 100644 --- a/src/solver/src/grins_unsteady_solver.C +++ b/src/solver/src/grins_unsteady_solver.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/mesh_adaptive_solver_base.C b/src/solver/src/mesh_adaptive_solver_base.C index 594701121..62284739b 100644 --- a/src/solver/src/mesh_adaptive_solver_base.C +++ b/src/solver/src/mesh_adaptive_solver_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/mesh_builder.C b/src/solver/src/mesh_builder.C index b6e5cffb5..3d58063d9 100644 --- a/src/solver/src/mesh_builder.C +++ b/src/solver/src/mesh_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/parameter_manager.C b/src/solver/src/parameter_manager.C index 4017bfd0d..0ae1d9101 100644 --- a/src/solver/src/parameter_manager.C +++ b/src/solver/src/parameter_manager.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/parameter_user.C b/src/solver/src/parameter_user.C index a74c5b43a..b06b872ac 100644 --- a/src/solver/src/parameter_user.C +++ b/src/solver/src/parameter_user.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/simulation.C b/src/solver/src/simulation.C index bb5d3ffe3..a78fd531a 100644 --- a/src/solver/src/simulation.C +++ b/src/solver/src/simulation.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/simulation_builder.C b/src/solver/src/simulation_builder.C index 16e833b5a..fc70614ab 100644 --- a/src/solver/src/simulation_builder.C +++ b/src/solver/src/simulation_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/solver_context.C b/src/solver/src/solver_context.C index c496d1467..b705a8703 100644 --- a/src/solver/src/solver_context.C +++ b/src/solver/src/solver_context.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/solver_factory.C b/src/solver/src/solver_factory.C index 738e4f6ca..b2ce8c193 100644 --- a/src/solver/src/solver_factory.C +++ b/src/solver/src/solver_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/solver_parsing.C b/src/solver/src/solver_parsing.C index 32db624a9..78cce8fde 100644 --- a/src/solver/src/solver_parsing.C +++ b/src/solver/src/solver_parsing.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/steady_mesh_adaptive_solver.C b/src/solver/src/steady_mesh_adaptive_solver.C index e24f6fcb4..d188c2840 100644 --- a/src/solver/src/steady_mesh_adaptive_solver.C +++ b/src/solver/src/steady_mesh_adaptive_solver.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/time_stepping_parsing.C b/src/solver/src/time_stepping_parsing.C index f457fbb25..7c3d4aacf 100644 --- a/src/solver/src/time_stepping_parsing.C +++ b/src/solver/src/time_stepping_parsing.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/solver/src/unsteady_mesh_adaptive_solver.C b/src/solver/src/unsteady_mesh_adaptive_solver.C index 351bb9859..6b3bbbefe 100644 --- a/src/solver/src/unsteady_mesh_adaptive_solver.C +++ b/src/solver/src/unsteady_mesh_adaptive_solver.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/strategies/include/grins/adaptive_time_stepping_options.h b/src/strategies/include/grins/adaptive_time_stepping_options.h index 12710f133..7399c559b 100644 --- a/src/strategies/include/grins/adaptive_time_stepping_options.h +++ b/src/strategies/include/grins/adaptive_time_stepping_options.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/strategies/include/grins/adjoint_error_estimator_factories.h b/src/strategies/include/grins/adjoint_error_estimator_factories.h index 84763821a..638a1956a 100644 --- a/src/strategies/include/grins/adjoint_error_estimator_factories.h +++ b/src/strategies/include/grins/adjoint_error_estimator_factories.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/strategies/include/grins/error_estimator_factory_base.h b/src/strategies/include/grins/error_estimator_factory_base.h index 3a1a6eaca..2367eeeaf 100644 --- a/src/strategies/include/grins/error_estimator_factory_base.h +++ b/src/strategies/include/grins/error_estimator_factory_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/strategies/include/grins/error_estimator_factory_basic.h b/src/strategies/include/grins/error_estimator_factory_basic.h index 5579d68c6..147585256 100644 --- a/src/strategies/include/grins/error_estimator_factory_basic.h +++ b/src/strategies/include/grins/error_estimator_factory_basic.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/strategies/include/grins/error_estimator_options.h b/src/strategies/include/grins/error_estimator_options.h index 00e137796..7dc21733d 100644 --- a/src/strategies/include/grins/error_estimator_options.h +++ b/src/strategies/include/grins/error_estimator_options.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/strategies/include/grins/strategies_parsing.h b/src/strategies/include/grins/strategies_parsing.h index b46e3dd31..05f1461fc 100644 --- a/src/strategies/include/grins/strategies_parsing.h +++ b/src/strategies/include/grins/strategies_parsing.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/strategies/src/adaptive_time_stepping_options.C b/src/strategies/src/adaptive_time_stepping_options.C index f486dbc29..be1cdf4e0 100644 --- a/src/strategies/src/adaptive_time_stepping_options.C +++ b/src/strategies/src/adaptive_time_stepping_options.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/strategies/src/adjoint_error_estimator_factories.C b/src/strategies/src/adjoint_error_estimator_factories.C index 47e429128..e1bb543e0 100644 --- a/src/strategies/src/adjoint_error_estimator_factories.C +++ b/src/strategies/src/adjoint_error_estimator_factories.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/strategies/src/error_estimator_factory_base.C b/src/strategies/src/error_estimator_factory_base.C index 5bcf79253..7e5c37b49 100644 --- a/src/strategies/src/error_estimator_factory_base.C +++ b/src/strategies/src/error_estimator_factory_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/strategies/src/error_estimator_factory_basic.C b/src/strategies/src/error_estimator_factory_basic.C index d3a028452..8af9c7fe3 100644 --- a/src/strategies/src/error_estimator_factory_basic.C +++ b/src/strategies/src/error_estimator_factory_basic.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/strategies/src/error_estimator_options.C b/src/strategies/src/error_estimator_options.C index 49064ab61..85b80fa6a 100644 --- a/src/strategies/src/error_estimator_options.C +++ b/src/strategies/src/error_estimator_options.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/strategies/src/strategies_parsing.C b/src/strategies/src/strategies_parsing.C index 21b2793ac..c03ee1ec4 100644 --- a/src/strategies/src/strategies_parsing.C +++ b/src/strategies/src/strategies_parsing.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/include/grins/cached_quantities_enum.h b/src/utilities/include/grins/cached_quantities_enum.h index 2300af112..dd518574e 100644 --- a/src/utilities/include/grins/cached_quantities_enum.h +++ b/src/utilities/include/grins/cached_quantities_enum.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/include/grins/cached_values.h b/src/utilities/include/grins/cached_values.h index 54803a3f5..95a1c8bb3 100644 --- a/src/utilities/include/grins/cached_values.h +++ b/src/utilities/include/grins/cached_values.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/include/grins/distance_function.h b/src/utilities/include/grins/distance_function.h index e66cba698..fe88537b2 100644 --- a/src/utilities/include/grins/distance_function.h +++ b/src/utilities/include/grins/distance_function.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/include/grins/grins_enums.h b/src/utilities/include/grins/grins_enums.h index 177a23477..bbe16fbde 100644 --- a/src/utilities/include/grins/grins_enums.h +++ b/src/utilities/include/grins/grins_enums.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/include/grins/input_utils.h b/src/utilities/include/grins/input_utils.h index 14218de1a..44bc2d63e 100644 --- a/src/utilities/include/grins/input_utils.h +++ b/src/utilities/include/grins/input_utils.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/include/grins/math_constants.h b/src/utilities/include/grins/math_constants.h index 2baf9a3bc..f654ceffa 100644 --- a/src/utilities/include/grins/math_constants.h +++ b/src/utilities/include/grins/math_constants.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/include/grins/parameter_antioch_reset.h b/src/utilities/include/grins/parameter_antioch_reset.h index 4c22b2260..d8a3b456f 100644 --- a/src/utilities/include/grins/parameter_antioch_reset.h +++ b/src/utilities/include/grins/parameter_antioch_reset.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/include/grins/physical_constants.h b/src/utilities/include/grins/physical_constants.h index 0daca0ee4..f471d2b4e 100644 --- a/src/utilities/include/grins/physical_constants.h +++ b/src/utilities/include/grins/physical_constants.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/include/grins/shared_ptr.h b/src/utilities/include/grins/shared_ptr.h index 4aeb87ec3..f7426a03d 100644 --- a/src/utilities/include/grins/shared_ptr.h +++ b/src/utilities/include/grins/shared_ptr.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/include/grins/string_utils.h b/src/utilities/include/grins/string_utils.h index 51a3856a5..06037dd06 100644 --- a/src/utilities/include/grins/string_utils.h +++ b/src/utilities/include/grins/string_utils.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/src/cached_values.C b/src/utilities/src/cached_values.C index 9495e0ca1..d7c857985 100644 --- a/src/utilities/src/cached_values.C +++ b/src/utilities/src/cached_values.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/src/grins_version.C b/src/utilities/src/grins_version.C index 4419a8c5c..b4da8fde1 100644 --- a/src/utilities/src/grins_version.C +++ b/src/utilities/src/grins_version.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/src/input_utils.C b/src/utilities/src/input_utils.C index 565c6af86..e0c9e1174 100644 --- a/src/utilities/src/input_utils.C +++ b/src/utilities/src/input_utils.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/src/parameter_antioch_reset.C b/src/utilities/src/parameter_antioch_reset.C index 8d047e910..8a910afed 100644 --- a/src/utilities/src/parameter_antioch_reset.C +++ b/src/utilities/src/parameter_antioch_reset.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/src/string_utils.C b/src/utilities/src/string_utils.C index d7f4ae36c..b496283bb 100644 --- a/src/utilities/src/string_utils.C +++ b/src/utilities/src/string_utils.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/utilities/src/version.C b/src/utilities/src/version.C index 0a136a006..8a8c03169 100644 --- a/src/utilities/src/version.C +++ b/src/utilities/src/version.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/displacement_fe_variables.h b/src/variables/include/grins/displacement_fe_variables.h index eb8977311..5ff53486f 100644 --- a/src/variables/include/grins/displacement_fe_variables.h +++ b/src/variables/include/grins/displacement_fe_variables.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/fe_variables_base.h b/src/variables/include/grins/fe_variables_base.h index 6d74cb499..e95819c88 100644 --- a/src/variables/include/grins/fe_variables_base.h +++ b/src/variables/include/grins/fe_variables_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/generic_fe_type_variable.h b/src/variables/include/grins/generic_fe_type_variable.h index 6d2a5a2d5..23280c032 100644 --- a/src/variables/include/grins/generic_fe_type_variable.h +++ b/src/variables/include/grins/generic_fe_type_variable.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/multi_var_single_fe_type_variable.h b/src/variables/include/grins/multi_var_single_fe_type_variable.h index 954fba611..c6f2d4c43 100644 --- a/src/variables/include/grins/multi_var_single_fe_type_variable.h +++ b/src/variables/include/grins/multi_var_single_fe_type_variable.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/pressure_fe_variable.h b/src/variables/include/grins/pressure_fe_variable.h index d60571aee..d43c541fc 100644 --- a/src/variables/include/grins/pressure_fe_variable.h +++ b/src/variables/include/grins/pressure_fe_variable.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/primitive_temp_fe_variables.h b/src/variables/include/grins/primitive_temp_fe_variables.h index 4d597746f..ff86cb4f9 100644 --- a/src/variables/include/grins/primitive_temp_fe_variables.h +++ b/src/variables/include/grins/primitive_temp_fe_variables.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/single_fe_type_variable.h b/src/variables/include/grins/single_fe_type_variable.h index e7750b7c7..c3fd53f4f 100644 --- a/src/variables/include/grins/single_fe_type_variable.h +++ b/src/variables/include/grins/single_fe_type_variable.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/single_var_single_fe_type_variable.h b/src/variables/include/grins/single_var_single_fe_type_variable.h index 61cedcd92..731fd0b78 100644 --- a/src/variables/include/grins/single_var_single_fe_type_variable.h +++ b/src/variables/include/grins/single_var_single_fe_type_variable.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/species_mass_fracs_fe_variables.h b/src/variables/include/grins/species_mass_fracs_fe_variables.h index f2b0456bb..03ace6ea3 100644 --- a/src/variables/include/grins/species_mass_fracs_fe_variables.h +++ b/src/variables/include/grins/species_mass_fracs_fe_variables.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/thermo_pressure_fe_variable.h b/src/variables/include/grins/thermo_pressure_fe_variable.h index 0325f8de6..61ae4f45b 100644 --- a/src/variables/include/grins/thermo_pressure_fe_variable.h +++ b/src/variables/include/grins/thermo_pressure_fe_variable.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/turbulence_fe_variables.h b/src/variables/include/grins/turbulence_fe_variables.h index 214a32047..367e66c62 100644 --- a/src/variables/include/grins/turbulence_fe_variables.h +++ b/src/variables/include/grins/turbulence_fe_variables.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/variable_name_defaults.h b/src/variables/include/grins/variable_name_defaults.h index e6ac6a78c..ec3c3827c 100644 --- a/src/variables/include/grins/variable_name_defaults.h +++ b/src/variables/include/grins/variable_name_defaults.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/variable_warehouse.h b/src/variables/include/grins/variable_warehouse.h index d3f23e71b..f24ff61b7 100644 --- a/src/variables/include/grins/variable_warehouse.h +++ b/src/variables/include/grins/variable_warehouse.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/variables_parsing.h b/src/variables/include/grins/variables_parsing.h index 7bbb3d314..3c3cedeba 100644 --- a/src/variables/include/grins/variables_parsing.h +++ b/src/variables/include/grins/variables_parsing.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/include/grins/velocity_fe_variables.h b/src/variables/include/grins/velocity_fe_variables.h index fd3e22017..fee9a6394 100644 --- a/src/variables/include/grins/velocity_fe_variables.h +++ b/src/variables/include/grins/velocity_fe_variables.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/src/displacement_fe_variables.C b/src/variables/src/displacement_fe_variables.C index ce8ce49f0..60bacb207 100644 --- a/src/variables/src/displacement_fe_variables.C +++ b/src/variables/src/displacement_fe_variables.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/src/fe_variables_base.C b/src/variables/src/fe_variables_base.C index 7026843d5..85a93dd64 100644 --- a/src/variables/src/fe_variables_base.C +++ b/src/variables/src/fe_variables_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/src/multi_var_single_fe_type_variable.C b/src/variables/src/multi_var_single_fe_type_variable.C index 6951381e3..738d55827 100644 --- a/src/variables/src/multi_var_single_fe_type_variable.C +++ b/src/variables/src/multi_var_single_fe_type_variable.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/src/single_fe_type_variable.C b/src/variables/src/single_fe_type_variable.C index 9d0eb5eda..ef981b18c 100644 --- a/src/variables/src/single_fe_type_variable.C +++ b/src/variables/src/single_fe_type_variable.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/src/single_var_single_fe_type_variable.C b/src/variables/src/single_var_single_fe_type_variable.C index f9d11e103..891afa11a 100644 --- a/src/variables/src/single_var_single_fe_type_variable.C +++ b/src/variables/src/single_var_single_fe_type_variable.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/src/species_mass_fracs_fe_variables.C b/src/variables/src/species_mass_fracs_fe_variables.C index 44ce70b39..5a0b741b6 100644 --- a/src/variables/src/species_mass_fracs_fe_variables.C +++ b/src/variables/src/species_mass_fracs_fe_variables.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/src/variable_warehouse.C b/src/variables/src/variable_warehouse.C index c957e03c6..1c56f8ac1 100644 --- a/src/variables/src/variable_warehouse.C +++ b/src/variables/src/variable_warehouse.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/variables/src/velocity_fe_variables.C b/src/variables/src/velocity_fe_variables.C index dcbe34dd8..e0948859b 100644 --- a/src/variables/src/velocity_fe_variables.C +++ b/src/variables/src/velocity_fe_variables.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/visualization/include/grins/postprocessed_quantities.h b/src/visualization/include/grins/postprocessed_quantities.h index 98772404f..212f51827 100644 --- a/src/visualization/include/grins/postprocessed_quantities.h +++ b/src/visualization/include/grins/postprocessed_quantities.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/visualization/include/grins/postprocessing_factory.h b/src/visualization/include/grins/postprocessing_factory.h index 0c1d95257..bc2f1278b 100644 --- a/src/visualization/include/grins/postprocessing_factory.h +++ b/src/visualization/include/grins/postprocessing_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/visualization/include/grins/steady_visualization.h b/src/visualization/include/grins/steady_visualization.h index bef0ecf6d..03539e7a7 100644 --- a/src/visualization/include/grins/steady_visualization.h +++ b/src/visualization/include/grins/steady_visualization.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/visualization/include/grins/unsteady_visualization.h b/src/visualization/include/grins/unsteady_visualization.h index db2ea532d..56e382df0 100644 --- a/src/visualization/include/grins/unsteady_visualization.h +++ b/src/visualization/include/grins/unsteady_visualization.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/visualization/include/grins/visualization.h b/src/visualization/include/grins/visualization.h index fd62645ae..8105f623d 100644 --- a/src/visualization/include/grins/visualization.h +++ b/src/visualization/include/grins/visualization.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/visualization/include/grins/visualization_factory.h b/src/visualization/include/grins/visualization_factory.h index b94cb0f28..6572bd1b7 100644 --- a/src/visualization/include/grins/visualization_factory.h +++ b/src/visualization/include/grins/visualization_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/visualization/src/postprocessed_quantities.C b/src/visualization/src/postprocessed_quantities.C index 5457ee5fd..88eab4487 100644 --- a/src/visualization/src/postprocessed_quantities.C +++ b/src/visualization/src/postprocessed_quantities.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/visualization/src/postprocessing_factory.C b/src/visualization/src/postprocessing_factory.C index c6c9230cf..1fd2a783c 100644 --- a/src/visualization/src/postprocessing_factory.C +++ b/src/visualization/src/postprocessing_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/visualization/src/steady_visualization.C b/src/visualization/src/steady_visualization.C index e6582c53b..176998f78 100644 --- a/src/visualization/src/steady_visualization.C +++ b/src/visualization/src/steady_visualization.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/visualization/src/unsteady_visualization.C b/src/visualization/src/unsteady_visualization.C index 55537150b..f4a712033 100644 --- a/src/visualization/src/unsteady_visualization.C +++ b/src/visualization/src/unsteady_visualization.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/visualization/src/visualization.C b/src/visualization/src/visualization.C index d02a875b4..c7f6c5e3c 100644 --- a/src/visualization/src/visualization.C +++ b/src/visualization/src/visualization.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/visualization/src/visualization_factory.C b/src/visualization/src/visualization_factory.C index 20e85c192..b4e39f586 100644 --- a/src/visualization/src/visualization_factory.C +++ b/src/visualization/src/visualization_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/amr/generic_amr_testing_app.C b/test/amr/generic_amr_testing_app.C index eaf40b3af..0454191ed 100644 --- a/test/amr/generic_amr_testing_app.C +++ b/test/amr/generic_amr_testing_app.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/common/system_helper.h b/test/common/system_helper.h index d7dba5ad4..b2739fe62 100644 --- a/test/common/system_helper.h +++ b/test/common/system_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/common/testing_utils.h b/test/common/testing_utils.h index 3a733b1c5..6c28064a9 100644 --- a/test/common/testing_utils.h +++ b/test/common/testing_utils.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/exact_soln/generic_exact_solution_testing_app.C b/test/exact_soln/generic_exact_solution_testing_app.C index ae9cfbe50..99dac074f 100644 --- a/test/exact_soln/generic_exact_solution_testing_app.C +++ b/test/exact_soln/generic_exact_solution_testing_app.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/exact_soln/vorticity_qoi.C b/test/exact_soln/vorticity_qoi.C index 29662d265..4ec8f1efa 100644 --- a/test/exact_soln/vorticity_qoi.C +++ b/test/exact_soln/vorticity_qoi.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/interface/air_5sp.C b/test/interface/air_5sp.C index 64c4b0300..31e5aa0f9 100644 --- a/test/interface/air_5sp.C +++ b/test/interface/air_5sp.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/interface/antioch_mixture_averaged_transport_evaluator_regression.C b/test/interface/antioch_mixture_averaged_transport_evaluator_regression.C index 656a69b19..01a5c1664 100644 --- a/test/interface/antioch_mixture_averaged_transport_evaluator_regression.C +++ b/test/interface/antioch_mixture_averaged_transport_evaluator_regression.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/interface/antioch_test_base.h b/test/interface/antioch_test_base.h index bef91c8d1..56ed0cf2d 100644 --- a/test/interface/antioch_test_base.h +++ b/test/interface/antioch_test_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/interface/cantera_test_base.h b/test/interface/cantera_test_base.h index 3651cfda6..483d8803d 100644 --- a/test/interface/cantera_test_base.h +++ b/test/interface/cantera_test_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/interface/cantera_transport_regression.C b/test/interface/cantera_transport_regression.C index 5bc09c6a7..445dfa56e 100644 --- a/test/interface/cantera_transport_regression.C +++ b/test/interface/cantera_transport_regression.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/interface/interface_driver.C b/test/interface/interface_driver.C index 381ef90dd..fb78a71c6 100644 --- a/test/interface/interface_driver.C +++ b/test/interface/interface_driver.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/interface/kinetics_test_base.h b/test/interface/kinetics_test_base.h index b0c0acb46..7acd78d7a 100644 --- a/test/interface/kinetics_test_base.h +++ b/test/interface/kinetics_test_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/interface/nasa_thermo_test_base.h b/test/interface/nasa_thermo_test_base.h index 807ffa6a7..74dd33ebc 100644 --- a/test/interface/nasa_thermo_test_base.h +++ b/test/interface/nasa_thermo_test_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/interface/species_test_base.h b/test/interface/species_test_base.h index fe8febe65..c5d94a61e 100644 --- a/test/interface/species_test_base.h +++ b/test/interface/species_test_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/interface/thermochem_test_common.h b/test/interface/thermochem_test_common.h index 4f609d323..a7bbdcf0f 100644 --- a/test/interface/thermochem_test_common.h +++ b/test/interface/thermochem_test_common.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/regression/3d_low_mach_jacobians.C b/test/regression/3d_low_mach_jacobians.C index 01c88b1db..4fd675fe6 100644 --- a/test/regression/3d_low_mach_jacobians.C +++ b/test/regression/3d_low_mach_jacobians.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/regression/elastic_sheet_regression.C b/test/regression/elastic_sheet_regression.C index 99b524baf..bf44502f3 100644 --- a/test/regression/elastic_sheet_regression.C +++ b/test/regression/elastic_sheet_regression.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/regression/gaussian_profiles.C b/test/regression/gaussian_profiles.C index 078d71b5f..ba1b541bd 100644 --- a/test/regression/gaussian_profiles.C +++ b/test/regression/gaussian_profiles.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/regression/generic_solution_regression.C b/test/regression/generic_solution_regression.C index d6c5f7497..2d5a818e5 100644 --- a/test/regression/generic_solution_regression.C +++ b/test/regression/generic_solution_regression.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/regression/grins_flow_regression.C b/test/regression/grins_flow_regression.C index ad4bf3fa8..35c0f092c 100644 --- a/test/regression/grins_flow_regression.C +++ b/test/regression/grins_flow_regression.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/regression/low_mach_cavity_benchmark_regression.C b/test/regression/low_mach_cavity_benchmark_regression.C index d10ba54e0..1aafe6cdc 100644 --- a/test/regression/low_mach_cavity_benchmark_regression.C +++ b/test/regression/low_mach_cavity_benchmark_regression.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/regression/suspended_cable_regression.C b/test/regression/suspended_cable_regression.C index d0907510d..0ad878302 100644 --- a/test/regression/suspended_cable_regression.C +++ b/test/regression/suspended_cable_regression.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/regression/test_turbulent_channel.C b/test/regression/test_turbulent_channel.C index c633027f0..6dda98300 100644 --- a/test/regression/test_turbulent_channel.C +++ b/test/regression/test_turbulent_channel.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/antioch_mixture.C b/test/unit/antioch_mixture.C index a16c2fed7..699c9f45e 100644 --- a/test/unit/antioch_mixture.C +++ b/test/unit/antioch_mixture.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/arrhenius_catalycity.C b/test/unit/arrhenius_catalycity.C index ee37921d4..5e6815620 100644 --- a/test/unit/arrhenius_catalycity.C +++ b/test/unit/arrhenius_catalycity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/cantera_mixture.C b/test/unit/cantera_mixture.C index f28b6e96b..b0521ccca 100644 --- a/test/unit/cantera_mixture.C +++ b/test/unit/cantera_mixture.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/composite_function.C b/test/unit/composite_function.C index a54692d0c..47f9a63e0 100644 --- a/test/unit/composite_function.C +++ b/test/unit/composite_function.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/constant_catalycity.C b/test/unit/constant_catalycity.C index da9a2ae49..60e9bc427 100644 --- a/test/unit/constant_catalycity.C +++ b/test/unit/constant_catalycity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/default_bc_builder.C b/test/unit/default_bc_builder.C index 661d86f17..308cd004b 100644 --- a/test/unit/default_bc_builder.C +++ b/test/unit/default_bc_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/gas_recombination_catalytic_wall.C b/test/unit/gas_recombination_catalytic_wall.C index 9d2848ce0..f3df7ae37 100644 --- a/test/unit/gas_recombination_catalytic_wall.C +++ b/test/unit/gas_recombination_catalytic_wall.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/gas_solid_catalytic_wall.C b/test/unit/gas_solid_catalytic_wall.C index 49653db92..269b0186c 100644 --- a/test/unit/gas_solid_catalytic_wall.C +++ b/test/unit/gas_solid_catalytic_wall.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/mesh_builder.C b/test/unit/mesh_builder.C index a75c2d58c..3a9b6a7a2 100644 --- a/test/unit/mesh_builder.C +++ b/test/unit/mesh_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/power_law_catalycity.C b/test/unit/power_law_catalycity.C index cc602e00a..5709f7a2a 100644 --- a/test/unit/power_law_catalycity.C +++ b/test/unit/power_law_catalycity.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/string_utils.C b/test/unit/string_utils.C index 9f45dc2db..88c0c4ebe 100644 --- a/test/unit/string_utils.C +++ b/test/unit/string_utils.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/unit_driver.C b/test/unit/unit_driver.C index 91f150ce3..8ed719754 100644 --- a/test/unit/unit_driver.C +++ b/test/unit/unit_driver.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/test/unit/variables.C b/test/unit/variables.C index 44875281a..d9b5ed81e 100644 --- a/test/unit/variables.C +++ b/test/unit/variables.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2015 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or From 64ac0145e817c59fa357565988e1a5d294914814 Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Tue, 31 May 2016 10:13:37 -0400 Subject: [PATCH 09/18] Skip Antioch regression test when Antioch not present This takes care of #410. --- test/Makefile.am | 1 + .../axisym_reacting_low_mach_antioch_cea_constant.sh | 6 +++++- test/regression/reacting_low_mach_antioch_cea_constant.sh | 6 +++++- ...ing_low_mach_antioch_cea_constant_mole_fraction_input.sh | 6 +++++- .../reacting_low_mach_antioch_cea_constant_prandtl.sh | 6 +++++- .../regression/reacting_low_mach_antioch_kinetics_theory.sh | 6 +++++- ...cting_low_mach_antioch_statmech_blottner_eucken_lewis.sh | 6 +++++- ...atmech_blottner_eucken_lewis_arrhenius_catalytic_wall.sh | 6 +++++- ...tatmech_blottner_eucken_lewis_constant_catalytic_wall.sh | 6 +++++- ...lottner_eucken_lewis_constant_gassolid_catalytic_wall.sh | 6 +++++- ...h_statmech_blottner_eucken_lewis_power_catalytic_wall.sh | 6 +++++- .../reacting_low_mach_antioch_statmech_constant.sh | 6 +++++- .../reacting_low_mach_antioch_statmech_constant_prandtl.sh | 6 +++++- 13 files changed, 61 insertions(+), 12 deletions(-) diff --git a/test/Makefile.am b/test/Makefile.am index 81439076e..271d1e5ac 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -5,6 +5,7 @@ AM_TESTS_ENVIRONMENT += GRINS_TEST_SRCDIR_DIR=$(top_srcdir)/test; export GRINS_T AM_TESTS_ENVIRONMENT += GRINS_TEST_INPUT_DIR=$(top_srcdir)/test/input_files; export GRINS_TEST_INPUT_DIR; AM_TESTS_ENVIRONMENT += GRINS_TEST_DATA_DIR=$(top_srcdir)/test/test_data; export GRINS_TEST_DATA_DIR; AM_TESTS_ENVIRONMENT += GRINS_LIBMESH_DIM=@LIBMESH_DIM@; export GRINS_LIBMESH_DIM; +AM_TESTS_ENVIRONMENT += GRINS_ANTIOCH_ENABLED=@GRINS_HAVE_ANTIOCH@; export GRINS_ANTIOCH_ENABLED; AM_CPPFLAGS = AM_CPPFLAGS += -I$(top_srcdir)/src/boundary_conditions/include diff --git a/test/regression/axisym_reacting_low_mach_antioch_cea_constant.sh b/test/regression/axisym_reacting_low_mach_antioch_cea_constant.sh index e1cc413c7..a4cd623b3 100755 --- a/test/regression/axisym_reacting_low_mach_antioch_cea_constant.sh +++ b/test/regression/axisym_reacting_low_mach_antioch_cea_constant.sh @@ -8,4 +8,8 @@ DATA="${GRINS_TEST_DATA_DIR}/axisym_reacting_low_mach_antioch_cea_constant_regre # This problem does *not* like much additive Schwarz overlap... PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 2 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" -${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='2.0e-8' $PETSC_OPTIONS +if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='2.0e-8' $PETSC_OPTIONS +else + exit 77; +fi diff --git a/test/regression/reacting_low_mach_antioch_cea_constant.sh b/test/regression/reacting_low_mach_antioch_cea_constant.sh index 40d8f0a70..2afedff60 100755 --- a/test/regression/reacting_low_mach_antioch_cea_constant.sh +++ b/test/regression/reacting_low_mach_antioch_cea_constant.sh @@ -8,4 +8,8 @@ DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_cea_constant_regression.x # A MOAB preconditioner PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" -${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +else + exit 77; +fi diff --git a/test/regression/reacting_low_mach_antioch_cea_constant_mole_fraction_input.sh b/test/regression/reacting_low_mach_antioch_cea_constant_mole_fraction_input.sh index ce0096f2a..4c1bb7eb6 100755 --- a/test/regression/reacting_low_mach_antioch_cea_constant_mole_fraction_input.sh +++ b/test/regression/reacting_low_mach_antioch_cea_constant_mole_fraction_input.sh @@ -10,4 +10,8 @@ DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_cea_constant_regression.x # A MOAB preconditioner PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" -${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +else + exit 77; +fi diff --git a/test/regression/reacting_low_mach_antioch_cea_constant_prandtl.sh b/test/regression/reacting_low_mach_antioch_cea_constant_prandtl.sh index e9d022b52..4b10cb0a7 100755 --- a/test/regression/reacting_low_mach_antioch_cea_constant_prandtl.sh +++ b/test/regression/reacting_low_mach_antioch_cea_constant_prandtl.sh @@ -8,4 +8,8 @@ DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_cea_constant_prandtl_regr # A MOAB preconditioner PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" -${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +else + exit 77; +fi diff --git a/test/regression/reacting_low_mach_antioch_kinetics_theory.sh b/test/regression/reacting_low_mach_antioch_kinetics_theory.sh index 319fd5e78..a62b52b09 100755 --- a/test/regression/reacting_low_mach_antioch_kinetics_theory.sh +++ b/test/regression/reacting_low_mach_antioch_kinetics_theory.sh @@ -8,4 +8,8 @@ DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_kinetics_theory_regressio # A MOAB preconditioner PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_levels 10 -sub_pc_factor_shift nonzero" -${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +else + exit 77; +fi diff --git a/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis.sh b/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis.sh index 086e3f1b1..37a4feeae 100755 --- a/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis.sh +++ b/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis.sh @@ -8,4 +8,8 @@ DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_statmech_blottner_eucken_ # A MOAB preconditioner PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" -${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +else + exit 77; +fi diff --git a/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_arrhenius_catalytic_wall.sh b/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_arrhenius_catalytic_wall.sh index 7eb115b50..f9b4e2db8 100755 --- a/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_arrhenius_catalytic_wall.sh +++ b/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_arrhenius_catalytic_wall.sh @@ -8,4 +8,8 @@ DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_statmech_blottner_eucken_ # A MOAB preconditioner PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" -${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +else + exit 77; +fi diff --git a/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_constant_catalytic_wall.sh b/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_constant_catalytic_wall.sh index f1c024a67..a88395634 100755 --- a/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_constant_catalytic_wall.sh +++ b/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_constant_catalytic_wall.sh @@ -8,4 +8,8 @@ DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_statmech_blottner_eucken_ # A MOAB preconditioner PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" -${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +else + exit 77; +fi diff --git a/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_constant_gassolid_catalytic_wall.sh b/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_constant_gassolid_catalytic_wall.sh index 51636909f..28c22ef70 100755 --- a/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_constant_gassolid_catalytic_wall.sh +++ b/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_constant_gassolid_catalytic_wall.sh @@ -7,4 +7,8 @@ DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_statmech_blottner_eucken_ PETSC_OPTIONS="-pc_factor_levels 4 -sub_pc_factor_levels 4" -${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +else + exit 77; +fi diff --git a/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_power_catalytic_wall.sh b/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_power_catalytic_wall.sh index 4ea9eb91a..65c2268e8 100755 --- a/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_power_catalytic_wall.sh +++ b/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_power_catalytic_wall.sh @@ -8,4 +8,8 @@ DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_statmech_blottner_eucken_ # A MOAB preconditioner PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" -${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +else + exit 77; +fi diff --git a/test/regression/reacting_low_mach_antioch_statmech_constant.sh b/test/regression/reacting_low_mach_antioch_statmech_constant.sh index 535b40379..bb50c4f20 100755 --- a/test/regression/reacting_low_mach_antioch_statmech_constant.sh +++ b/test/regression/reacting_low_mach_antioch_statmech_constant.sh @@ -8,4 +8,8 @@ DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_statmech_constant_regress # A MOAB preconditioner PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" -${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +else + exit 77; +fi diff --git a/test/regression/reacting_low_mach_antioch_statmech_constant_prandtl.sh b/test/regression/reacting_low_mach_antioch_statmech_constant_prandtl.sh index 7cc506f25..a3bd75f2c 100755 --- a/test/regression/reacting_low_mach_antioch_statmech_constant_prandtl.sh +++ b/test/regression/reacting_low_mach_antioch_statmech_constant_prandtl.sh @@ -8,4 +8,8 @@ DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_statmech_constant_prandtl # A MOAB preconditioner PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" -${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS +else + exit 77; +fi From 8859cb22a315f5cd1ffea6328ec8a2f455a4529c Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Tue, 31 May 2016 11:27:35 -0400 Subject: [PATCH 10/18] Pass Elem* to build_new_fe helper function Although the current use cases will never be the SCALAR type, there may be needs in the future. This fixes warnings emitted by GCC 6.1.0. --- src/physics/include/grins/physics.h | 2 +- src/physics/src/elastic_cable.C | 2 +- src/physics/src/elastic_membrane.C | 2 +- src/physics/src/physics.C | 12 ++++++------ 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/physics/include/grins/physics.h b/src/physics/include/grins/physics.h index 9f4785a8d..16cf26bd9 100644 --- a/src/physics/include/grins/physics.h +++ b/src/physics/include/grins/physics.h @@ -251,7 +251,7 @@ namespace GRINS protected: /*! \todo This is straight up copied from libMesh. Need to make this available from libMesh. */ - libMesh::UniquePtr > build_new_fe( const libMesh::Elem& elem, + libMesh::UniquePtr > build_new_fe( const libMesh::Elem* elem, const libMesh::FEGenericBase* fe, const libMesh::Point p ); diff --git a/src/physics/src/elastic_cable.C b/src/physics/src/elastic_cable.C index 486b87bca..2ad1cc65d 100644 --- a/src/physics/src/elastic_cable.C +++ b/src/physics/src/elastic_cable.C @@ -130,7 +130,7 @@ namespace GRINS const libMesh::DenseSubVector& w_coeffs = context.get_elem_solution( this->_disp_vars.w() ); // Build new FE for the current point. We need this to build tensors at point. - libMesh::UniquePtr > fe_new = this->build_new_fe( context.get_elem(), this->get_fe(context), point ); + libMesh::UniquePtr > fe_new = this->build_new_fe( &context.get_elem(), this->get_fe(context), point ); const std::vector >& dphi_dxi = fe_new->get_dphidxi(); diff --git a/src/physics/src/elastic_membrane.C b/src/physics/src/elastic_membrane.C index c66a1a880..a8130a70a 100644 --- a/src/physics/src/elastic_membrane.C +++ b/src/physics/src/elastic_membrane.C @@ -388,7 +388,7 @@ namespace GRINS // Build new FE for the current point. We need this to build tensors at point. libMesh::UniquePtr > fe_new = - this->build_new_fe( context.get_elem(), this->get_fe(context), + this->build_new_fe( &context.get_elem(), this->get_fe(context), point ); const std::vector >& dphi_dxi = diff --git a/src/physics/src/physics.C b/src/physics/src/physics.C index ede0b8266..5a8c40e49 100644 --- a/src/physics/src/physics.C +++ b/src/physics/src/physics.C @@ -256,7 +256,7 @@ namespace GRINS return; } - libMesh::UniquePtr > Physics::build_new_fe( const libMesh::Elem& elem, + libMesh::UniquePtr > Physics::build_new_fe( const libMesh::Elem* elem, const libMesh::FEGenericBase* fe, const libMesh::Point p ) { @@ -266,23 +266,23 @@ namespace GRINS // If we don't have an Elem to evaluate on, then the only functions // we can sensibly evaluate are the scalar dofs which are the same // everywhere. - libmesh_assert(&elem || fe_type.family == SCALAR); + libmesh_assert(elem || fe_type.family == SCALAR); - unsigned int elem_dim = &elem ? elem.dim() : 0; + unsigned int elem_dim = elem ? elem->dim() : 0; UniquePtr > fe_new(FEGenericBase::build(elem_dim, fe_type)); // Map the physical co-ordinates to the master co-ordinates using the inverse_map from fe_interface.h // Build a vector of point co-ordinates to send to reinit - Point master_point = &elem ? - FEInterface::inverse_map(elem_dim, fe_type, &elem, p) : + Point master_point = elem ? + FEInterface::inverse_map(elem_dim, fe_type, elem, p) : Point(0); std::vector coor(1, master_point); // Reinitialize the element and compute the shape function values at coor - fe_new->reinit (&elem, &coor); + fe_new->reinit (elem, &coor); return fe_new; } From 9a97d60489c19f4ddc95a88d710643ef145a5766 Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Tue, 31 May 2016 11:42:46 -0400 Subject: [PATCH 11/18] Fix wrong variable for GRINS_ANTIOCH_ENABLED in tests Now we run the tests again if Antioch is enabled. --- test/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile.am b/test/Makefile.am index 271d1e5ac..69183ff8f 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -5,7 +5,7 @@ AM_TESTS_ENVIRONMENT += GRINS_TEST_SRCDIR_DIR=$(top_srcdir)/test; export GRINS_T AM_TESTS_ENVIRONMENT += GRINS_TEST_INPUT_DIR=$(top_srcdir)/test/input_files; export GRINS_TEST_INPUT_DIR; AM_TESTS_ENVIRONMENT += GRINS_TEST_DATA_DIR=$(top_srcdir)/test/test_data; export GRINS_TEST_DATA_DIR; AM_TESTS_ENVIRONMENT += GRINS_LIBMESH_DIM=@LIBMESH_DIM@; export GRINS_LIBMESH_DIM; -AM_TESTS_ENVIRONMENT += GRINS_ANTIOCH_ENABLED=@GRINS_HAVE_ANTIOCH@; export GRINS_ANTIOCH_ENABLED; +AM_TESTS_ENVIRONMENT += GRINS_ANTIOCH_ENABLED=@HAVE_ANTIOCH@; export GRINS_ANTIOCH_ENABLED; AM_CPPFLAGS = AM_CPPFLAGS += -I$(top_srcdir)/src/boundary_conditions/include From 0d4ba7f2e0ebc4ee1883780b09292eec0f4e29d3 Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Wed, 1 Jun 2016 13:28:32 -0400 Subject: [PATCH 12/18] Update test preconditioners This get me consistency across PETSc 3.5.4, 3.6.0, and 3.6.4, both debug and opt versions, for LIBMESH_RUN="mpiexec -np 1" through LIBMESH_RUN="mpiexec -np 16". Previously, everything was fine for 3.5.4, but then moving to PETSc 3.6, something changed (beyond the default pc_factor_shift_type and I haven't been able to ascertain what). Hopefully, these will be more consistent options. --- test/exact_soln/stokes_poiseuille_flow.sh | 2 +- test/regression/backward_facing_step.sh | 2 +- test/regression/penalty_poiseuille.sh | 2 +- test/regression/penalty_poiseuille_stab.sh | 2 +- test/regression/reacting_low_mach_antioch_cea_constant.sh | 2 +- ...acting_low_mach_antioch_cea_constant_mole_fraction_input.sh | 2 +- test/regression/reacting_low_mach_antioch_kinetics_theory.sh | 3 +-- .../reacting_low_mach_antioch_statmech_constant_prandtl.sh | 3 +-- 8 files changed, 8 insertions(+), 10 deletions(-) diff --git a/test/exact_soln/stokes_poiseuille_flow.sh b/test/exact_soln/stokes_poiseuille_flow.sh index c28102690..b7f6575a5 100755 --- a/test/exact_soln/stokes_poiseuille_flow.sh +++ b/test/exact_soln/stokes_poiseuille_flow.sh @@ -5,7 +5,7 @@ set -e INPUT="${GRINS_TEST_INPUT_DIR}/stokes_poiseuille_flow_input.in" TESTDATA="./stokes_poiseuille_flow.xdr" -PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 2 -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 4" +PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 2 -sub_pc_type lu -sub_pc_factor_shift_type nonzero" # First run the case with grins ${LIBMESH_RUN:-} ${GRINS_BUILDSRC_DIR}/grins $INPUT $PETSC_OPTIONS diff --git a/test/regression/backward_facing_step.sh b/test/regression/backward_facing_step.sh index 41b9d8544..3c08099ee 100755 --- a/test/regression/backward_facing_step.sh +++ b/test/regression/backward_facing_step.sh @@ -4,6 +4,6 @@ PROG="${GRINS_TEST_DIR}/grins_flow_regression" INPUT="${GRINS_TEST_INPUT_DIR}/backward_facing_step.in ${GRINS_TEST_DATA_DIR}/backward_facing_step.xdr 1.0e-8" -PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 2 -sub_pc_factor_levels 4" +PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 2 -sub_pc_type lu -sub_pc_factor_shift_type nonzero" ${LIBMESH_RUN:-} $PROG $INPUT $PETSC_OPTIONS diff --git a/test/regression/penalty_poiseuille.sh b/test/regression/penalty_poiseuille.sh index 18137840b..ce7bbd601 100755 --- a/test/regression/penalty_poiseuille.sh +++ b/test/regression/penalty_poiseuille.sh @@ -5,6 +5,6 @@ PROG="${GRINS_TEST_DIR}/generic_solution_regression" INPUT="${GRINS_TEST_INPUT_DIR}/penalty_poiseuille.in" DATA="${GRINS_TEST_DATA_DIR}/penalty_poiseuille.xdr" -PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 2 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 4" +PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 2 -sub_pc_type lu -sub_pc_factor_shift_type nonzero" ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v p' norms='L2 H1' tol='1.0e-9' $PETSC_OPTIONS diff --git a/test/regression/penalty_poiseuille_stab.sh b/test/regression/penalty_poiseuille_stab.sh index eca875249..22f83b8c7 100755 --- a/test/regression/penalty_poiseuille_stab.sh +++ b/test/regression/penalty_poiseuille_stab.sh @@ -7,6 +7,6 @@ PROG="${GRINS_TEST_DIR}/generic_solution_regression" INPUT="${GRINS_TEST_INPUT_DIR}/penalty_poiseuille_stab.in" DATA="${GRINS_TEST_DATA_DIR}/penalty_poiseuille_stab.xdr" -PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_levels 10 -sub_pc_factor_shift_type nonzero" +PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type lu -sub_pc_factor_shift_type nonzero" ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v p' norms='L2 H1' tol='5.0e-8' $PETSC_OPTIONS diff --git a/test/regression/reacting_low_mach_antioch_cea_constant.sh b/test/regression/reacting_low_mach_antioch_cea_constant.sh index 2afedff60..d6cf948b1 100755 --- a/test/regression/reacting_low_mach_antioch_cea_constant.sh +++ b/test/regression/reacting_low_mach_antioch_cea_constant.sh @@ -6,7 +6,7 @@ INPUT="${GRINS_TEST_INPUT_DIR}/reacting_low_mach_antioch_cea_constant_regression DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_cea_constant_regression.xdr" # A MOAB preconditioner -PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" +PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type lu -sub_pc_factor_shift_type nonzero" if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS diff --git a/test/regression/reacting_low_mach_antioch_cea_constant_mole_fraction_input.sh b/test/regression/reacting_low_mach_antioch_cea_constant_mole_fraction_input.sh index 4c1bb7eb6..18f30aa85 100755 --- a/test/regression/reacting_low_mach_antioch_cea_constant_mole_fraction_input.sh +++ b/test/regression/reacting_low_mach_antioch_cea_constant_mole_fraction_input.sh @@ -8,7 +8,7 @@ INPUT="${GRINS_TEST_INPUT_DIR}/reacting_low_mach_antioch_cea_constant_mole_fract DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_cea_constant_regression.xdr" # A MOAB preconditioner -PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" +PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type lu -sub_pc_factor_shift_type nonzero" if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS diff --git a/test/regression/reacting_low_mach_antioch_kinetics_theory.sh b/test/regression/reacting_low_mach_antioch_kinetics_theory.sh index a62b52b09..fbaba87a6 100755 --- a/test/regression/reacting_low_mach_antioch_kinetics_theory.sh +++ b/test/regression/reacting_low_mach_antioch_kinetics_theory.sh @@ -5,8 +5,7 @@ PROG="${GRINS_TEST_DIR}/generic_solution_regression" INPUT="${GRINS_TEST_INPUT_DIR}/reacting_low_mach_antioch_kinetics_theory_regression.in" DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_kinetics_theory_regression.xdr" -# A MOAB preconditioner -PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_levels 10 -sub_pc_factor_shift nonzero" +PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type lu -sub_pc_factor_shift_type nonzero" if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS diff --git a/test/regression/reacting_low_mach_antioch_statmech_constant_prandtl.sh b/test/regression/reacting_low_mach_antioch_statmech_constant_prandtl.sh index a3bd75f2c..af844542f 100755 --- a/test/regression/reacting_low_mach_antioch_statmech_constant_prandtl.sh +++ b/test/regression/reacting_low_mach_antioch_statmech_constant_prandtl.sh @@ -5,8 +5,7 @@ PROG="${GRINS_TEST_DIR}/generic_solution_regression" INPUT="${GRINS_TEST_INPUT_DIR}/reacting_low_mach_antioch_statmech_constant_prandtl_regression.in" DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_statmech_constant_prandtl_regression.xdr" -# A MOAB preconditioner -PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" +PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type lu -sub_pc_factor_shift_type nonzero" if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS From 58bb8553752f356625938ad3f737ead540ca9058 Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 2 Jun 2016 12:15:19 -0400 Subject: [PATCH 13/18] Needed to soften up this test for GCC 6.1/PETSc 3.6.4 --- ...och_statmech_blottner_eucken_lewis_power_catalytic_wall.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_power_catalytic_wall.sh b/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_power_catalytic_wall.sh index 65c2268e8..f531d4887 100755 --- a/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_power_catalytic_wall.sh +++ b/test/regression/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_power_catalytic_wall.sh @@ -6,10 +6,10 @@ INPUT="${GRINS_TEST_INPUT_DIR}/reacting_low_mach_antioch_statmech_blottner_eucke DATA="${GRINS_TEST_DATA_DIR}/reacting_low_mach_antioch_statmech_blottner_eucken_lewis_power_catalytic_wall_regression.xdr" # A MOAB preconditioner -PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type ilu -sub_pc_factor_shift_type nonzero -sub_pc_factor_levels 10" +PETSC_OPTIONS="-pc_type asm -pc_asm_overlap 10 -sub_pc_type lu -sub_pc_factor_shift_type nonzero" if [ $GRINS_ANTIOCH_ENABLED == 1 ]; then - ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='1.5e-8' $PETSC_OPTIONS + ${LIBMESH_RUN:-} $PROG input=$INPUT soln-data=$DATA vars='u v T p w_N2 w_N' norms='L2 H1' tol='5e-8' $PETSC_OPTIONS else exit 77; fi From 59c1876f081e7cd1125ceee367ceb10981e97ad3 Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 2 Jun 2016 12:30:09 -0400 Subject: [PATCH 14/18] Add optional second argument for parallel loop test script This way we can restrict the TESTS that it runs when going through all the processor variations. --- test/run_tests_parallel_loop.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/test/run_tests_parallel_loop.sh b/test/run_tests_parallel_loop.sh index 68861e1dc..3814c3180 100755 --- a/test/run_tests_parallel_loop.sh +++ b/test/run_tests_parallel_loop.sh @@ -8,6 +8,13 @@ # error if neither is specified. Note that the -j argument to check is halved # each time and starts at the max. # +# An optional second argument is allowed. If second argument is present, +# then all tests are run each time. If you only want to run a subset of tests, +# then supply the argument TESTS="" (exactly +# as you supply to normal make check). For example, if we only wanted to run the +# following two tests for each pass, supply the following as the second argument: +# TESTS="regression/thermally_driven_2d_flow.sh regression/reacting_low_mach_antioch_statmech_constant.sh" +# # The output goes GRINS_TESTING_OUTPUT_FILE if it's set in the environment # or to parallel_loop_check_tests.log if it's not. A handy command for parsing # the output is: @@ -25,9 +32,13 @@ if [ -n $1 ]; then export GRINS_TESTING_MAX_N_PROCS_VALUE=$1 fi +if [ -n $2 ]; then + export GRINS_TESTING_TESTS_SUBSET=$2 +fi + for i in $(seq 1 ${GRINS_TESTING_MAX_N_PROCS_VALUE:?undefined}); \ do export LIBMESH_RUN="mpiexec -np $i"; \ j=$((${GRINS_TESTING_MAX_N_PROCS_VALUE:?undefined}/$i)); \ echo LIBMESH_RUN is $LIBMESH_RUN | tee -a ${GRINS_TESTING_OUTPUT_VALUE}; \ - make -j $j check 2>&1 | tee -a ${GRINS_TESTING_OUTPUT_VALUE}; \ + make -j $j $GRINS_TESTING_TESTS_SUBSET check 2>&1 | tee -a ${GRINS_TESTING_OUTPUT_VALUE}; \ done From e299fb4e0187a14afc8a7174a715edf6692c6821 Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 2 Jun 2016 14:52:52 -0400 Subject: [PATCH 15/18] Clean-up warnings with both Antioch and Cantera are disabled --- .../src/constant_function_dirichlet_bc_factory.C | 10 ++++++++++ ...bination_catalytic_wall_neumann_bc_factory_impl.C | 9 +++++++++ ...as_solid_catalytic_wall_neumann_bc_factory_impl.C | 9 +++++++++ ...bed_vector_value_dirichlet_old_style_bc_factory.C | 12 ++++++++++++ test/unit/antioch_mixture.C | 4 ++++ 5 files changed, 44 insertions(+) diff --git a/src/boundary_conditions/src/constant_function_dirichlet_bc_factory.C b/src/boundary_conditions/src/constant_function_dirichlet_bc_factory.C index 9a442da3a..ea66ae9eb 100644 --- a/src/boundary_conditions/src/constant_function_dirichlet_bc_factory.C +++ b/src/boundary_conditions/src/constant_function_dirichlet_bc_factory.C @@ -148,12 +148,22 @@ namespace GRINS } } + // To avoid compiler warnings without GRINS or Cantera +#if defined(GRINS_HAVE_ANTIOCH) || defined(GRINS_HAVE_CANTERA) void MoleFractionsDirichletBCFactory::add_found_vars( const GetPot& input, MultiphysicsSystem& /*system*/, const std::string& section, const std::set& vars_found, libMesh::CompositeFunction& composite_func, std::set& vars_added ) const +#else + void MoleFractionsDirichletBCFactory::add_found_vars( const GetPot& input, + MultiphysicsSystem& /*system*/, + const std::string& /*section*/, + const std::set& /*vars_found*/, + libMesh::CompositeFunction& /*composite_func*/, + std::set& /*vars_added*/ ) const +#endif { // This only makes sense for SpeciesMassFractionsFEVariables in the VariableWarehouse. // This call will error out if it's not there. diff --git a/src/boundary_conditions/src/gas_recombination_catalytic_wall_neumann_bc_factory_impl.C b/src/boundary_conditions/src/gas_recombination_catalytic_wall_neumann_bc_factory_impl.C index 666cb3fb6..5da2ad637 100644 --- a/src/boundary_conditions/src/gas_recombination_catalytic_wall_neumann_bc_factory_impl.C +++ b/src/boundary_conditions/src/gas_recombination_catalytic_wall_neumann_bc_factory_impl.C @@ -38,11 +38,20 @@ namespace GRINS { + // To avoid compiler warnings without GRINS or Cantera +#if defined(GRINS_HAVE_ANTIOCH) || defined(GRINS_HAVE_CANTERA) SharedPtr GasRecombinationCatalyticWallNeumannBCFactoryImpl::build_catalytic_wall ( const GetPot& input, const std::string& reaction,SharedPtr& gamma_ptr, const std::vector& species_vars,const std::string& material, VariableIndex T_var,libMesh::Real p0,const std::string& thermochem_lib ) +#else + SharedPtr + GasRecombinationCatalyticWallNeumannBCFactoryImpl::build_catalytic_wall + ( const GetPot& /*input*/, const std::string& reaction,SharedPtr& /*gamma_ptr*/, + const std::vector& /*species_vars*/,const std::string& /*material*/, + VariableIndex /*T_var*/,libMesh::Real /*p0*/,const std::string& thermochem_lib ) +#endif { std::string reactant; std::string product; diff --git a/src/boundary_conditions/src/gas_solid_catalytic_wall_neumann_bc_factory_impl.C b/src/boundary_conditions/src/gas_solid_catalytic_wall_neumann_bc_factory_impl.C index 910426bee..6201f75f9 100644 --- a/src/boundary_conditions/src/gas_solid_catalytic_wall_neumann_bc_factory_impl.C +++ b/src/boundary_conditions/src/gas_solid_catalytic_wall_neumann_bc_factory_impl.C @@ -38,11 +38,20 @@ namespace GRINS { + // To avoid compiler warnings without GRINS or Cantera +#if defined(GRINS_HAVE_ANTIOCH) || defined(GRINS_HAVE_CANTERA) SharedPtr GasSolidCatalyticWallNeumannBCFactoryImpl::build_catalytic_wall ( const GetPot& input, const std::string& reaction,SharedPtr& gamma_ptr, const std::vector& species_vars,const std::string& material, VariableIndex T_var,libMesh::Real p0,const std::string& thermochem_lib ) +#else + SharedPtr + GasSolidCatalyticWallNeumannBCFactoryImpl::build_catalytic_wall + ( const GetPot& /*input*/, const std::string& reaction,SharedPtr& /*gamma_ptr*/, + const std::vector& /*species_vars*/,const std::string& /*material*/, + VariableIndex /*T_var*/,libMesh::Real /*p0*/,const std::string& thermochem_lib ) +#endif { std::string gas_reactant; std::string solid_reactant; diff --git a/src/boundary_conditions/src/prescribed_vector_value_dirichlet_old_style_bc_factory.C b/src/boundary_conditions/src/prescribed_vector_value_dirichlet_old_style_bc_factory.C index 979ce8bfc..4c90dce3f 100644 --- a/src/boundary_conditions/src/prescribed_vector_value_dirichlet_old_style_bc_factory.C +++ b/src/boundary_conditions/src/prescribed_vector_value_dirichlet_old_style_bc_factory.C @@ -88,11 +88,20 @@ namespace GRINS } } + // To avoid compiler warnings without GRINS or Cantera +#if defined(GRINS_HAVE_ANTIOCH) || defined(GRINS_HAVE_CANTERA) void PrescribedMoleFractionsDirichletOldStyleBCFactory::add_funcs( const GetPot& input, MultiphysicsSystem& /*system*/, const std::string& input_string, const std::vector& var_names, libMesh::CompositeFunction& composite_func ) const +#else + void PrescribedMoleFractionsDirichletOldStyleBCFactory::add_funcs( const GetPot& input, + MultiphysicsSystem& /*system*/, + const std::string& input_string, + const std::vector& var_names, + libMesh::CompositeFunction& /*composite_func*/ ) const +#endif { const unsigned int n_vars = var_names.size(); @@ -116,11 +125,14 @@ namespace GRINS libmesh_error_msg("ERROR: Mole fractions do not sum to 1! Found sum = "+StringUtilities::T_to_string(sum)); + // To avoid compiler warnings without GRINS or Cantera +#if defined(GRINS_HAVE_ANTIOCH) || defined(GRINS_HAVE_CANTERA) // This only makes sense for SpeciesMassFractionsFEVariables in the // VariableWarehouse. This call will error out if it's not there. const SpeciesMassFractionsFEVariables& species_fe_var = GRINSPrivate::VariableWarehouse::get_variable_subclass (VariablesParsing::species_mass_fractions_section()); +#endif std::string thermochem_lib; PhysicsFactoryHelper::parse_thermochemistry_model( input, diff --git a/test/unit/antioch_mixture.C b/test/unit/antioch_mixture.C index 699c9f45e..961ed0f89 100644 --- a/test/unit/antioch_mixture.C +++ b/test/unit/antioch_mixture.C @@ -38,7 +38,11 @@ // libMesh #include "libmesh/getpot.h" +#ifdef GRINS_HAVE_ANTIOCH int main( int argc, char* argv[] ) +#else +int main() +#endif { #ifdef GRINS_HAVE_ANTIOCH // Check command line count. From cb13f1011dd8579e9e2c12754e73e8f5c8a69a0d Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 2 Jun 2016 15:14:37 -0400 Subject: [PATCH 16/18] Use SerialMesh only in periodic tests See https://github.com/libMesh/libmesh/issues/977 --- test/input_files/poisson_periodic_2d_x.in | 4 ++++ test/input_files/poisson_periodic_2d_y.in | 4 ++++ test/input_files/poisson_periodic_3d_xy.in | 4 ++++ test/input_files/poisson_periodic_3d_xz.in | 4 ++++ test/input_files/poisson_periodic_3d_yz.in | 4 ++++ 5 files changed, 20 insertions(+) diff --git a/test/input_files/poisson_periodic_2d_x.in b/test/input_files/poisson_periodic_2d_x.in index c1dff32cb..1d814a856 100644 --- a/test/input_files/poisson_periodic_2d_x.in +++ b/test/input_files/poisson_periodic_2d_x.in @@ -57,6 +57,10 @@ # Mesh related options [Mesh] + # This must be serial for periodic boundaries until libMesh/libmesh#977 is resolved + # https://github.com/libMesh/libmesh/issues/977 + class = 'serial' + [./Generation] dimension = '2' n_elems_x = '20' diff --git a/test/input_files/poisson_periodic_2d_y.in b/test/input_files/poisson_periodic_2d_y.in index 3e8cb3f02..26ae1620d 100644 --- a/test/input_files/poisson_periodic_2d_y.in +++ b/test/input_files/poisson_periodic_2d_y.in @@ -57,6 +57,10 @@ # Mesh related options [Mesh] + # This must be serial for periodic boundaries until libMesh/libmesh#977 is resolved + # https://github.com/libMesh/libmesh/issues/977 + class = 'serial' + [./Generation] dimension = '2' n_elems_x = '20' diff --git a/test/input_files/poisson_periodic_3d_xy.in b/test/input_files/poisson_periodic_3d_xy.in index 801667b05..820e3319d 100644 --- a/test/input_files/poisson_periodic_3d_xy.in +++ b/test/input_files/poisson_periodic_3d_xy.in @@ -65,6 +65,10 @@ # Mesh related options [Mesh] + # This must be serial for periodic boundaries until libMesh/libmesh#977 is resolved + # https://github.com/libMesh/libmesh/issues/977 + class = 'serial' + [./Generation] dimension = '3' n_elems_x = '10' diff --git a/test/input_files/poisson_periodic_3d_xz.in b/test/input_files/poisson_periodic_3d_xz.in index 322cd080d..3bcff3488 100644 --- a/test/input_files/poisson_periodic_3d_xz.in +++ b/test/input_files/poisson_periodic_3d_xz.in @@ -65,6 +65,10 @@ # Mesh related options [Mesh] + # This must be serial for periodic boundaries until libMesh/libmesh#977 is resolved + # https://github.com/libMesh/libmesh/issues/977 + class = 'serial' + [./Generation] dimension = '3' n_elems_x = '10' diff --git a/test/input_files/poisson_periodic_3d_yz.in b/test/input_files/poisson_periodic_3d_yz.in index 5b1599c4d..3f9cdc736 100644 --- a/test/input_files/poisson_periodic_3d_yz.in +++ b/test/input_files/poisson_periodic_3d_yz.in @@ -65,6 +65,10 @@ # Mesh related options [Mesh] + # This must be serial for periodic boundaries until libMesh/libmesh#977 is resolved + # https://github.com/libMesh/libmesh/issues/977 + class = 'serial' + [./Generation] dimension = '3' n_elems_x = '10' From 03b114681e62c77c043a6876703f8940fbd2579e Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 2 Jun 2016 15:22:26 -0400 Subject: [PATCH 17/18] Throw error for ParallelMesh+periodic boundary conditions --- src/boundary_conditions/src/default_bc_builder.C | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/boundary_conditions/src/default_bc_builder.C b/src/boundary_conditions/src/default_bc_builder.C index 345b7f410..79a4dea51 100644 --- a/src/boundary_conditions/src/default_bc_builder.C +++ b/src/boundary_conditions/src/default_bc_builder.C @@ -37,6 +37,7 @@ #include "libmesh/getpot.h" #include "libmesh/mesh_base.h" #include "libmesh/boundary_info.h" +#include "libmesh/parallel_mesh.h" namespace GRINS { @@ -377,6 +378,20 @@ namespace GRINS const std::set& bc_ids, const std::string& section ) { + // Make sure we're not using a ParallelMesh + // https://github.com/libMesh/libmesh/issues/977 + const libMesh::MeshBase& mesh = system.get_mesh(); + const libMesh::ParallelMesh* pmesh = dynamic_cast(&mesh); + if(pmesh) + { + std::stringstream error_msg; + error_msg << "ERROR: Cannot use ParallelMesh with periodic boundary conditions!" + << std::endl + << " See https://github.com/libMesh/libmesh/issues/977 for discussion." + << std::endl; + libmesh_error_msg(error_msg.str()); + } + libMesh::boundary_id_type invalid_bid = std::numeric_limits::max(); From 59ad051f3b4e0e2063719f6372c0116288c4a803 Mon Sep 17 00:00:00 2001 From: "Paul T. Bauman" Date: Thu, 2 Jun 2016 15:34:31 -0400 Subject: [PATCH 18/18] Add accessors for neumann bcs in MultiphysicsSystem --- src/physics/include/grins/multiphysics_sys.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/physics/include/grins/multiphysics_sys.h b/src/physics/include/grins/multiphysics_sys.h index d3386b5c7..4302608b0 100644 --- a/src/physics/include/grins/multiphysics_sys.h +++ b/src/physics/include/grins/multiphysics_sys.h @@ -176,6 +176,12 @@ namespace GRINS const libMesh::Point& point, libMesh::Real& value ); + std::vector >& get_neumann_bcs() + { return _neumann_bcs; } + + const std::vector >& get_neumann_bcs() const + { return _neumann_bcs; } + #ifdef GRINS_USE_GRVY_TIMERS //! Add GRVY Timer object to system for timing physics. void attach_grvy_timer( GRVY::GRVY_Timer_Class* grvy_timer );