Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • 70bf5e9
  • /
  • getEnergyScript.py
Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge
swh:1:cnt:2907ba4f647bc4de8f918f9b11296c4e4bc354e1
directory badge
swh:1:dir:70bf5e99543362ad259e4f1a4ade4d7219a68ef3

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
getEnergyScript.py
# Author: Vatsal Sanjay
# vatsalsanjay@gmail.com
# Physics of Fluids

import numpy as np
import os
import sys

nGFS = 5000
ci = int(sys.argv[1])
Rhor = float(sys.argv[2])
Ohd = float(sys.argv[3])
Ohf = float(sys.argv[4])
Bond  = float(sys.argv[5])

folder = 'bview'  # output folder
if not os.path.isdir(folder):
    os.makedirs(folder)

name = "%d_getEnergy.dat" % ci

if os.path.exists(name):
    print("File %s found! New data will be appended to the file" % name)
for ti in range(nGFS):
    t = 0.01 * ti
    place = "intermediate/snapshot-%5.4f" % t
    ImageName = "bview/%8.8d.png" % int(1e3*t)
    if not os.path.exists(place):
        print("File %s not found!" % place)
    else:
        if os.path.exists(ImageName):
            print("Image %s found!" % ImageName)
        else:
            exe = "./getVideo %s %s" % (place, ImageName)
            os.system(exe)
            print(("Doing %d of %d" % (ti, nGFS)))
            exe = "./getEnergyAxi %s %s %s %s %s %s" % (place, name, Rhor, Ohd, Ohf, Bond)
            os.system(exe)
            

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API