00001 subroutine mit_initialize
00002
00003 use phys_constant
00004 use def_qeos_parameter
00005 implicit none
00006
00007 real(8) :: rho_0, pre_0, facrho, facpre, fac2, gg, cc, ss
00008 integer :: ii, iphase
00009
00010
00011 open(850,file='mit_parameter.dat',status='old')
00012 read(850,'(es22.15)') aq
00013 read(850,'(2es22.15)') rhoini_cgs, rhosurf_cgs
00014 close(850)
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 facrho = (g/c**2)**3*solmas**2
00026 facpre = g**3*solmas**2/c**8
00027 eneini_cgs = rhoini_cgs*c**2
00028 enesurf_cgs = rhosurf_cgs*c**2
00029 eneini_gcm1 = eneini_cgs*facpre
00030 enesurf_gcm1 = enesurf_cgs*facpre
00031 rhoini_cgs = 0
00032 rhosurf_cgs = 0
00033
00034
00035
00036 rhoini_gcm1 = 0
00037 rhosurf_gcm1 = 0
00038
00039
00040
00041
00042 end subroutine mit_initialize