summaryrefslogtreecommitdiff
path: root/src/EOS_GeneralHybrid_Setup.F90
blob: 1bb84390956d54f83d3095d5ec7e6a6186c5961e (plain)
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
35
36
37
38
39
40
 /*@@
   @file      EOS_GeneralHybrid_Setup.F90
   @date      
   @author    Ian Hawke, Christian D. Ott
   @desc 
   Startup for EOS_Hybrid. 
   @enddesc 
 @@*/

#include "cctk.h"
#include "cctk_Parameters.h"

 /*@@
   @routine    EOS_GeneralHybrid_Setup
   @date       
   @author     Ian Hawkem, Christian d. Ott
   @desc 
   Setup EOS_HybridScalars
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 
@@*/

subroutine EOS_GeneralHybrid_Setup()

  USE EOS_GP_Scalars
  USE EOS_GeneralHybrid_Scalars

  implicit none

  DECLARE_CCTK_PARAMETERS
  
  
  eos_k_supernuclear_cgs = eos_k_cgs * (rho_nuc * rho_geom_factor_inv)** &
       (eos_gamma - eos_gamma_supernuclear)

end subroutine EOS_GeneralHybrid_Setup