diff options
| author | stainer_t <thomas.stainer@oecd-nea.org> | 2025-09-08 13:48:49 +0200 |
|---|---|---|
| committer | stainer_t <thomas.stainer@oecd-nea.org> | 2025-09-08 13:48:49 +0200 |
| commit | 7dfcc480ba1e19bd3232349fc733caef94034292 (patch) | |
| tree | 03ee104eb8846d5cc1a981d267687a729185d3f3 /Dragon/src/BRESS2.f | |
Initial commit from Polytechnique Montreal
Diffstat (limited to 'Dragon/src/BRESS2.f')
| -rw-r--r-- | Dragon/src/BRESS2.f | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/Dragon/src/BRESS2.f b/Dragon/src/BRESS2.f new file mode 100644 index 0000000..5319fe2 --- /dev/null +++ b/Dragon/src/BRESS2.f @@ -0,0 +1,52 @@ + SUBROUTINE BRESS2(ITRIAL,XX,DIFF,SIGR,SIGT,B11) +* +*----------------------------------------------------------------------- +* +*Purpose: +* Assembly of non-leakage system matrices for the nodal expansion +* method. +* +*Copyright: +* Copyright (C) 2021 Ecole Polytechnique de Montreal +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU Lesser General Public +* License as published by the Free Software Foundation; either +* version 2.1 of the License, or (at your option) any later version +* +*Author(s): A. Hebert +* +*Parameters: input +* ITRIAL type of base (=1: polynomial; =2: hyperbolic) +* XX mesh width. +* DIFF diffusion coefficient. +* SIGR macroscopic removal cross section. +* SIGT macroscopic cross section. +* +*Parameters: output +* B11 nodal matrix. +* +*----------------------------------------------------------------------- +* +*---- +* SUBROUTINE ARGUMENTS +*---- + INTEGER ITRIAL + REAL XX,DIFF,SIGR,SIGT,B11(4,4) +*---- +* WEIGHT RESIDUAL EQUATIONS +*---- + B11(:4,:4)=0.0 + ETA=XX*SQRT(SIGR/DIFF) + B11(1,1)=SIGT/12.0 + B11(2,2)=SIGT/20.0 + IF(ITRIAL == 1) THEN + B11(1,3)=-SIGT/120.0 + B11(2,4)=-SIGT/700.0 + ELSE IF(ITRIAL == 2) THEN + ALP1=ETA*COSH(ETA/2.0)-2.0*SINH(ETA/2.0) + ALP2=((12.0+ETA**2)*SINH(ETA/2.0)-6.0*ETA*COSH(ETA/2.0))/ETA + B11(1,3)=SIGT*ALP1/(ETA**2) + B11(2,4)=SIGT*ALP2/(ETA**2) + ENDIF + RETURN + END |
