diff --git a/CHANGES b/CHANGES index 5ed355069..2e13de473 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,26 @@ -Version 0.8.0 (in progress) +Version 0.8.0 + * Minimum libMesh git hash for this release is: 8be0a4e + * Substantial internal refactoring of Variables handling + * Updated parsing of Variables + * Now support subdomain-restricted variables; includes conjugate + heat transfer example illustrating usage + * Add SPGSM stabilization Physics for reacting low Mach Navier-Stokes + Include Ozone flame example illustrating usage + * Add RayfireMesh class + * New constraint functionality to supply simple constraints on variables + from input file + * Can now override input file options from the command line + * Added GRINS::Runner and initializer classes to simplify construction + of standalone GRINS-based programs + * Removed GRVY + * Moved CachedValues interface to Physics + * Refactor Antioch interface to increase Antioch thermo, transport + feature usage + * New QoIs include: + - IntegratedFunction + - SpectroscopicAbsorption + - Specialization of IntegratedFunction. Uses new HITRAN + data structures Version 0.7.0 * Complete refactoring of material property parsing. Old diff --git a/LICENSE b/LICENSE index fdb85cb47..909de716b 100644 --- a/LICENSE +++ b/LICENSE @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 963dd2ffa..f4330a174 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 dd388b7a3..28c2e8c22 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 795ad35b1..ed983ab21 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 47b59c2c0..787dbd596 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 c755448a9..08225d83f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 600d3e54a..ddf2e2c0d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 c1f85c927..811d77029 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7ee11ce71..bc17012b1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0df93b8b7..f315cfcc3 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 33f28e2bf..0226991ce 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e19c76e33..3390cd1b5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/grins.C b/src/apps/grins.C index 7cf91d563..0e1b71128 100644 --- a/src/apps/grins.C +++ b/src/apps/grins.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 a369a8099..b30373aaf 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 1ae11001e..138d0b749 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 3ef9e453c..3bf50f688 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_factory_initializer.h b/src/boundary_conditions/include/grins/boundary_condition_factory_initializer.h index 90b1c0a0d..956f3a96c 100644 --- a/src/boundary_conditions/include/grins/boundary_condition_factory_initializer.h +++ b/src/boundary_conditions/include/grins/boundary_condition_factory_initializer.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 77c797575..d85239f10 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5b47c5d96..7311ca69e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 52f8d5113..bb348b4b0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e5b2c6373..b81414d08 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 347e4ae6f..0a76eca6e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d6542fee5..43eef0c1e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 51752e706..65034315d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -83,7 +83,7 @@ namespace GRINS libMesh::Real domega_dot_dT( const libMesh::Real rho_s, const libMesh::Real T ) const; void set_catalycity_params( const std::vector& params ); - + virtual void register_parameter( const std::string & param_name, libMesh::ParameterMultiAccessor< libMesh::Number > & param_pointer) const; 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 4e8353468..7bc87e976 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f90f5c405..b8c471cf0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d00b2cad9..fba1a7f33 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 2a294ee9f..c0219909a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 fb7037aec..ec41dde2f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7b1c7581b..48a35a35d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6a3965029..3ac72479f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7984e9527..d6b73df1b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 eccb75042..49dfa66b5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ef4df38f4..d6fc64f90 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 2c4464f18..357fa2697 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6a6190049..9e8b62729 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 651f586db..15897a3b9 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9e41c37f2..b964fb6df 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 b7b7b475f..83327082a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ad77e799c..b0ab929ca 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8b03cc947..69efe8cc4 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ceb3e889c..0ca87b7fa 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 4905d2598..a9d710e13 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -42,7 +42,7 @@ namespace GRINS public: NeumannBCAbstract() - : ParameterUser("NeumannBCAbstract") + : ParameterUser("NeumannBCAbstract") {} virtual ~NeumannBCAbstract(){}; diff --git a/src/boundary_conditions/include/grins/neumann_bc_container.h b/src/boundary_conditions/include/grins/neumann_bc_container.h index f05a6a920..1fcc91470 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 3c7a2ff94..b4ba27d1e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 800f6ab84..ea9c8b9ef 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ba7118d92..75eecdd04 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0d157d1d6..39e56bb81 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0f903142b..96244c3f0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8f43c7730..11dafed25 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 cf3853946..ef78d6988 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7e855b38a..490184e6b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5f4ceeac8..c740934b9 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0278c2fd5..226fd442f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 876fc0ed0..b5141b41a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 b8f36bac7..b2a85121d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 cf0195805..d206e24da 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 87aa814c4..5e7c8ff8a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 3be757069..0eb4d8668 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 dda0a54f2..c07b7222d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8de3fe95a..23d7656e5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 2bc9ad76f..62a22cd04 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/boundary_condition_factory_initializer.C b/src/boundary_conditions/src/boundary_condition_factory_initializer.C index 184d273a1..2f70ef5c3 100644 --- a/src/boundary_conditions/src/boundary_condition_factory_initializer.C +++ b/src/boundary_conditions/src/boundary_condition_factory_initializer.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d31b8a40a..e3c9d2c66 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -29,7 +29,7 @@ namespace GRINS { CatalycityBase::CatalycityBase() - : ParameterUser("CatalycityBase") + : ParameterUser("CatalycityBase") { return; } diff --git a/src/boundary_conditions/src/catalycity_factory_abstract.C b/src/boundary_conditions/src/catalycity_factory_abstract.C index 2b36a8b47..038b8d4f5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 318fee718..a159571b9 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5a5084f79..91b795ab4 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 a59ca49e8..387e91ffd 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ebf0444b3..f46ae4ef7 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 738a5c320..67a190ce0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 91375bd22..39aa7e890 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 358e6b884..6300871d7 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 2b97875e5..d7421dfea 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 65ed41a78..9c05b8d79 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 fb9fffb0d..2b42e6a21 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 b80c6b9d9..b82838044 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 cb529ed5f..953014267 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 68190d9ec..338a1d78e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 67757a83a..bae0719d4 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 891e7f308..d67e86f4d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6c7c571ff..cc0677445 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 254c305ff..d5239f073 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d0f01229c..aed55397b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 61d023d1c..4c97231e5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 134829ecc..2dd3c9eb5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 26162e276..135ca2e0a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ceed34515..d4bf5c28d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9fb15d045..f822bb25c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 3ec3d8d74..dec4cbf31 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 875eb5510..79d1b4a1b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 363891cd0..d3df1dca5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8d965c326..92618cea4 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e05b6a84b..78e726562 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/builder_helper.h b/src/common/include/grins/builder_helper.h index cc1814272..5fb413223 100644 --- a/src/common/include/grins/builder_helper.h +++ b/src/common/include/grins/builder_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0e17d9afb..e5562e3b5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_abstract.h b/src/common/include/grins/factory_abstract.h index a9f3ded5b..e10b3c07e 100644 --- a/src/common/include/grins/factory_abstract.h +++ b/src/common/include/grins/factory_abstract.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 29c1ac975..4de544b60 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ad55688be..63c8244a0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/src/builder_helper.C b/src/common/src/builder_helper.C index 273173f29..d64b6277e 100644 --- a/src/common/src/builder_helper.C +++ b/src/common/src/builder_helper.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/constraints/include/grins/constrained_points.h b/src/constraints/include/grins/constrained_points.h index 516b92d6d..e02a59d58 100644 --- a/src/constraints/include/grins/constrained_points.h +++ b/src/constraints/include/grins/constrained_points.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/constraints/include/grins/constraint_builder.h b/src/constraints/include/grins/constraint_builder.h index c6555dee2..617311c3f 100644 --- a/src/constraints/include/grins/constraint_builder.h +++ b/src/constraints/include/grins/constraint_builder.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/constraints/src/constrained_points.C b/src/constraints/src/constrained_points.C index 662d63e53..8708d70df 100644 --- a/src/constraints/src/constrained_points.C +++ b/src/constraints/src/constrained_points.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or diff --git a/src/constraints/src/constraint_builder.C b/src/constraints/src/constraint_builder.C index 455cb74ff..bc316e2d4 100644 --- a/src/constraints/src/constraint_builder.C +++ b/src/constraints/src/constraint_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 b9832e744..e4bf4395c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 648063b28..170db90e5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6d950753e..36e1d1d2b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 3b3dbafa7..e8c27a59f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f95758b26..e8166e790 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -29,45 +29,45 @@ #ifdef GRINS_HAVE_ANTIOCH -#define INSTANTIATE_ANTIOCH_TRANSPORT_RAW(class_name,curve_fit) \ - template class GRINS::class_name, \ Antioch::SutherlandViscosity, \ Antioch::EuckenThermalConductivity >, \ Antioch::ConstantLewisDiffusivity >; \ - template class GRINS::class_name, \ Antioch::BlottnerViscosity, \ Antioch::EuckenThermalConductivity >, \ Antioch::ConstantLewisDiffusivity >; \ - template class GRINS::class_name, libMesh::Real>, \ Antioch::SutherlandViscosity, \ Antioch::EuckenThermalConductivity, libMesh::Real> >, \ Antioch::ConstantLewisDiffusivity >; \ - template class GRINS::class_name, libMesh::Real>, \ Antioch::BlottnerViscosity, \ Antioch::EuckenThermalConductivity, libMesh::Real> >, \ Antioch::ConstantLewisDiffusivity > -#define INSTANTIATE_ANTIOCH_TRANSPORT(class_name) \ +#define INSTANTIATE_ANTIOCH_TRANSPORT(class_name) \ INSTANTIATE_ANTIOCH_TRANSPORT_RAW(class_name,Antioch::CEACurveFit) #ifdef ANTIOCH_HAVE_GSL #define INSTANTIATE_ANTIOCH_KINETICS_THEORY_TRANSPORT_RAW(class_name,curve_fit) \ - template class GRINS::class_name, \ Antioch::KineticsTheoryViscosity, \ Antioch::KineticsTheoryThermalConductivity,libMesh::Real>, \ Antioch::MolecularBinaryDiffusion >; \ - template class GRINS::class_name, libMesh::Real>, \ Antioch::KineticsTheoryViscosity, \ Antioch::KineticsTheoryThermalConductivity >,libMesh::Real>, \ Antioch::MolecularBinaryDiffusion > -#define INSTANTIATE_ANTIOCH_KINETICS_THEORY_TRANSPORT(class_name) \ +#define INSTANTIATE_ANTIOCH_KINETICS_THEORY_TRANSPORT(class_name) \ INSTANTIATE_ANTIOCH_KINETICS_THEORY_TRANSPORT_RAW(class_name,Antioch::CEACurveFit) #endif // ANTIOCH_HAVE_GSL diff --git a/src/physics/include/grins/assembly_context.h b/src/physics/include/grins/assembly_context.h index 6bf7b51e3..5d283c4e5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f59cfa1e3..de6a54b8a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e5a60c635..d9b7b8255 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9dc9ea78f..4d99ac21f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e057abda4..b18f45a50 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9e848c236..f15774b24 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5ea8535d2..c48f99fc4 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9b8cb1173..e3188664b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e2ac957be..0935f2aed 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 896c05eee..92df81812 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 4af8928c8..55c600183 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 109395470..39c46fd0b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 fe5faf05a..8955f643e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d53d4c12e..95b823d70 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 996795d70..9a857c8bc 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 4bdfa64b3..27b897d60 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 453fe963c..fbb263809 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 06b682b55..9eee9f3e9 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6352a7634..db9cc5e6a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c648339d2..d54a7b76f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 1fb40245b..ced35fee0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0e45a6210..a12a3b3d8 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0c78409b5..dac27657e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 54dbc070c..072e6eefd 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 00ee0fc74..16f6992cc 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 b48c89a50..2cd300fab 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6b8b4889b..d4b87a3b1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e773a639f..35452e68e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8774f9ffd..c9dea5858 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5132f0c08..80a0fabed 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f6526e072..374bed3a5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ee0713384..539325962 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5a969a3b2..9da910cfb 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d19638b1a..69cf71313 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 1916b6257..20e1b38d0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 35a1580a1..f188ac90a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 09018ead8..1b9cb73b1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c129ed56c..9c9998e11 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f172872d3..80fde0283 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6901c4317..d0fc04b67 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 205231edf..a01812977 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 a8a57cd38..bf4761097 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 841a9e57f..bf053fb2e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0f479f204..57be2959c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 3b8a01ad8..e18f8f1d1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 deccc9282..09e0e1c31 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 461d379a6..5bc245ed9 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 1e731c0b3..d69183431 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0bb1a0564..dbdb77943 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 989abd85c..588db03f2 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 b29df3291..50ea4a766 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 fbc75ec80..b0d5431cf 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d619d766e..df2847012 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 19ba48e36..17833c4df 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6f10ba564..01e6b8e12 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 a280a420a..45d33f431 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 79fd9469f..c712a9a3b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_initializer.h b/src/physics/include/grins/physics_factory_initializer.h index 8f8813165..295969009 100644 --- a/src/physics/include/grins/physics_factory_initializer.h +++ b/src/physics/include/grins/physics_factory_initializer.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 4c1407299..c11522557 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 644124d0f..bc0ad8289 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8b6755257..a00f677fe 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -83,39 +83,39 @@ namespace GRINS if( (diffusivity_model == AntiochOptions::constant_lewis_diffusivity_model()) && (conductivity_model == AntiochOptions::eucken_conductivity_model()) && (viscosity_model == AntiochOptions::sutherland_viscosity_model()) ) - { - this->build_mix_avged_physics_ptr, - Antioch::EuckenThermalConductivity, - Antioch::ConstantLewisDiffusivity >(input,physics_name,material,new_physics); - } - else if( (diffusivity_model == AntiochOptions::constant_lewis_diffusivity_model()) && - (conductivity_model == AntiochOptions::eucken_conductivity_model()) && - (viscosity_model == AntiochOptions::blottner_viscosity_model()) ) - { - this->build_mix_avged_physics_ptr, - Antioch::EuckenThermalConductivity, - Antioch::ConstantLewisDiffusivity >(input,physics_name,material,new_physics); - } - else if( (diffusivity_model == AntiochOptions::kinetic_theory_diffusivity_model()) && - (conductivity_model == AntiochOptions::kinetic_theory_conductivity_model()) && - (viscosity_model == AntiochOptions::kinetic_theory_viscosity_model()) ) - { + { + this->build_mix_avged_physics_ptr, + Antioch::EuckenThermalConductivity, + Antioch::ConstantLewisDiffusivity >(input,physics_name,material,new_physics); + } + else if( (diffusivity_model == AntiochOptions::constant_lewis_diffusivity_model()) && + (conductivity_model == AntiochOptions::eucken_conductivity_model()) && + (viscosity_model == AntiochOptions::blottner_viscosity_model()) ) + { + this->build_mix_avged_physics_ptr, + Antioch::EuckenThermalConductivity, + Antioch::ConstantLewisDiffusivity >(input,physics_name,material,new_physics); + } + else if( (diffusivity_model == AntiochOptions::kinetic_theory_diffusivity_model()) && + (conductivity_model == AntiochOptions::kinetic_theory_conductivity_model()) && + (viscosity_model == AntiochOptions::kinetic_theory_viscosity_model()) ) + { #ifdef ANTIOCH_HAVE_GSL - this->build_mix_avged_physics_ptr, - Antioch::KineticsTheoryThermalConductivity, - Antioch::MolecularBinaryDiffusion >(input,physics_name,material,new_physics); + this->build_mix_avged_physics_ptr, + Antioch::KineticsTheoryThermalConductivity, + Antioch::MolecularBinaryDiffusion >(input,physics_name,material,new_physics); #else - libmesh_error_msg("ERROR: Antioch requires GSL in order to use kinetics theory based models!"); + libmesh_error_msg("ERROR: Antioch requires GSL in order to use kinetics theory based models!"); #endif // ANTIOCH_HAVE_GSL - } - else - this->grins_antioch_model_error_msg(viscosity_model,conductivity_model,diffusivity_model); + } + else + this->grins_antioch_model_error_msg(viscosity_model,conductivity_model,diffusivity_model); } template @@ -153,7 +153,7 @@ namespace GRINS gas_mixture = mix_builder.build_mixture(input,material); new_physics.reset(new DerivedPhysics, - AntiochMixtureAveragedTransportEvaluator > + AntiochMixtureAveragedTransportEvaluator > (physics_name,input,gas_mixture) ); } @@ -167,7 +167,7 @@ namespace GRINS gas_mixture = mix_builder.build_mixture(input,material); new_physics.reset(new DerivedPhysics, - AntiochConstantTransportEvaluator > + AntiochConstantTransportEvaluator > (physics_name,input,gas_mixture) ); } #endif // GRINS_HAVE_ANTIOCH 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 4d1a87270..7ebd5a974 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 45f4ed20f..2f6f87c1e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0632cc90e..b65f22868 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 eff679128..7a3324dd6 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8e8ae7e37..48ab60e68 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -78,7 +78,7 @@ namespace GRINS PressureFEVariable& _press_var; PrimitiveTempFEVariables& _temp_vars; - SpeciesMassFractionsVariable& _species_vars; + SpeciesMassFractionsVariable& _species_vars; /*! \todo When we mandate C++11, switch this to a SharedPtr. Then, in the VariableWarhouse, we can use dynamic_pointer_cast to get a SharedPtr. */ 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 cd06e88f1..621b2a04f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_macro.h b/src/physics/include/grins/reacting_low_mach_navier_stokes_macro.h index 72902ef08..93c398681 100644 --- a/src/physics/include/grins/reacting_low_mach_navier_stokes_macro.h +++ b/src/physics/include/grins/reacting_low_mach_navier_stokes_macro.h @@ -34,11 +34,11 @@ namespace GRINSPrivate GRINS::AntiochConstantTransportEvaluator > #define INSTANTIATE_REACTING_LOW_MACH_SUBCLASS_CONSTANT_MIXTURE_AND_CONSTANT_EVALUATOR_CURVEFIT_THERMO_RAW(class_name,conductivity) \ - INSTANTIATE_REACTING_LOW_MACH_SUBCLASS_CONSTANT_MIXTURE_AND_CONSTANT_EVALUATOR_RAW(class_name,Antioch::CEACurveFit,conductivity,Antioch::StatMechThermodynamics);\ + INSTANTIATE_REACTING_LOW_MACH_SUBCLASS_CONSTANT_MIXTURE_AND_CONSTANT_EVALUATOR_RAW(class_name,Antioch::CEACurveFit,conductivity,Antioch::StatMechThermodynamics); \ INSTANTIATE_REACTING_LOW_MACH_SUBCLASS_CONSTANT_MIXTURE_AND_CONSTANT_EVALUATOR_RAW(class_name,Antioch::CEACurveFit,conductivity,GRINSPrivate::CEAIdealGasThermo) #define INSTANTIATE_REACTING_LOW_MACH_SUBCLASS_CONSTANT_MIXTURE_AND_CONSTANT_EVALUATOR(class_name) \ - INSTANTIATE_REACTING_LOW_MACH_SUBCLASS_CONSTANT_MIXTURE_AND_CONSTANT_EVALUATOR_CURVEFIT_THERMO_RAW(class_name,ConstantConductivity);\ + INSTANTIATE_REACTING_LOW_MACH_SUBCLASS_CONSTANT_MIXTURE_AND_CONSTANT_EVALUATOR_CURVEFIT_THERMO_RAW(class_name,ConstantConductivity); \ INSTANTIATE_REACTING_LOW_MACH_SUBCLASS_CONSTANT_MIXTURE_AND_CONSTANT_EVALUATOR_CURVEFIT_THERMO_RAW(class_name,ConstantPrandtlConductivity) diff --git a/src/physics/include/grins/reacting_low_mach_navier_stokes_spgsm_stab.h b/src/physics/include/grins/reacting_low_mach_navier_stokes_spgsm_stab.h index b61d491f0..59e8a4e6c 100644 --- a/src/physics/include/grins/reacting_low_mach_navier_stokes_spgsm_stab.h +++ b/src/physics/include/grins/reacting_low_mach_navier_stokes_spgsm_stab.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_stab_base.h b/src/physics/include/grins/reacting_low_mach_navier_stokes_stab_base.h index cc7538c39..c2420bfc3 100644 --- a/src/physics/include/grins/reacting_low_mach_navier_stokes_stab_base.h +++ b/src/physics/include/grins/reacting_low_mach_navier_stokes_stab_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_stab_helper.h b/src/physics/include/grins/reacting_low_mach_navier_stokes_stab_helper.h index 7da9ed1d1..5d10621a7 100644 --- a/src/physics/include/grins/reacting_low_mach_navier_stokes_stab_helper.h +++ b/src/physics/include/grins/reacting_low_mach_navier_stokes_stab_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8e1ce70f6..781030e23 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 bd992c3c4..128ad559e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c233f1feb..94bfca8c8 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6cad2879b..a3ab862d7 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 bf4016b40..2ecc8baf2 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 1f10d8b81..a4129ba5f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ac6fb28c8..8660a2660 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c762b5840..a22579464 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5f213f232..ab3dec753 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 188f9b810..a143f242a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 891ad27f2..29d0c8e95 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6132824aa..071735150 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f6790385d..f265e17cf 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/variable_pinning.h b/src/physics/include/grins/variable_pinning.h index 18fa1a160..7f85a6d47 100644 --- a/src/physics/include/grins/variable_pinning.h +++ b/src/physics/include/grins/variable_pinning.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 a2c96bd53..a7f4d4110 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7e51c3572..ad0916b8d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 b106953b7..6349baede 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ed36e3149..6089a5ea4 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 25c9e401a..f398031bc 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7f608b7bb..f93eaa6d1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 09320bebd..247122767 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 2c2a96e74..eca5180ed 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 569369f86..0ec68ff5a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5e19ff841..074606d91 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 3c3ca5ac8..ea744219a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0f7c783ea..7f7776bda 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 888cde239..8ae06aa0f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0a25aabb8..13634763a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 551ee0efe..6f41364ac 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 28a352c16..d31f92c98 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c3aa479d6..9c73efb43 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 2f90afa86..21dabbb06 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0c8a64d01..9da874a5c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 155b57792..8fb586240 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ca2e939a4..16c2acf4e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f9ecb5ec7..24036632e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c201bcaad..4ea56421f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 98c494728..8b0f21683 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0ef7147f2..a74f3fcb4 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 63f03a72c..75729c98d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 dc3b819f6..309f83ae9 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 adf890408..1448f721f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 794247838..15b0969da 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e124ea6fc..9c269df2d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 51f211bda..c2814bdb8 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5ba79b91a..f32fa28f3 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 93e731dae..20c70d9bc 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 07585a638..e2d0a54f7 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c9671f45f..7c65990f7 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c72fa1a15..aa8ca45a2 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 99cb4f95c..ba6240eb1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 049516791..621936d15 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7db6da605..124ab91eb 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 bd785efd5..b7f99aa36 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8affda430..e0e86ed55 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 bc602a7c9..50fccc9ac 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 bf77d5b45..b41353697 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 1bb4b092f..eb20cd3b3 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 af5a52913..293678189 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 a4cf10ff0..93e0b7d8b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 70cd1a2c8..43c3d6aa3 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 596e1917d..fa595daa0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8fb8a1f42..1d5b8ac35 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e2d114a48..bd0f8ec52 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 dc0bad1d9..00e75d50b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 50a44814a..81b1a372c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c9966b852..7aa4335c5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 b39329043..16ecf9ecf 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 4555720cf..719b2a782 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0ec24649b..6f5228d60 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 906776384..34aec1fce 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 bd61fda2c..2d167e276 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 300d3223f..7c59d4de1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9414ee320..feea2bfb3 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_initializer.C b/src/physics/src/physics_factory_initializer.C index b139d4d74..093648712 100644 --- a/src/physics/src/physics_factory_initializer.C +++ b/src/physics/src/physics_factory_initializer.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_reacting_flows.C b/src/physics/src/physics_factory_reacting_flows.C index 2169204b0..51c9582c3 100644 --- a/src/physics/src/physics_factory_reacting_flows.C +++ b/src/physics/src/physics_factory_reacting_flows.C @@ -167,7 +167,7 @@ namespace GRINS this->build_const_physics_with_thermo, Antioch::IdealGasMicroThermo > > > (input,physics_name,material,conductivity_model,new_physics); - } + } else this->grins_antioch_model_error_msg(viscosity_model,conductivity_model,diffusivity_model); } diff --git a/src/physics/src/physics_factory_with_core.C b/src/physics/src/physics_factory_with_core.C index 4fad4cebf..c59d8b644 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8b952bfc0..ccb7204f6 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 2f9ce4699..ff2cd3eb3 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d24b602e9..78b317bd1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 597c0d7a4..7443fc795 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_spgsm_stab.C b/src/physics/src/reacting_low_mach_navier_stokes_spgsm_stab.C index 87840d200..a8db6e292 100644 --- a/src/physics/src/reacting_low_mach_navier_stokes_spgsm_stab.C +++ b/src/physics/src/reacting_low_mach_navier_stokes_spgsm_stab.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_stab_base.C b/src/physics/src/reacting_low_mach_navier_stokes_stab_base.C index 7dac5bd8b..166ca3999 100644 --- a/src/physics/src/reacting_low_mach_navier_stokes_stab_base.C +++ b/src/physics/src/reacting_low_mach_navier_stokes_stab_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c7fed2809..1398dcc07 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 28dd942b3..9f2fdb694 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7c089bc31..5720cda88 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 790203d41..8ce8bc4dc 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8ac0a27f0..5fd3f3d5e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 719b34cc5..2e202920b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 79a6a8cd8..b04c96b46 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 751fe641a..29e4f7aab 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 151b616f3..0de8cab2b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 170973218..1e991562c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 72c619163..3e2eb65c7 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 2cc9046b1..d7ead2bae 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/variable_pinning.C b/src/physics/src/variable_pinning.C index d2aebe0c7..124b87f5d 100644 --- a/src/physics/src/variable_pinning.C +++ b/src/physics/src/variable_pinning.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 4135f159f..560a5b729 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5819c5d30..80f85a6fe 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 2a76dab71..47dce6fb6 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 a4ef84f1c..56ee31a54 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 43979ec48..7903fd069 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 79c6047d4..a864201e6 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 1735c0402..c9a7d4870 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ae956c702..d6c048d39 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -49,7 +49,7 @@ namespace GRINS By default, Antioch is working in SI units. Note that this documentation will always be built regardless if Antioch is included in the GRINS build or not. Check configure output to confirm that Antioch was included in the build. - */ + */ template class AntiochConstantTransportEvaluator : public AntiochEvaluator { diff --git a/src/properties/include/grins/antioch_constant_transport_mixture.h b/src/properties/include/grins/antioch_constant_transport_mixture.h index 8400515d2..e3c0d5e1a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -53,7 +53,7 @@ namespace GRINS By default, Antioch is working in SI units. Note that this documentation will always be built regardless if Antioch is included in the GRINS build or not. Check configure output to confirm that Antioch was included in the build. - */ + */ template class AntiochConstantTransportMixture : public AntiochMixture { diff --git a/src/properties/include/grins/antioch_constant_transport_mixture_builder.h b/src/properties/include/grins/antioch_constant_transport_mixture_builder.h index 2d87f04ce..7e04feb37 100644 --- a/src/properties/include/grins/antioch_constant_transport_mixture_builder.h +++ b/src/properties/include/grins/antioch_constant_transport_mixture_builder.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 62a8d06b5..e07b6cfa1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -51,7 +51,7 @@ namespace GRINS By default, Antioch is working in SI units. Note that this documentation will always be built regardless if Antioch is included in the GRINS build or not. Check configure output to confirm that Antioch was included in the build. - */ + */ template class AntiochEvaluator { diff --git a/src/properties/include/grins/antioch_kinetics.h b/src/properties/include/grins/antioch_kinetics.h index 2daea2286..33e844977 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -54,7 +54,7 @@ namespace GRINS By default, Antioch is working in SI units. Note that this documentation will always be built regardless if Antioch is included in the GRINS build or not. Check configure output to confirm that Antioch was included in the build. - */ + */ template class AntiochKinetics { diff --git a/src/properties/include/grins/antioch_mixture.h b/src/properties/include/grins/antioch_mixture.h index 50086c27e..472d4f4a8 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -61,7 +61,7 @@ namespace GRINS By default, Antioch is working in SI units. Note that this documentation will always be built regardless if Antioch is included in the GRINS build or not. Check configure output to confirm that Antioch was included in the build. - */ + */ template class AntiochMixture : public AntiochChemistry { @@ -73,7 +73,7 @@ namespace GRINS //! Constructor with user-built objects /*! This constructor expects the user to pass in a ChemicalMixture, ReactionSet, and NASAThermoMixture - object already built; this class will take ownership of the pointer. */ + object already built; this class will take ownership of the pointer. */ AntiochMixture( libMesh::UniquePtr > & chem_mixture, libMesh::UniquePtr > & reaction_set, libMesh::UniquePtr > & nasa_mixture, 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 9ef42e527..ce544eebe 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -49,7 +49,7 @@ namespace GRINS By default, Antioch is working in SI units. Note that this documentation will always be built regardless if Antioch is included in the GRINS build or not. Check configure output to confirm that Antioch was included in the build. - */ + */ template class AntiochMixtureAveragedTransportEvaluator : public AntiochEvaluator,Thermo> { 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 45bf70076..8a2ff383f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_builder.h b/src/properties/include/grins/antioch_mixture_averaged_transport_mixture_builder.h index 3c8091cfb..ce9edd7a0 100644 --- a/src/properties/include/grins/antioch_mixture_averaged_transport_mixture_builder.h +++ b/src/properties/include/grins/antioch_mixture_averaged_transport_mixture_builder.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_builder_base.h b/src/properties/include/grins/antioch_mixture_builder_base.h index a7a2d5658..2fd51c513 100644 --- a/src/properties/include/grins/antioch_mixture_builder_base.h +++ b/src/properties/include/grins/antioch_mixture_builder_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -57,8 +57,8 @@ namespace GRINS { //! Base class building Antioch mixture wrappers /*! This class only worries about building the kinetics - and the thermo associated with kinetics. Subclasses - will handle thermo and transport. */ + and the thermo associated with kinetics. Subclasses + will handle thermo and transport. */ class AntiochMixtureBuilderBase { public: diff --git a/src/properties/include/grins/antioch_options_naming.h b/src/properties/include/grins/antioch_options_naming.h index 639a8db34..bcbcf2a2d 100644 --- a/src/properties/include/grins/antioch_options_naming.h +++ b/src/properties/include/grins/antioch_options_naming.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_thermo_curve_fit_instantiation_macro.h b/src/properties/include/grins/antioch_thermo_curve_fit_instantiation_macro.h index 68085b990..e9384b393 100644 --- a/src/properties/include/grins/antioch_thermo_curve_fit_instantiation_macro.h +++ b/src/properties/include/grins/antioch_thermo_curve_fit_instantiation_macro.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -29,7 +29,7 @@ #ifdef GRINS_HAVE_ANTIOCH -#define INSTANTIATE_ANTIOCH_THERMO_CURVE_FIT(class_name) \ +#define INSTANTIATE_ANTIOCH_THERMO_CURVE_FIT(class_name) \ template class GRINS::class_name >; \ template class GRINS::class_name >; \ template class GRINS::class_name > diff --git a/src/properties/include/grins/cantera_evaluator.h b/src/properties/include/grins/cantera_evaluator.h index 3c3a7b2b8..0e038d079 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e0aae4712..19a6166c1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ddd87fd4d..e30ca1f81 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 531b394ec..3ed78863b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 66bf0b2f9..13a6d4851 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/chemistry_builder.h b/src/properties/include/grins/chemistry_builder.h index 49ec0a6a5..4dbae7dc2 100644 --- a/src/properties/include/grins/chemistry_builder.h +++ b/src/properties/include/grins/chemistry_builder.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9461ab40e..3af5798d0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c2e079115..e1c411a84 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 789ad8355..ff6046b1c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 76ea290f5..fa5f2dfd5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 aab1a228e..5e5655d94 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 16b33605d..0fe333951 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5efc656b5..f417320e1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 aa7ce3ebe..c6f046881 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0775ebebd..330b9f4d5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9d97dc9a6..aa5142f55 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5927ab1c8..8b576ff02 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d7f66a62a..03521faa8 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e51ac4eda..3f2b22b68 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 36c0cc2df..be312729b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 a57a57289..d22b29737 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9b587cb64..db5adc666 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 b93b93548..7096e7d76 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9d7f71066..732e5a92a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9fe558dc9..af8175c35 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 78578233b..1df134856 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e085210b5..65004acb7 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 82959642f..30b21a472 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 be481d7ae..9bedccccd 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -38,9 +38,9 @@ namespace GRINS template AntiochConstantTransportEvaluator::AntiochConstantTransportEvaluator( const AntiochConstantTransportMixture& mixture ) : AntiochEvaluator,Thermo>( mixture ), - _mu( mixture.mu() ), - _conductivity( mixture.conductivity() ), - _diffusivity( mixture.diffusivity() ) + _mu( mixture.mu() ), + _conductivity( mixture.conductivity() ), + _diffusivity( mixture.diffusivity() ) { return; } diff --git a/src/properties/src/antioch_constant_transport_instantiate.C b/src/properties/src/antioch_constant_transport_instantiate.C index 51cd242aa..47e12ac06 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 39b07a72f..e91b84611 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -67,7 +67,7 @@ namespace GRINS libMesh::UniquePtr > & diff, libMesh::Real min_T, bool clip_negative_rho ) - : AntiochMixture(chem_mixture,reaction_set,nasa_mixture,min_T,clip_negative_rho) + : AntiochMixture(chem_mixture,reaction_set,nasa_mixture,min_T,clip_negative_rho) { /*! \todo Use std::move() when we have C++11 */ _mu.reset( visc.release() ); diff --git a/src/properties/src/antioch_evaluator.C b/src/properties/src/antioch_evaluator.C index 7e3bca12f..e865ad1cb 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -93,16 +93,16 @@ namespace GRINS template<> libMesh::Real AntiochEvaluator,Antioch::StatMechThermodynamics >::cp( const libMesh::Real& T, - const libMesh::Real /*P*/, - const std::vector& Y ) + const libMesh::Real /*P*/, + const std::vector& Y ) { return this->_thermo->cp( T, T, Y ); } template<> libMesh::Real AntiochEvaluator,Antioch::StatMechThermodynamics >::cv( const libMesh::Real& T, - const libMesh::Real /*P*/, - const std::vector& Y ) + const libMesh::Real /*P*/, + const std::vector& Y ) { return this->_thermo->cv( T, T, Y ); } diff --git a/src/properties/src/antioch_evaluator_instantiate.C b/src/properties/src/antioch_evaluator_instantiate.C index 7cac8e4ba..966192f7e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 1dc076e21..95de113f8 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_instantiate.C b/src/properties/src/antioch_kinetics_instantiate.C index b59b211e9..231d811cf 100644 --- a/src/properties/src/antioch_kinetics_instantiate.C +++ b/src/properties/src/antioch_kinetics_instantiate.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 4be6bf1f2..f4cf007f0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -99,8 +99,8 @@ namespace GRINS template void AntiochMixture::register_parameter - ( const std::string & param_name, - libMesh::ParameterMultiAccessor & param_pointer ) const + ( const std::string & param_name, + libMesh::ParameterMultiAccessor & param_pointer ) const { // Use common code for any GRINS parameters AntiochChemistry::register_parameter(param_name, param_pointer); diff --git a/src/properties/src/antioch_mixture_averaged_transport_evaluator.C b/src/properties/src/antioch_mixture_averaged_transport_evaluator.C index 16562e3b1..bc6a4f29f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 4d49ead1c..0f8158443 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 fb2b5512e..781b3dd11 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_builder.C b/src/properties/src/antioch_mixture_averaged_transport_mixture_builder.C index 73eff23e0..b43c276ea 100644 --- a/src/properties/src/antioch_mixture_averaged_transport_mixture_builder.C +++ b/src/properties/src/antioch_mixture_averaged_transport_mixture_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f67cf57e1..d34155728 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_builder_base.C b/src/properties/src/antioch_mixture_builder_base.C index 82832aedb..c2b24ef56 100644 --- a/src/properties/src/antioch_mixture_builder_base.C +++ b/src/properties/src/antioch_mixture_builder_base.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_instantiate.C b/src/properties/src/antioch_mixture_instantiate.C index 01d536552..49fd349f1 100644 --- a/src/properties/src/antioch_mixture_instantiate.C +++ b/src/properties/src/antioch_mixture_instantiate.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 4d4b43dfd..fbd4770c3 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 aad5f8a4b..a29d7281a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 610401be3..50be638b5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7b26ba719..83a94fd70 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d6394c27b..1be3266ad 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/chemistry_builder.C b/src/properties/src/chemistry_builder.C index 9b9697e3a..3e499bd12 100644 --- a/src/properties/src/chemistry_builder.C +++ b/src/properties/src/chemistry_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -40,7 +40,7 @@ namespace GRINS { - #ifdef GRINS_HAVE_CANTERA +#ifdef GRINS_HAVE_CANTERA template<> void ChemistryBuilder::build_chemistry(const GetPot & input,const std::string & material, libMesh::UniquePtr & chem_ptr ) diff --git a/src/properties/src/constant_conductivity.C b/src/properties/src/constant_conductivity.C index 16dd88019..16b0cc388 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 2c07341c1..5197368bf 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 219192880..857db63eb 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 35ba4f5e4..43b464726 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 20e1966d8..ed43cf9b5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f2ea2f03e..e2db11dc5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 da6cf49ed..84056f841 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0f33eebd5..1c47924e7 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 773a50c9a..42a45c731 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c53f303b8..3752da366 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 a6c285d9b..a8e528559 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6f1ea7863..88f88c1f6 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 0692844db..333313b48 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f58ff256d..f02ae0bfb 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 466429703..6d57ddbd4 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5b3ea920a..5d46d299f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/absorption_coeff.h b/src/qoi/include/grins/absorption_coeff.h index 727ae4ea9..995d8d5bc 100644 --- a/src/qoi/include/grins/absorption_coeff.h +++ b/src/qoi/include/grins/absorption_coeff.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e2b4ed15a..66aebd7f5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 b09c9e402..7bbc97aad 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/fem_function_and_derivative_base.h b/src/qoi/include/grins/fem_function_and_derivative_base.h index 87f460db0..0966e76bd 100644 --- a/src/qoi/include/grins/fem_function_and_derivative_base.h +++ b/src/qoi/include/grins/fem_function_and_derivative_base.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/hitran.h b/src/qoi/include/grins/hitran.h index fe9f41445..f3cfc48a1 100644 --- a/src/qoi/include/grins/hitran.h +++ b/src/qoi/include/grins/hitran.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/integrated_function.h b/src/qoi/include/grins/integrated_function.h index 0bf173721..3f255c672 100644 --- a/src/qoi/include/grins/integrated_function.h +++ b/src/qoi/include/grins/integrated_function.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -55,22 +55,22 @@ namespace GRINS public: //! Constructor /*! - @param p_level The desired Gauss Quadrature level - @param f A FunctionBase or FEMFunctionBase object for evaluting the QoI - @param rayfire A RayfireMesh object (will be initialized in init()) Ownership will be taken by an internal libMesh::UniquePtr - @param qoi_name Passed to the QoIBase + @param p_level The desired Gauss Quadrature level + @param f A FunctionBase or FEMFunctionBase object for evaluting the QoI + @param rayfire A RayfireMesh object (will be initialized in init()) Ownership will be taken by an internal libMesh::UniquePtr + @param qoi_name Passed to the QoIBase */ IntegratedFunction(unsigned int p_level, SharedPtr f, RayfireMesh * rayfire, const std::string & qoi_name); //! Constructor /*! - Used by the QoIFactory. Passes GetPot through to RayfireMesh for construction + Used by the QoIFactory. Passes GetPot through to RayfireMesh for construction */ IntegratedFunction(const GetPot & input, unsigned int p_level, SharedPtr f, const std::string & input_qoi_string, const std::string & qoi_name); //! Copy Constructor /*! - Required to deep-copy the UniquePtr RayfireMesh object + Required to deep-copy the UniquePtr RayfireMesh object */ IntegratedFunction(const IntegratedFunction & original); diff --git a/src/qoi/include/grins/parsed_boundary_qoi.h b/src/qoi/include/grins/parsed_boundary_qoi.h index 52da14abb..ada415c4c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 4257a4a11..bc3d5c78b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7989f6e85..648872745 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f9750b897..b33bf17d8 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 2ebfdba83..8e20cbcc5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_options.h b/src/qoi/include/grins/qoi_options.h index 3e5d9590b..bf86a6120 100644 --- a/src/qoi/include/grins/qoi_options.h +++ b/src/qoi/include/grins/qoi_options.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_output.h b/src/qoi/include/grins/qoi_output.h index e0bfdfaa4..f49cf1f0e 100644 --- a/src/qoi/include/grins/qoi_output.h +++ b/src/qoi/include/grins/qoi_output.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/rayfire_mesh.h b/src/qoi/include/grins/rayfire_mesh.h index 250a2daba..33034fa9f 100644 --- a/src/qoi/include/grins/rayfire_mesh.h +++ b/src/qoi/include/grins/rayfire_mesh.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -87,13 +87,13 @@ namespace GRINS //! Input File Constructor /*! - Creates rayfire from parameters specified in input file section: QoI/'qoi_string'/Rayfire/ + Creates rayfire from parameters specified in input file section: QoI/'qoi_string'/Rayfire/ */ RayfireMesh(const GetPot & input, const std::string & qoi_string); //! Copy Constructor /*! - Required to deep-copy _mesh and _elem_id_map + Required to deep-copy _mesh and _elem_id_map */ RayfireMesh(const RayfireMesh & original); diff --git a/src/qoi/include/grins/spectroscopic_absorption.h b/src/qoi/include/grins/spectroscopic_absorption.h index 872257c9b..520734b05 100644 --- a/src/qoi/include/grins/spectroscopic_absorption.h +++ b/src/qoi/include/grins/spectroscopic_absorption.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 628f15463..ab63b57a1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 328a2a581..d5509cb63 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/absorption_coeff.C b/src/qoi/src/absorption_coeff.C index 722964d32..b1e4aad87 100644 --- a/src/qoi/src/absorption_coeff.C +++ b/src/qoi/src/absorption_coeff.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -126,7 +126,7 @@ namespace GRINS START_LOG("operator()","AbsorptionCoeff"); libMesh::Real T,p,thermo_p; // temperature, hydrostatic pressure, thermodynamic pressure std::vector Y(_chemistry->n_species()); // mass fractions - + for (unsigned int s=0; s<_chemistry->n_species(); s++) context.point_value(_Y_var.species(s), qp_xyz, Y[s]); @@ -188,7 +188,7 @@ namespace GRINS libMesh::UniquePtr< libMesh::FEBase > P_fe = libMesh::FEGenericBase::build(context.get_elem().dim(), context.get_element_fe(_P_var.p())->get_fe_type() ); const std::vector > & P_phi = P_fe->get_phi(); P_fe->reinit(&(context.get_elem()),&qp); - + libMesh::UniquePtr< libMesh::FEBase > Ys_fe = libMesh::FEGenericBase::build(context.get_elem().dim(), context.get_element_fe(_Y_var.species(_species_idx))->get_fe_type() ); const std::vector > & Ys_phi = Ys_fe->get_phi(); Ys_fe->reinit(&(context.get_elem()),&qp); @@ -250,7 +250,7 @@ namespace GRINS libMesh::Real phi_V = this->voigt(T,P,Y,i); libMesh::Real M_mix = _chemistry->M_mix(Y); - libMesh::Real X = _chemistry->X(_species_idx,M_mix,Y[_species_idx]); + libMesh::Real X = _chemistry->X(_species_idx,M_mix,Y[_species_idx]); // absorption coefficient [cm^-1] return S*(P/Constants::atmosphere_Pa)*X*phi_V; @@ -294,7 +294,7 @@ namespace GRINS libMesh::Real V = this->voigt(T,P,Y,i); libMesh::Real M_mix = _chemistry->M_mix(Y); libMesh::Real X = _chemistry->X(_species_idx,M_mix,Y[_species_idx]); - + return S*(P/Constants::atmosphere_Pa) * ( X*dV + dX*V ); } @@ -345,7 +345,7 @@ namespace GRINS libMesh::Real QT = _hitran->partition_function(T,iso); libMesh::Real dQT = this->dQ_dT(T,iso); libMesh::Real nu = this->get_nu(P,i); - + libMesh::Real constants = sw * QT0 * std::pow( (1.0-std::exp(-_rad_coeff*nu/_T0)), -1.0) * Constants::atmosphere_Pa/(Constants::Boltzmann*1.0e6); libMesh::Real A = 1.0/T; libMesh::Real dA = -1.0/(T*T); @@ -514,7 +514,7 @@ namespace GRINS libMesh::Real da = this->d_voigt_a_dT(T,P,Y,i); libMesh::Real w = this->voigt_w(T,P,i); - libMesh::Real dw = this->d_voigt_w_dT(T,P,i); + libMesh::Real dw = this->d_voigt_w_dT(T,P,i); // Voigt coefficient libMesh::Real V = 0.0; @@ -724,7 +724,7 @@ namespace GRINS libMesh::Real AbsorptionCoeff::d_nu_dP(unsigned int i) { libMesh::Real d_air = _hitran->delta_air(i); - + return d_air/_Pref * 1.0/Constants::atmosphere_Pa; } diff --git a/src/qoi/src/average_nusselt_number.C b/src/qoi/src/average_nusselt_number.C index f5c389b92..da8c4637e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 81b534962..5b8ebcec8 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/hitran.C b/src/qoi/src/hitran.C index f51dceb95..b51d5a420 100644 --- a/src/qoi/src/hitran.C +++ b/src/qoi/src/hitran.C @@ -4,7 +4,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/integrated_function.C b/src/qoi/src/integrated_function.C index 9cb310b1e..7461f590a 100644 --- a/src/qoi/src/integrated_function.C +++ b/src/qoi/src/integrated_function.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 00b8eb8f4..e33ca46f2 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 837c9e50f..faa87c99e 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f33043597..ccb157338 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 184368465..1f3bb4954 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_output.C b/src/qoi/src/qoi_output.C index 54b261c4b..15c5791b8 100644 --- a/src/qoi/src/qoi_output.C +++ b/src/qoi/src/qoi_output.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/rayfire_mesh.C b/src/qoi/src/rayfire_mesh.C index eae3194ed..b8bcd4e86 100644 --- a/src/qoi/src/rayfire_mesh.C +++ b/src/qoi/src/rayfire_mesh.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -78,9 +78,9 @@ namespace GRINS _origin(1) = input("QoI/"+qoi_string+"/Rayfire/origin", 0.0, 1); if (input.have_variable("QoI/"+qoi_string+"/Rayfire/theta")) - _theta = input("QoI/"+qoi_string+"/Rayfire/theta", -7.0); + _theta = input("QoI/"+qoi_string+"/Rayfire/theta", -7.0); else - libmesh_error_msg("ERROR: Spherical polar angle theta must be given for Rayfire"); + libmesh_error_msg("ERROR: Spherical polar angle theta must be given for Rayfire"); if (std::abs(_theta) > 2.0*Constants::pi) libmesh_error_msg("Please supply a theta value between -2*pi and 2*pi"); @@ -97,7 +97,7 @@ namespace GRINS { if (original._mesh.get()) this->_mesh.reset( new libMesh::Mesh( *((original._mesh).get()) ) ); - + this->_elem_id_map = original._elem_id_map; } @@ -400,7 +400,7 @@ namespace GRINS for (unsigned int s=0; sn_sides(); s++) { - libMesh::UniquePtr side_elem = neighbor->build_side_ptr(s); + libMesh::UniquePtr side_elem = neighbor->build_side_ptr(s); if ( (side_elem->contains_point(*node0)) && (side_elem->contains_point(*node1)) ) { @@ -423,7 +423,7 @@ namespace GRINS is_valid &= ( l_to_r || r_to_l ); } - } + } return is_valid; } @@ -526,7 +526,7 @@ namespace GRINS for (unsigned int c=0; cn_children(); c++) { const libMesh::Elem * child = neighbor->child_ptr(c); - + if (child->contains_point(end_point)) if (this->rayfire_in_elem(end_point,child)) return child; diff --git a/src/qoi/src/spectroscopic_absorption.C b/src/qoi/src/spectroscopic_absorption.C index cb4da3050..1f1a0495a 100644 --- a/src/qoi/src/spectroscopic_absorption.C +++ b/src/qoi/src/spectroscopic_absorption.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c6b1eebfb..38d67035c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 61e0e3794..6cd7cdd3c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e6cdc7e57..1dba9969d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 b98b351a4..d9ff33c97 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 61a4ea2ff..f8f3ddca2 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f823caf65..64c6f7da3 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/runner.h b/src/solver/include/grins/runner.h index 311e82f28..0ae5cd7aa 100644 --- a/src/solver/include/grins/runner.h +++ b/src/solver/include/grins/runner.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f0922f5da..b273b1814 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e8bf9d68f..117bf9680 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_initializer.h b/src/solver/include/grins/simulation_initializer.h index 616a62572..6a8f3967a 100644 --- a/src/solver/include/grins/simulation_initializer.h +++ b/src/solver/include/grins/simulation_initializer.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d5bd9dda8..6000df02a 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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.h b/src/solver/include/grins/solver.h index 339dc5b24..940f9b6cd 100644 --- a/src/solver/include/grins/solver.h +++ b/src/solver/include/grins/solver.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f8eeb31a4..32bdc64aa 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_abstract.h b/src/solver/include/grins/solver_factory_abstract.h index 4a87bd4e0..b579d0e6b 100644 --- a/src/solver/include/grins/solver_factory_abstract.h +++ b/src/solver/include/grins/solver_factory_abstract.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_basic.h b/src/solver/include/grins/solver_factory_basic.h index c86aa243a..287ad4cdf 100644 --- a/src/solver/include/grins/solver_factory_basic.h +++ b/src/solver/include/grins/solver_factory_basic.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_initializer.h b/src/solver/include/grins/solver_factory_initializer.h index d9466fd85..b26fa7fda 100644 --- a/src/solver/include/grins/solver_factory_initializer.h +++ b/src/solver/include/grins/solver_factory_initializer.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5ecc8bb78..18419217f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c0c97824f..a9c38df55 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9e455373d..daa4195a1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_solver.h b/src/solver/include/grins/steady_solver.h index 33ea8b079..7502f2da6 100644 --- a/src/solver/include/grins/steady_solver.h +++ b/src/solver/include/grins/steady_solver.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e8627e93f..43bc8211c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 5899581e0..ff1764128 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_solver.h b/src/solver/include/grins/unsteady_solver.h index b5230c5b6..2b995bde3 100644 --- a/src/solver/include/grins/unsteady_solver.h +++ b/src/solver/include/grins/unsteady_solver.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d89e82a1b..1b3962f1c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 4d1c390c1..41310dddf 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 1c4bba637..ac37d9230 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 a86b6e071..81a108823 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/runner.C b/src/solver/src/runner.C index bb00cdc42..a5f462246 100644 --- a/src/solver/src/runner.C +++ b/src/solver/src/runner.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6dce126c3..5c713b81b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 3b7e8fb4b..311bd7e57 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_initializer.C b/src/solver/src/simulation_initializer.C index c8e8733d1..aca06606d 100644 --- a/src/solver/src/simulation_initializer.C +++ b/src/solver/src/simulation_initializer.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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.C b/src/solver/src/solver.C index 797a1da9b..9e1fcb13e 100644 --- a/src/solver/src/solver.C +++ b/src/solver/src/solver.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 b705a8703..bb80a9db1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_abstract.C b/src/solver/src/solver_factory_abstract.C index 90aa31850..b7845d014 100644 --- a/src/solver/src/solver_factory_abstract.C +++ b/src/solver/src/solver_factory_abstract.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_initializer.C b/src/solver/src/solver_factory_initializer.C index 664b21386..0a1aaa511 100644 --- a/src/solver/src/solver_factory_initializer.C +++ b/src/solver/src/solver_factory_initializer.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 a48fb3d55..ee2be37a4 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ebeacb2e0..0fcf2c5c0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_solver.C b/src/solver/src/steady_solver.C index 5db6c5953..ff17973a6 100644 --- a/src/solver/src/steady_solver.C +++ b/src/solver/src/steady_solver.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6560b819b..30eb7e4b8 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 a064dea93..0f93ceecc 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_solver.C b/src/solver/src/unsteady_solver.C index b617a096a..ddc9dc603 100644 --- a/src/solver/src/unsteady_solver.C +++ b/src/solver/src/unsteady_solver.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 084da3e48..6a44068a9 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 26d52de7c..047dd9676 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ca84fb8dd..172bedd19 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 3c79234bb..7fd21dd62 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_initializer.h b/src/strategies/include/grins/error_estimator_factory_initializer.h index ec3e58e57..5646af0b5 100644 --- a/src/strategies/include/grins/error_estimator_factory_initializer.h +++ b/src/strategies/include/grins/error_estimator_factory_initializer.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7dc21733d..24986a824 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 05f1461fc..0a6d05791 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 ef9c18d4f..ec5df3028 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 de4e4b393..dadd25931 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 3d1d21df2..b914d60af 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_initializer.C b/src/strategies/src/error_estimator_factory_initializer.C index 936e2f67e..eb6d88fe1 100644 --- a/src/strategies/src/error_estimator_factory_initializer.C +++ b/src/strategies/src/error_estimator_factory_initializer.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 85b80fa6a..077241bc6 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c03ee1ec4..b3837c9f6 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 2a2c5ebe6..77a567dba 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 60d015974..fc08f2742 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 fe88537b2..fb98e55e5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 cdb606616..201aade0f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 44bc2d63e..52fd53a41 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f654ceffa..779d891ad 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/output_parsing.h b/src/utilities/include/grins/output_parsing.h index c2e29faa3..3447b7d08 100644 --- a/src/utilities/include/grins/output_parsing.h +++ b/src/utilities/include/grins/output_parsing.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c2b329fad..d071b1c3c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 856562fa9..611bc5678 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -59,7 +59,7 @@ namespace GRINS /*! * Second Radiation Constant hc/k, [m K] - * + * * h = Planck's Constant * c = speed of light in a vacuum * k = Boltzmann Constant diff --git a/src/utilities/include/grins/shared_ptr.h b/src/utilities/include/grins/shared_ptr.h index f7426a03d..bb9cc12b4 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 100903006..4ca5b9435 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 f7e10e93d..b00e3cfbf 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7cd587564..1874a3d81 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c9b9d2a6f..dcdf50cab 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7a602a0c9..40b7f2036 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 e6ec9de9b..917136106 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 8a8c03169..536f0528c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/default_variable_builder.h b/src/variables/include/grins/default_variable_builder.h index 8d3bbc801..422046b46 100644 --- a/src/variables/include/grins/default_variable_builder.h +++ b/src/variables/include/grins/default_variable_builder.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 89e641aa9..3b049b251 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_component_vector_variable.h b/src/variables/include/grins/multi_component_vector_variable.h index 1298b1777..217619f3e 100644 --- a/src/variables/include/grins/multi_component_vector_variable.h +++ b/src/variables/include/grins/multi_component_vector_variable.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/multicomponent_variable.h b/src/variables/include/grins/multicomponent_variable.h index 34516bdcc..d40e583be 100644 --- a/src/variables/include/grins/multicomponent_variable.h +++ b/src/variables/include/grins/multicomponent_variable.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_variable.h b/src/variables/include/grins/single_variable.h index d1fb221cf..d59cbd946 100644 --- a/src/variables/include/grins/single_variable.h +++ b/src/variables/include/grins/single_variable.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_builder.h b/src/variables/include/grins/variable_builder.h index 6257ba7cb..8c743aa89 100644 --- a/src/variables/include/grins/variable_builder.h +++ b/src/variables/include/grins/variable_builder.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_factory.h b/src/variables/include/grins/variable_factory.h index bb7793caa..2564762ba 100644 --- a/src/variables/include/grins/variable_factory.h +++ b/src/variables/include/grins/variable_factory.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_factory_initializer.h b/src/variables/include/grins/variable_factory_initializer.h index c7791e2af..788d5fd75 100644 --- a/src/variables/include/grins/variable_factory_initializer.h +++ b/src/variables/include/grins/variable_factory_initializer.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 42f9e8644..c252b4cc9 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 eba839ce5..87856a0d1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 df260921d..d671df1be 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/default_variable_builder.C b/src/variables/src/default_variable_builder.C index e82d2bbe7..9a57799c3 100644 --- a/src/variables/src/default_variable_builder.C +++ b/src/variables/src/default_variable_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_builder.C b/src/variables/src/variable_builder.C index 5c11afe15..eedbca9f7 100644 --- a/src/variables/src/variable_builder.C +++ b/src/variables/src/variable_builder.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_factory.C b/src/variables/src/variable_factory.C index 92f396b16..1d40ab8ed 100644 --- a/src/variables/src/variable_factory.C +++ b/src/variables/src/variable_factory.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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_factory_initializer.C b/src/variables/src/variable_factory_initializer.C index 00b530f53..6adb51ea9 100644 --- a/src/variables/src/variable_factory_initializer.C +++ b/src/variables/src/variable_factory_initializer.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 6cdb4a843..546d2f379 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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/variables_parsing.C b/src/variables/src/variables_parsing.C index f37498b99..703497340 100644 --- a/src/variables/src/variables_parsing.C +++ b/src/variables/src/variables_parsing.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 c4938a943..92e2c9f9c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d469d458f..8f50697b1 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d7d485900..6338d39cb 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 d726546f8..7214643ea 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 21651cfe3..91937f885 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 9b9d30435..c30494383 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7fcb498af..2f4afa290 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 1fd2a783c..ac5cbb053 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 112d09a00..6a4a68bc0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 7e6c95454..bb0c53ab3 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 acf8b6e1c..8df702382 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. 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 aa2e0c1de..21b58a7d6 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 af04b6010..3b8e60f7b 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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/regression_helper.h b/test/common/regression_helper.h index add857201..25f090380 100644 --- a/test/common/regression_helper.h +++ b/test/common/regression_helper.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 6b6b953d5..f910d9b61 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 6ccb87bdf..dbd4f7f8d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 6c1baaa27..c8f504944 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 638fc8d94..39ec346ae 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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/absorption_coeff_testing.h b/test/interface/absorption_coeff_testing.h index 00b2358ab..0cbe8c736 100644 --- a/test/interface/absorption_coeff_testing.h +++ b/test/interface/absorption_coeff_testing.h @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 443c630e0..aae4dc644 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 c86b55e70..127a0fd45 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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_builder_test.C b/test/interface/antioch_mixture_builder_test.C index 1abf9cd1a..4071a251b 100644 --- a/test/interface/antioch_mixture_builder_test.C +++ b/test/interface/antioch_mixture_builder_test.C @@ -304,11 +304,11 @@ namespace GRINSTesting Antioch::SutherlandViscosity, Antioch::EuckenThermalConductivity >, libMesh::Real> > , Antioch::ConstantLewisDiffusivity > > - mixture = builder.build_mixture, - Antioch::IdealGasMicroThermo >, libMesh::Real>, - Antioch::SutherlandViscosity, - Antioch::EuckenThermalConductivity >, libMesh::Real> >, - Antioch::ConstantLewisDiffusivity >( *_input, "TestMaterial" ); + mixture = builder.build_mixture, + Antioch::IdealGasMicroThermo >, libMesh::Real>, + Antioch::SutherlandViscosity, + Antioch::EuckenThermalConductivity >, libMesh::Real> >, + Antioch::ConstantLewisDiffusivity >( *_input, "TestMaterial" ); CPPUNIT_ASSERT(mixture); } @@ -322,11 +322,11 @@ namespace GRINSTesting Antioch::SutherlandViscosity, Antioch::EuckenThermalConductivity >, Antioch::ConstantLewisDiffusivity > > - mixture = builder.build_mixture, - Antioch::StatMechThermodynamics, - Antioch::SutherlandViscosity, - Antioch::EuckenThermalConductivity >, - Antioch::ConstantLewisDiffusivity >( *_input, "TestMaterial" ); + mixture = builder.build_mixture, + Antioch::StatMechThermodynamics, + Antioch::SutherlandViscosity, + Antioch::EuckenThermalConductivity >, + Antioch::ConstantLewisDiffusivity >( *_input, "TestMaterial" ); CPPUNIT_ASSERT(mixture); } @@ -341,11 +341,11 @@ namespace GRINSTesting Antioch::KineticsTheoryViscosity, Antioch::KineticsTheoryThermalConductivity >, libMesh::Real>,libMesh::Real>, Antioch::MolecularBinaryDiffusion > > - mixture = builder.build_mixture, - Antioch::IdealGasMicroThermo >, libMesh::Real>, - Antioch::KineticsTheoryViscosity, - Antioch::KineticsTheoryThermalConductivity >, libMesh::Real>,libMesh::Real>, - Antioch::MolecularBinaryDiffusion >( *_input, "TestMaterial" ); + mixture = builder.build_mixture, + Antioch::IdealGasMicroThermo >, libMesh::Real>, + Antioch::KineticsTheoryViscosity, + Antioch::KineticsTheoryThermalConductivity >, libMesh::Real>,libMesh::Real>, + Antioch::MolecularBinaryDiffusion >( *_input, "TestMaterial" ); CPPUNIT_ASSERT(mixture); } diff --git a/test/interface/antioch_test_base.h b/test/interface/antioch_test_base.h index 0bb9c544d..f2e1d9914 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 483d8803d..05654e828 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 f5c8ae898..103ac3893 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 fb78a71c6..ff72f4d67 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 0bf55a119..5f1248387 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 74dd33ebc..559e6585c 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 dc14ba9c0..5e65c80ec 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 a7bbdcf0f..caa3eb8a0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 7c2f92581..aed268745 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 98473e804..118aaf865 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 9d974c88d..4fa2dc9e0 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 40e1f60d2..6f726885d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 6e2f17cf1..4b04663e5 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 0c7e21013..63cb9867f 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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/regression_testing_app.C b/test/regression/regression_testing_app.C index f4dc99753..ad90bd16a 100644 --- a/test/regression/regression_testing_app.C +++ b/test/regression/regression_testing_app.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 d6ed799a0..394e715cd 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 6a867edac..4e007d2db 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 3d7442a12..6cb614e71 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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/builder_helper.C b/test/unit/builder_helper.C index d5058d194..0d1617a34 100644 --- a/test/unit/builder_helper.C +++ b/test/unit/builder_helper.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 180a343a4..5a0d16b61 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 1f40cdd29..6aefe4b73 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 60e9bc427..186b23bfe 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 1586b0ce0..dcfe653d4 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 0fccb9661..fef58af2d 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 2805200a1..45c4ccdd8 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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/hitran_test.C b/test/unit/hitran_test.C index 1a4400e11..b9c3319ea 100644 --- a/test/unit/hitran_test.C +++ b/test/unit/hitran_test.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -97,12 +97,12 @@ namespace GRINSTesting CPPUNIT_ASSERT_DOUBLES_EQUAL(563.375898926,hitran.partition_function(290.0,1),tolerance); CPPUNIT_ASSERT_DOUBLES_EQUAL(593.800881348,hitran.partition_function(290.0,2),tolerance); CPPUNIT_ASSERT_DOUBLES_EQUAL(3461.47846875,hitran.partition_function(290.0,3),tolerance); - + CPPUNIT_ASSERT_DOUBLES_EQUAL(304.559997559,hitran.partition_function(310.0,0),tolerance); CPPUNIT_ASSERT_DOUBLES_EQUAL(614.489990234,hitran.partition_function(310.0,1),tolerance); CPPUNIT_ASSERT_DOUBLES_EQUAL(647.090026855,hitran.partition_function(310.0,2),tolerance); CPPUNIT_ASSERT_DOUBLES_EQUAL(3771.39990234,hitran.partition_function(310.0,3),tolerance); - + // partition function values at the reference temperature T=296K CPPUNIT_ASSERT_DOUBLES_EQUAL(286.935573058,hitran.partition_function(296,0),tolerance); diff --git a/test/unit/integrated_function_test.C b/test/unit/integrated_function_test.C index 219c38b12..72f1ef46e 100644 --- a/test/unit/integrated_function_test.C +++ b/test/unit/integrated_function_test.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -363,7 +363,7 @@ namespace GRINSTesting libMesh::DifferentiableQoI* diff_qoi = system->get_qoi(); GRINS::CompositeQoI* qoi = libMesh::cast_ptr(diff_qoi); GRINS::IntegratedFunction > * integrated_func = libMesh::cast_ptr > * >( &(qoi->get_qoi(0)) ); - + // make sure we have exactly 3 elements along the rayfire std::vector elems_in_rayfire; integrated_func->get_rayfire().elem_ids_in_rayfire(elems_in_rayfire); diff --git a/test/unit/mesh_builder.C b/test/unit/mesh_builder.C index 02ff225b7..94cad04bc 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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 784836f41..39c17c0ea 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-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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/rayfireAMR_test.C b/test/unit/rayfireAMR_test.C index f2d65d1a5..d6dcfa429 100644 --- a/test/unit/rayfireAMR_test.C +++ b/test/unit/rayfireAMR_test.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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/rayfire_test.C b/test/unit/rayfire_test.C index 1055d9f45..69599050c 100644 --- a/test/unit/rayfire_test.C +++ b/test/unit/rayfire_test.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy 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/spectroscopic_absorption_test.C b/test/unit/spectroscopic_absorption_test.C index fc0a9886d..261f442fe 100644 --- a/test/unit/spectroscopic_absorption_test.C +++ b/test/unit/spectroscopic_absorption_test.C @@ -3,7 +3,7 @@ // // GRINS - General Reacting Incompressible Navier-Stokes // -// Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner +// Copyright (C) 2014-2017 Paul T. Bauman, Roy H. Stogner // Copyright (C) 2010-2013 The PECOS Development Team // // This library is free software; you can redistribute it and/or @@ -102,8 +102,8 @@ namespace GRINSTesting std::string hitran_data = "./test_data/CO2_data.dat"; std::string hitran_partition = "./test_data/CO2_partition_function.dat"; libMesh::Real T_min = 290.0, - T_max = 310.0, - T_step = 0.01; + T_max = 310.0, + T_step = 0.01; GRINS::SharedPtr hitran( new GRINS::HITRAN(hitran_data,hitran_partition,T_min,T_max,T_step) ); std::string species = "CO2"; @@ -325,7 +325,7 @@ namespace GRINSTesting libMesh::QoISet qs; qs.add_index(0); - libMesh::DenseSubVector deriv = context->get_qoi_derivatives(0,var_index); + libMesh::DenseSubVector deriv = context->get_qoi_derivatives(0,var_index); libMesh::DenseSubVector & solution = context->get_elem_solution(var_index); for (unsigned int d=0; d