UnivofPittBull
MIS
i'm doing a cfd project in fortran for a class and i am having the silliest problem. I use salford's F95 compiler with Plato IDE. I declare a matrix with:
real uold(nx,nx),unew(nx,nx)
and i have to initialize it with certain values at the "boundaries" however if i put in a number bigger that 100 it stores a garbage number for some reason so when i print it to a file i get ****** in the place of the number.
heres how i'm trying to assign a value
do j=1,22
uold(i,j)= 300.
unew(i,j)= 300.
end do
end do
i've tried everything i know with no avail. Please Help
real uold(nx,nx),unew(nx,nx)
and i have to initialize it with certain values at the "boundaries" however if i put in a number bigger that 100 it stores a garbage number for some reason so when i print it to a file i get ****** in the place of the number.
heres how i'm trying to assign a value
do j=1,22
uold(i,j)= 300.
unew(i,j)= 300.
end do
end do
i've tried everything i know with no avail. Please Help