banner

The site's hierarchy



Home page :: Private area :: Site Map :: Credits
Science / Conditions Initiales / Conditions initiales cosmologiques / Codes / GRAFIC I / File Format

Navigation

Mar 2009
MTWTFSS
2324252627281
2345678
9101112131415
16171819202122
23242526272829
303112345
News
  • Les premiers zoom de galaxies sont accessibles
  • Le halo FOF 6133 de la boite Horizon L et le halo FOF 544 de Horizon S ont été resimulés avec plusieurs techniques de zoom. Il est important que chaque "zoomer" valide sa méthode, avant de lancer une campagne de zoom sur un plus grand cataloque.
  • Les données de la simulation Mare Nostrum sont disponibles
  • 34 snapshots jusqu’à z=4 sont accessibles sur horizon3 et sur le serveur de fichiers de l’IDRIS à la collaboration Horizon.
  • Méso Machine HPC1 opérationnelle
  • Depuis le 23 Octobre 2005, la Méso machine du site horizon est operationnelle. Elle correspond à 3 quadriprocesseurs avec chacun 64 Giga de RAM reliés par infiniband, ainsi qu’un access conséquent (sur une base de projet dédié) au reste de la ferme). Son acces est ouvert a toute personne de la collaboration ayant acces à la minigrille et qui en fait la demande a admin-minigrille
  • http://
  • Workshop Horizon le 14 et 15 novembre 2005
  • Il aura lieu à Paris les 14 et 15 novembre 2005 (prévoir une nuit sur place). L’enregistrement est ouvert dans la rubrique "meeting!"
  • http://

File Format


by Aubert Dominique (Monday 12 June 2006)

GRAFIC 1 outputs the files via the unformatted Fortran file format. In these files, the seven fields (ic_deltab, ic_velbx/y/z, ic_velcx/y/z) are described on a regular grid.

The seven outputs follows the same structure:

  • A header: a single reccord which contains
    • np1,np2,np3 : 3 integers(kind=4) describing the size of the grid along the 3 directions.
    • dx : the size of a grid element in Mpc/h (real*4)
    • x1o,x2o,x3o: the coordinates of the grid’s origin (real*4).
    • astart: the initial scale factor (real*4)
    • omegam, omegav: \Omega_m and \Omega_\Lambda (real*4).
    • h0 : the hubble constant (real*4)
  • The ICs data: it consists in np3 reccords of np1*np2 matrix, i.e. ICs are organised in layers along the z-direction. This feature can be easily used to spare memory usage when these files are manipulated, since layers can be uploaded sequentially in memory. Velocities are in km/s while density is expressed in terms of density contrast.

The following fortran example shows how to read such files:


open(10,file=filename(i_file),form='unformatted')
read (10)np1,np2,np3,dx,x1o,x2o,x3o,astart,omegam,omegav,h0

allocate(f(np1,np2,np3))
do i3=1,np3
 read(10) ((f(i1,i2,i3),i1=1,np1),i2=1,np2)
enddo

White Noise files follow the same data structure, with a different header format. The header stands as a single record which contains the following variables:

  • np1,np2,np3 : 3 integers(kind=4) describing the size of the grid along the 3 directions.
  • iseed : the seed of the random generator, integer (kind=4).

Subsequent layers are organised in the same way as the density and velocities fields.