~fluidity-core/fluidity/exorcised

« back to all changes in this revision

Viewing changes to legacy_reservoir_prototype/tests/BL_test_gravity/input_suf_t_bc.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
  real, dimension( : ), allocatable :: field
 
6
  integer :: idim
 
7
 
 
8
  open( 5, file = 'filedim', status = 'unknown' )
 
9
  read( 5, * ) ndim
 
10
  close( 5 )
 
11
 
 
12
  allocate( field( ndim1 ))
 
13
 
 
14
  field = 0.
 
15
  field( 1 ) = 1.
 
16
 
 
17
  do idim = 1, ndim
 
18
     print*, field( idim )
 
19
  end do
 
20
 
 
21
 
 
22
end program main
 
23
 
 
24
 
 
25
 
 
26