Recent content by rajpintoo

  1. R

    Comp Sci Carburization: Calculating Time w/Bisection Method

    So my code compiles but now i get an error when I put in data and enter choice b it says exception access violation traceback not available
  2. R

    Comp Sci Carburization: Calculating Time w/Bisection Method

    MODULE space_data REAL :: L !LENGTH OF THE BAR REAL :: temp !TEMPERATURE IN KELVIN REAL :: d_0 !CONSTANT DIFFUSION PARAMETER REAL :: q !ACTIVATION ENERGY REAL :: c_0 !INITIAL CONCENTRATION AT X=0 REAL :: r=8.31 !IDEAL GAS CONSTANT IN J/molK REAL :: c_r !DESIRED END CONCENTRATION INTEGER...
  3. R

    Comp Sci Carburization: Calculating Time w/Bisection Method

    hmm so all I have to do in terms of putting a function within a function is to put the parenthesis afterwards but won't it thinks its an array or something?
  4. R

    Comp Sci Carburization: Calculating Time w/Bisection Method

    oh for your computation problem was this the issue The initial search interval [A,B] is given in years. The calculations require you to convert these two into seconds.  Likewise, the answer you get will be in seconds. You have to convert it back to years before you print it out.
  5. R

    Comp Sci Carburization: Calculating Time w/Bisection Method

    How exactly are you supposed to do the functions because that's what causing me the problems
  6. R

    Comp Sci Carburization: Calculating Time w/Bisection Method

    K put in the t function stuff but I am still getting errors, how did you define your function within the main program? also what do you mean imput variables for dummy variables?
  7. R

    Comp Sci Carburization: Calculating Time w/Bisection Method

    Hmm alriight it says that C_avg has no implicit type
  8. R

    Comp Sci Carburization: Calculating Time w/Bisection Method

    Can someone just error check this and explain what's wrong the compiler just tells me random errors which I don't know
  9. R

    Comp Sci Carburization: Calculating Time w/Bisection Method

    MODULE space_data REAL :: l !LENGTH OF THE BAR REAL :: temp !TEMPERATURE IN KELVIN REAL :: d_0 !CONSTANT DIFFUSION PARAMETER REAL :: q !ACTIVATION ENERGY REAL :: c_0 !INITIAL CONCENTRATION AT X=0 REAL :: r=8.31 !IDEAL GAS CONSTANT IN J/molK REAL :: c_r !DESIRED END CONCENTRATION...
Back
Top