~fluidity-core/fluidity/exorcised

« back to all changes in this revision

Viewing changes to multiphase/tests/BL_test_gravity/input_wic_p_bc_BL1.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 main
3
 
  implicit none
4
 
  integer :: ndim
5
 
  integer, dimension( : ), allocatable :: field
6
 
  integer :: i
7
 
 
8
 
  open( 5, file = 'filedim', status = 'unknown' )
9
 
  read( 5, * ) ndim
10
 
  close( 5 )
11
 
 
12
 
  allocate( field( ndim ))
13
 
 
14
 
  field = 0
15
 
  field( 2 ) = 1
16
 
  field( 4 ) = 1
17
 
 
18
 
  do i = 1, ndim
19
 
     print*, field( i )
20
 
  end do
21
 
 
22
 
end program main