Skip to content
Snippets Groups Projects
Select Git revision
  • 9ab8173e82f2bc19fafd5a20f69172ab8fa6cb17
  • master default protected
  • darwin/gear_chemistry_fluxes
  • reyz/gear_preSN_feedback
  • fstasys/VEP_Fm2
  • MHD_canvas protected
  • sidm_merge protected
  • beyond-mesh-pair-removal
  • darwin/gear_preSN_fbk_merge
  • fewer_gpart_comms
  • zoom_merge protected
  • MAGMA2_matthieu
  • forcing_boundary_particles
  • melion/BalsaraKim
  • darwin/sink_mpi_physics
  • darwin/gear_mechanical_feedback
  • FS_VP_m2_allGrad
  • improve-snap-to-ic
  • karapiperis/Bcomoving_as_a2_Bphysical
  • split-space-split
  • reyz/debug
  • v2025.10 protected
  • v2025.04 protected
  • v2025.01 protected
  • v1.0.0 protected
  • v0.9.0 protected
  • v0.8.5 protected
  • v0.8.4 protected
  • v0.8.3 protected
  • v0.8.2 protected
  • v0.8.1 protected
  • v0.8.0 protected
  • v0.7.0 protected
  • v0.6.0 protected
  • v0.5.0 protected
  • v0.4.0 protected
  • v0.3.0 protected
  • v0.2.0 protected
  • v0.1.0-pre protected
  • v0.1 protected
  • v0.0 protected
41 results

makeIC.py

Blame
  • user avatar
    Matthieu Schaller authored
    a34380eb
    History
    makeIC.py 4.34 KiB
    ###############################################################################
     # This file is part of SWIFT.
     # Copyright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk),
     #                    Matthieu Schaller (matthieu.schaller@durham.ac.uk)
     # 
     # This program is free software: you can redistribute it and/or modify
     # it under the terms of the GNU Lesser General Public License as published
     # by the Free Software Foundation, either version 3 of the License, or
     # (at your option) any later version.
     # 
     # This program is distributed in the hope that it will be useful,
     # but WITHOUT ANY WARRANTY; without even the implied warranty of
     # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     # GNU General Public License for more details.
     # 
     # You should have received a copy of the GNU Lesser General Public License
     # along with this program.  If not, see <http://www.gnu.org/licenses/>.
     # 
     ##############################################################################
    
    import h5py
    import random
    from numpy import *
    
    # Generates a swift IC file for the Gresho Vortex in a periodic box
    
    # Parameters
    periodic= 1      # 1 For periodic box
    factor = 3
    boxSize = [ 1.0 , 1.0, 1.0/factor ]
    L = 120           # Number of particles along one axis
    gamma = 5./3.     # Gas adiabatic index
    eta = 1.2349      # 48 ngbs with cubic spline kernel
    rho = 1           # Gas density
    P0 = 0.           # Constant additional pressure (should have no impact on the dynamics)
    fileName = "greshoVortex.hdf5" 
    vol = boxSize[0] * boxSize[1] * boxSize[2]
    
    
    #---------------------------------------------------
    
    numPart = L**3 / factor
    mass = boxSize[0]*boxSize[1]*boxSize[2] * rho / numPart
    
    #Generate particles
    coords = zeros((numPart, 3))
    v      = zeros((numPart, 3))
    m      = zeros((numPart, 1))
    h      = zeros((numPart, 1))
    u      = zeros((numPart, 1))
    ids    = zeros((numPart, 1), dtype='L')
    
    partId=0
    for i in range(L):
        for j in range(L):
            for k in range(L/factor):
                index = i*L*L/factor + j*L/factor + k
                x = i * boxSize[0] / L + boxSize[0] / (2*L)
                y = j * boxSize[0] / L + boxSize[0] / (2*L)
                z = k * boxSize[0] / L + boxSize[0] / (2*L)
                r2 = (x - boxSize[0] / 2)**2 + (y - boxSize[1] / 2)**2
                r = sqrt(r2)
                coords[index,0] = x
                coords[index,1] = y
                coords[index,2] = z
                v_phi = 0.
                if r < 0.2:
                    v_phi = 5.*r
                elif r < 0.4:
                    v_phi = 2. - 5.*r
                else:
                    v_phi = 0.
                v[index,0] = -v_phi * (y - boxSize[0] / 2) / r
                v[index,1] =  v_phi * (x - boxSize[0] / 2) / r
                v[index,2] = 0.
                m[index] = mass
                h[index] = eta * boxSize[0] / L
                P = P0
                if r < 0.2:
                    P = P + 5. + 12.5*r2
                elif r < 0.4:
                    P = P + 9. + 12.5*r2 - 20.*r + 4.*log(r/0.2)
                else:
                    P = P + 3. + 4.*log(2.)
                u[index] = P / ((gamma - 1.)*rho)
                ids[index] = partId + 1
                partId = partId + 1
    
    
    
    #File
    file = h5py.File(fileName, 'w')
    
    # Header
    grp = file.create_group("/Header")
    grp.attrs["BoxSize"] = boxSize
    grp.attrs["NumPart_Total"] =  [numPart, 0, 0, 0, 0, 0]
    grp.attrs["NumPart_Total_HighWord"] = [0, 0, 0, 0, 0, 0]
    grp.attrs["NumPart_ThisFile"] = [numPart, 0, 0, 0, 0, 0]
    grp.attrs["Time"] = 0.0
    grp.attrs["NumFilesPerSnapshot"] = 1
    grp.attrs["MassTable"] = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
    grp.attrs["Flag_Entropy_ICs"] = [0, 0, 0, 0, 0, 0]
    
    #Runtime parameters
    grp = file.create_group("/RuntimePars")
    grp.attrs["PeriodicBoundariesOn"] = periodic
    
    #Units
    grp = file.create_group("/Units")
    grp.attrs["Unit length in cgs (U_L)"] = 1.
    grp.attrs["Unit mass in cgs (U_M)"] = 1.
    grp.attrs["Unit time in cgs (U_t)"] = 1.
    grp.attrs["Unit current in cgs (U_I)"] = 1.
    grp.attrs["Unit temperature in cgs (U_T)"] = 1.
    
    #Particle group
    grp = file.create_group("/PartType0")
    ds = grp.create_dataset('Coordinates', (numPart, 3), 'd')
    ds[()] = coords
    ds = grp.create_dataset('Velocities', (numPart, 3), 'f')
    ds[()] = v
    ds = grp.create_dataset('Masses', (numPart,1), 'f')
    ds[()] = m
    ds = grp.create_dataset('SmoothingLength', (numPart,1), 'f')
    ds[()] = h
    ds = grp.create_dataset('InternalEnergy', (numPart,1), 'f')
    ds[()] = u
    ds = grp.create_dataset('ParticleIDs', (numPart,1), 'L')
    ds[()] = ids[:]
    
    file.close()