1!
2!     CalculiX - A 3-dimensional finite element program
3!     Copyright (C) 1998-2021 Guido Dhondt
4!
5!     This program is free software; you can redistribute it and/or
6!     modify it under the terms of the GNU General Public License as
7!     published by the Free Software Foundation(version 2);
8!
9!
10!     This program is distributed in the hope that it will be useful,
11!     but WITHOUT ANY WARRANTY; without even the implied warranty of
12!     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13!     GNU General Public License for more details.
14!
15!     You should have received a copy of the GNU General Public License
16!     along with this program; if not, write to the Free Software
17!     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18!
19!     author: Yannick Muller
20!
21      subroutine cd_pk_albers(rad,d,xl,reynolds,p2,p1,beta,kappa,cd,u,
22     &     T1,R)
23!
24      implicit none
25!
26      real*8 rad,d,xl,reynolds,p2,p1,beta,kappa,
27     &     cd,R,u,T1
28!
29      rad=rad
30      d=d
31      xl=xl
32      reynolds=reynolds
33      p2=p2
34      p1=p1
35      beta=beta
36      kappa=kappa
37      R=R
38      u=u
39      T1=T1
40
41
42      cd=1.d0
43
44      write(*,*) '*WARNING while using subroutine cd_pk_albers.f'
45      write(*,*) 'cd implicitely taken equal to 1'
46!
47      return
48      end
49
50