~fluidity-core/fluidity/sea-ice-branch

« back to all changes in this revision

Viewing changes to schemas/multiphase_interaction.rnc

  • Committer: Simon Mouradian
  • Date: 2012-10-19 10:35:59 UTC
  • mfrom: (3520.32.371 fluidity)
  • Revision ID: simon.mouradian06@imperial.ac.uk-20121019103559-y36qa47phc69q8sc
mergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Phase interaction options for Fluidity's multiphase flow model.
 
2
 
 
3
multiphase_interaction = 
 
4
   (
 
5
      ## Phase interaction options for Fluidity's multiphase flow model.
 
6
      element multiphase_interaction {
 
7
         comment,
 
8
         fluid_particle_drag?,
 
9
         heat_transfer?
 
10
      }
 
11
   ) 
 
12
 
 
13
fluid_particle_drag =
 
14
   (
 
15
      ## Fluid-particle drag term.
 
16
      element fluid_particle_drag {
 
17
         drag_correlation
 
18
      }
 
19
   )
 
20
 
 
21
drag_correlation =
 
22
   (
 
23
      ## Stokes drag correlation: 24/Re_p
 
24
      ## where Re_p is the particle Reynolds number.
 
25
      element drag_correlation {
 
26
         attribute name { "stokes" },
 
27
         comment
 
28
      }|
 
29
      ## Fluid-particle drag term by Wen & Yu (1966).
 
30
      element drag_correlation {
 
31
         attribute name { "wen_yu" },
 
32
         comment
 
33
      }|
 
34
      ## Fluid-particle drag term by Ergun (1952).
 
35
      element drag_correlation {
 
36
         attribute name { "ergun" },
 
37
         comment
 
38
      }
 
39
   )
 
40
   
 
41
heat_transfer =
 
42
   (
 
43
      ## Heat transfer term for the 
 
44
      ## multiphase internal energy equation.
 
45
      ## Note: Only for fluid-particle phase pairs.
 
46
      element heat_transfer {
 
47
         heat_transfer_coefficient
 
48
      }
 
49
   )
 
50
 
 
51
heat_transfer_coefficient =
 
52
   (
 
53
      ## Heat transfer coefficient by Gunn (1978).
 
54
      element heat_transfer_coefficient {
 
55
         attribute name { "gunn" },
 
56
         comment
 
57
      }
 
58
   )
 
 
b'\\ No newline at end of file'