Recent content by MelihAltunan

  1. M

    Fortran Fortran 90 (floating point error)

    I found silverfrost fortran which can work properly on 64 bit system. With using this program debugger, i am able to trace steps. Actually, it is amazing watch the code step by step, you can understand where exactly your error is. Anyway, thank you so much for your comments, i feel like i have...
  2. M

    Fortran Fortran 90 (floating point error)

    i did bisectional approach, writing stop statement. Unfournately i am not able to look at the variables after the code has crushed because the program shut down itself(that's why i am looking for compiler workin 64 bit system). Now, i am researching "stack trace", thank you for all your help.
  3. M

    Fortran Fortran 90 (floating point error)

    As following what you've said, i think i found which lines create problem. real stmiv(0:8,0:8) real fmom(0:8,0:n,0:m),fmeq(0:8,0:n,0:m) do i=0,n do j=0,m do k=0,8 sumb=0.0 do l=0,8 sumb=sumb+stmiv(k,l)*(fmom(l,i,j)-fmeq(l,i,j)) end do f(k,i,j)=f(k,i,j)-sumb end do end do end do do you have any...
  4. M

    Fortran Fortran 90 (floating point error)

    Hello, I am dealing with the code below and i am receiving 'runtime error M6104:MATH floating point error:overflow'. i searched the error online and it is written the output values have high range than input values that i represent as input. I am using Microsoft Developer Studio and since my...
  5. M

    Fortran Rank mismatch in argument (Fortran 90)

    yea, i noticed :), it is working now, thanks a lot.
  6. M

    Fortran Rank mismatch in argument (Fortran 90)

    i tried with IMPLICIT NONE but it had same problem again. Considering what you said, i added the code as an attachment. So, the best way is if you run the code with your own compiler, you will see the what is an error. I would be pleased if you can check the code that i uploaded. Thanks.
  7. M

    Fortran Rank mismatch in argument (Fortran 90)

    i checked the code rho has same dimensions everywhere and also i am receiving 'segmentation fault-invalid memory reference' error on simply fortran then it shows the line 11 above (fmeq(0,i,j)=rho(i,j)). And when i try to run on microsoft developer studio it says 'wrong number of arguments to...
  8. M

    Fortran Rank mismatch in argument (Fortran 90)

    Hello everyone, i am dealing with the code which can help me to solve fluid dynamics problems with using LBM methods. Anyways, since i am beginner on Fortran i couldn't solve the rank mismatch error, i think it is easy one but i just can't fix it, i am waiting for your help. Here is the problem...
Back
Top