Recent content by MelihAltunan
-
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...- MelihAltunan
- Post #8
- Forum: Programming and Computer Science
-
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.- MelihAltunan
- Post #5
- Forum: Programming and Computer Science
-
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...- MelihAltunan
- Post #4
- Forum: Programming and Computer Science
-
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...- MelihAltunan
- Thread
- Error Fortran Point
- Replies: 8
- Forum: Programming and Computer Science
-
M
Fortran Rank mismatch in argument (Fortran 90)
yea, i noticed :), it is working now, thanks a lot.- MelihAltunan
- Post #8
- Forum: Programming and Computer Science
-
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.- MelihAltunan
- Post #6
- Forum: Programming and Computer Science
-
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...- MelihAltunan
- Post #3
- Forum: Programming and Computer Science
-
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...- MelihAltunan
- Thread
- Argument rank
- Replies: 7
- Forum: Programming and Computer Science