~fluidity-core/fluidity/exorcised

« back to all changes in this revision

Viewing changes to legacy_reservoir_prototype/tests/Sodds_shock_tube_1phase_1d/input_suf_d_bc_BL1_fcn.f90

  • Committer: saunde01
  • Date: 2011-03-23 13:15:31 UTC
  • Revision ID: svn-v4:5bf5533e-7014-46e3-b1bb-cce4b9d03719:trunk:3310
As discussed in the Dev meeting and in emails, this commit renames the multiphase directory to legacy_reservoir_prototype, and adds an obvious warning to the top of the README file to warn unsuspecting users of the experimental nature of the code. Iterations on the exact wording very welcome

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
program input_suf_d_bc
 
3
  implicit none
 
4
  integer, parameter :: stotel = 2, cv_snloc = 1, nphase = 2
 
5
  real, dimension( stotel * cv_snloc * nphase ) :: field
 
6
  integer :: i
 
7
  real :: value
 
8
 
 
9
  field = 0.
 
10
  field( 1 ) = 1.
 
11
 
 
12
  do i = 1, stotel * nphase
 
13
    print*, field( i )
 
14
  end do
 
15
 
 
16
end program input_suf_d_bc