From 546dd307c3e2dae97ffa656a483e3aeab712f99e Mon Sep 17 00:00:00 2001 From: Hrvoje Jasak Date: Sat, 16 Oct 2010 08:29:39 +0100 Subject: [PATCH 1/3] Updated header: authorship --- .../fvPatchFields/nusselt/nusseltFvPatchScalarField.C | 2 +- .../fvPatchFields/nusselt/nusseltFvPatchScalarField.H | 2 +- .../manipulation/checkSurfaceCurvature/checkSurfaceCurvature.C | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/applications/solvers/newStressAnalysis/materialModels/fvPatchFields/nusselt/nusseltFvPatchScalarField.C b/applications/solvers/newStressAnalysis/materialModels/fvPatchFields/nusselt/nusseltFvPatchScalarField.C index 837b75dca..adbd53370 100644 --- a/applications/solvers/newStressAnalysis/materialModels/fvPatchFields/nusselt/nusseltFvPatchScalarField.C +++ b/applications/solvers/newStressAnalysis/materialModels/fvPatchFields/nusselt/nusseltFvPatchScalarField.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 1991-2005 OpenCFD Ltd. + \\ / A nd | Copyright held by original author \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/applications/solvers/newStressAnalysis/materialModels/fvPatchFields/nusselt/nusseltFvPatchScalarField.H b/applications/solvers/newStressAnalysis/materialModels/fvPatchFields/nusselt/nusseltFvPatchScalarField.H index d32876c8b..01e25dd10 100644 --- a/applications/solvers/newStressAnalysis/materialModels/fvPatchFields/nusselt/nusseltFvPatchScalarField.H +++ b/applications/solvers/newStressAnalysis/materialModels/fvPatchFields/nusselt/nusseltFvPatchScalarField.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 1991-2005 OpenCFD Ltd. + \\ / A nd | Copyright held by original author \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/applications/utilities/mesh/manipulation/checkSurfaceCurvature/checkSurfaceCurvature.C b/applications/utilities/mesh/manipulation/checkSurfaceCurvature/checkSurfaceCurvature.C index a7a70800e..0b8471fdc 100644 --- a/applications/utilities/mesh/manipulation/checkSurfaceCurvature/checkSurfaceCurvature.C +++ b/applications/utilities/mesh/manipulation/checkSurfaceCurvature/checkSurfaceCurvature.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 1991-2005 OpenCFD Ltd. + \\ / A nd | Copyright held by original author \\/ M anipulation | ------------------------------------------------------------------------------- License From 73dad380714497cd66e11f0c1292b0a6e352a62f Mon Sep 17 00:00:00 2001 From: Hrvoje Jasak Date: Sat, 16 Oct 2010 08:30:18 +0100 Subject: [PATCH 2/3] Updated header: authorship --- tutorials/basic/PODSolver/1DPODsin/setTcos/setTcos.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/basic/PODSolver/1DPODsin/setTcos/setTcos.C b/tutorials/basic/PODSolver/1DPODsin/setTcos/setTcos.C index 8d681ed57..b224b2a0e 100644 --- a/tutorials/basic/PODSolver/1DPODsin/setTcos/setTcos.C +++ b/tutorials/basic/PODSolver/1DPODsin/setTcos/setTcos.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 1991-2005 OpenCFD Ltd. + \\ / A nd | Copyright held by original author \\/ M anipulation | ------------------------------------------------------------------------------- License From eff4c6099eac49377d103defd4bbae6ef4a0a1e7 Mon Sep 17 00:00:00 2001 From: Hrvoje Jasak Date: Sat, 16 Oct 2010 08:30:50 +0100 Subject: [PATCH 3/3] Updated format of preconditioner in dictionary. Henrik Rusche --- .../coupledLduSolver/bicgSolver/coupledBicgSolver.C | 2 +- .../coupledLduSolver/bicgStabSolver/coupledBicgStabSolver.C | 2 +- src/coupledMatrix/coupledLduSolver/cgSolver/coupledCgSolver.C | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/coupledMatrix/coupledLduSolver/bicgSolver/coupledBicgSolver.C b/src/coupledMatrix/coupledLduSolver/bicgSolver/coupledBicgSolver.C index 49d49bebb..6a454a5db 100644 --- a/src/coupledMatrix/coupledLduSolver/bicgSolver/coupledBicgSolver.C +++ b/src/coupledMatrix/coupledLduSolver/bicgSolver/coupledBicgSolver.C @@ -74,7 +74,7 @@ Foam::coupledBicgSolver::coupledBicgSolver bouCoeffs, intCoeffs, interfaces, - dict().subDict("preconditioner") + dict() ) ) {} diff --git a/src/coupledMatrix/coupledLduSolver/bicgStabSolver/coupledBicgStabSolver.C b/src/coupledMatrix/coupledLduSolver/bicgStabSolver/coupledBicgStabSolver.C index ddf5d3cfe..6c6c1af88 100644 --- a/src/coupledMatrix/coupledLduSolver/bicgStabSolver/coupledBicgStabSolver.C +++ b/src/coupledMatrix/coupledLduSolver/bicgStabSolver/coupledBicgStabSolver.C @@ -76,7 +76,7 @@ Foam::coupledBicgStabSolver::coupledBicgStabSolver bouCoeffs, intCoeffs, interfaces, - dict().subDict("preconditioner") + dict() ) ) {} diff --git a/src/coupledMatrix/coupledLduSolver/cgSolver/coupledCgSolver.C b/src/coupledMatrix/coupledLduSolver/cgSolver/coupledCgSolver.C index ac8275762..73e23352b 100644 --- a/src/coupledMatrix/coupledLduSolver/cgSolver/coupledCgSolver.C +++ b/src/coupledMatrix/coupledLduSolver/cgSolver/coupledCgSolver.C @@ -74,7 +74,7 @@ Foam::coupledCgSolver::coupledCgSolver bouCoeffs, intCoeffs, interfaces, - dict().subDict("preconditioner") + dict() ) ) {}