View Issue Details

IDProjectCategoryView StatusLast Update
0000721OpenFOAMBugpublic2013-02-12 09:06
Reporteruser15Assigned Touser2 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Summary0000721: PIlchErdman breakup
DescriptionThere's a mistake in the Pilch Erdman breakup model according to this old post
http://www.cfd-online.com/Forums/openfoam/91795-bug-pilcherdman-breakup-model.html
Steps To ReproduceThe mistake is in this segment.
 
       scalar Vd = Urmag*rho12*(B1_*taubBar * B2_*taubBar*taubBar);
        scalar Vd1 = sqr(1.0 - Vd/Urmag);
        Vd1 = max(Vd1, SMALL);
        scalar Ds = 2.0*Wec*sigma*Vd1/(Vd1*rhoc*sqr(Urmag));
Additional InformationReplace * with +
       scalar Vd = Urmag*rho12*(B1_*taubBar + B2_*taubBar*taubBar);

and remove the Vd1 from the nominator
      scalar Ds = 2.0*Wec*sigma/(Vd1*rhoc*sqr(Urmag));
TagsNo tags attached.

Activities

user2

2013-02-12 09:05

  ~0001900

Thanks for the report - corrected by commit 95f480

Issue History

Date Modified Username Field Change
2013-01-16 21:44 user15 New Issue
2013-02-12 09:05 user2 Note Added: 0001900
2013-02-12 09:05 user2 Status new => resolved
2013-02-12 09:05 user2 Fixed in Version => 2.1.x
2013-02-12 09:05 user2 Resolution open => fixed
2013-02-12 09:05 user2 Assigned To => user2