New Reply

simulating N particle system

 
Share Thread
Jul8-11, 03:37 PM   #1
 

simulating N particle system


When simulating N particles in FORTRAN:

- How do I declare x,y,z,vx,vy,vz for arbitrarily large number of particles N?
- How do I write out data for each particle without N write statements?

I intend to have a time-step do loop with a particle do loop inside so that at each time step I cycle through each particle, do the computation, and update the data.
PhysOrg.com science news on PhysOrg.com

>> Leading 3-D printer firms to merge in $403M deal (Update)
>> LA to give every student an iPad; $30M order
>> CIA faulted for choosing Amazon over IBM on cloud contract
Jul12-11, 01:15 PM   #2
 
I am simulating a multiparticle system using FORTRAN language. But my question is a general programming question regarding how to write data.

I am using a loop to cycle through a number of particles, and running a numerical computation and writing out data at each time step. So a particle loop with a time loop inside of it so that each particles trajectory over all time is calculated one particle at a time.

My question is simply:
-How can I use the loop index referring to the particle in a WRITE statement so that for each particle I open a new data file, without having to create a WRITE statement for each particle individually?

-Would it be easier to write all the data into one data file, just having the write statement tab over after each particle or something like that?

Theoretically, I need to be able to take that data file to a graphics program and visualize it from raw data. No GUI.
Jul13-11, 01:26 PM   #3
 
Mentor
I'll answer in general terms, since it's been forever since I programmed in FORTRAN.

You cannot use an array for an "arbitrarily large number of particles". You would need to create a datastructure like a linked list, which you can grow and shrink as needed.

What "No GUI" graphics program do you intend to use to visualize the data? That will start to determine what format you use when you write out the data.

You could use something as simple as Excel to visualize the data, if you write it out as comma-separated or tab-separated data, one line of data (for all of the particles) per time slice.
New Reply

Tags
data, fortran, multiparticle, numerical, write statement

Similar discussions for: simulating N particle system
Thread Forum Replies
Simulating the solar system Astrophysics 4
Simulating OFDM system performance under different frequency offsets using MATLAB Engineering, Comp Sci, & Technology Homework 1
Simulating a discrete time system Engineering, Comp Sci, & Technology Homework 0
2 particle system: Photon + Massive particle Classical Physics 6
Simulating a particle using the law of lever<!-- General Physics 0