Recent content by ShoxPhysics
-
S
Fortran Vector Magic and Naming Conventions for Fortran
I have just about finished this program, I only need to calculate my velocity. I think that this velocity should be calculated by taking the value from the 4th column of my data set here:https://docs.google.com/file/d/0BzuDEPd26OcheVhiWlZ3STlZU0k/edit?usp=sharing which have called ivar_3 and...- ShoxPhysics
- Thread
- Data Set Velocity
- Replies: 2
- Forum: Programming and Computer Science
-
S
Fortran Finding Maximum Acceleration Values in Fortran
Thank you!- ShoxPhysics
- Post #7
- Forum: Programming and Computer Science
-
S
Fortran Finding Maximum Acceleration Values in Fortran
So do I create a separate do loop? something like this: Do i=1,72000 read(line,*) rvar, ivar1, ivar2, ivar3 If (ivar1 >> ivar1) then MaxVert=ivar1 or am I way off track?- ShoxPhysics
- Post #5
- Forum: Programming and Computer Science
-
S
Fortran Finding Maximum Acceleration Values in Fortran
gsal, I apologize. The incorrect version posted, this version is the updated one with Maximum values but I am unsure if I have coded correctly. New code is in blue program WSUPhys_csv implicit none integer :: stat, num_lines, ivar1, ivar2, ivar3 real :: rvar character*80 :: line...- ShoxPhysics
- Post #3
- Forum: Programming and Computer Science
-
S
Fortran Finding Maximum Acceleration Values in Fortran
Hello I am currently working on a program that will take the values from a .csv file containing multiple data and analyzing them. The file can be found here: https://docs.google.com/file/d/0BzuDEPd26OcheVhiWlZ3STlZU0k/edit?usp=sharing The data in question starts in row 11 and is in the first 4...- ShoxPhysics
- Thread
- Fortran Maximum
- Replies: 6
- Forum: Programming and Computer Science