File: mixlinear.f90

package info (click to toggle)
elkcode 10.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 10,672 kB
  • sloc: f90: 52,747; perl: 964; makefile: 352; sh: 296; python: 105; ansic: 67
file content (34 lines) | stat: -rw-r--r-- 691 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

! Copyright (C) 2014 J. K. Dewhurst, S. Sharma and E. K. U. Gross.
! This file is distributed under the terms of the GNU General Public License.
! See the file COPYING for license details.

pure subroutine mixlinear(iscl,beta,n,nu,mu,d)
implicit none
! arguments
integer, intent(in) :: iscl
real(8), intent(in) :: beta
integer, intent(in) :: n
real(8), intent(inout) :: nu(n),mu(n)
real(8), intent(out) :: d
! local variables
integer i
real(8) t0,t1
if (n < 1) return
! initialise mixer
if (iscl < 1) then
  mu(1:n)=nu(1:n)
  d=1.d0
  return
end if
t0=1.d0-beta
d=0.d0
do i=1,n
  t1=nu(i)-mu(i)
  d=d+t1**2
  nu(i)=beta*nu(i)+t0*mu(i)
  mu(i)=nu(i)
end do
d=sqrt(d/dble(n))
end subroutine