Changeset 478
Legend:
- Unmodified
- Added
- Removed
-
trunk/eml/heat_exchangers/DoublePipe.mso
r472 r478 608 608 609 609 FlowDirection as Switcher (Brief="Flow Direction",Valid=["counter","cocurrent"],Default="cocurrent"); 610 610 Eftestimated as positive (Brief="Effectiveness estimate",Default=0.5); 611 611 612 VARIABLES 612 613 … … 615 616 EQUATIONS 616 617 618 "Effectiveness Correction" 619 Method.Eft1 = 1; 620 621 switch CalculationApproach 622 623 case "Full": 624 617 625 "Number of Units Transference" 618 626 Method.NTU*Method.Cmin = Details.Ud*Pi*DoInner*Lpipe; … … 626 634 "Thermal Capacity Ratio" 627 635 Method.Cr = Method.Cmin/Method.Cmax; 628 629 "Effectiveness Correction"630 Method.Eft1 = 1;631 636 632 637 if Method.Cr equal 0 … … 663 668 end 664 669 670 end 671 672 case "Simplified": 673 674 "Number of Units Transference" 675 Method.NTU = 1; 676 677 "Minimum Heat Capacity" 678 Method.Cmin = min([Method.Ch,Method.Cc]); 679 680 "Maximum Heat Capacity" 681 Method.Cmax = max([Method.Ch,Method.Cc]); 682 683 "Thermal Capacity Ratio" 684 Method.Cr = 1; 685 686 "Effectiveness" 687 Method.Eft = Eftestimated; 688 665 689 end 666 690
Note: See TracChangeset
for help on using the changeset viewer.