+ Reply to Thread
Results 1 to 2 of 2

numerical iteration

Hybrid View

  1. #1
    Registered User
    Join Date
    10-14-2011
    Location
    Bangkok, Thailand
    MS-Off Ver
    Excel 2003
    Posts
    1

    numerical iteration

    I try to makea loop to iterate a function. The resulting value should reach a target value ( should not be lower than the target value. However this loop makes only one calc and result shows P0Start -1 as result.

    Function InletP(P0Start, P2target, Flow2, Flow1, P1D, P2D)
    P0 = P0Start
    For i = 1 To 5000 Step 1
    P0 = P0 - i
    P2 = Sqr(P0 * P0 - Flow2 * Flow2 * (P1D * P1D - P2D * P2D) / (Flow1 * Flow1))
    If (P2 < P2target) Then InletP = P0 Else P0 = P0 - 1
    Exit For
    Next i
    End Function

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,241

    Re: numerical iteration

    Please add CODE tags to your code excerpt and I will offer an answer.

    Regards
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1