Skip to content
  • Search
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

ZMT zurich med tech

  1. Home
  2. Sim4Life
  3. Analysis & Postprocessing
  4. Understand the h5 file structure

Understand the h5 file structure

Scheduled Pinned Locked Moved Analysis & Postprocessing
3 Posts 2 Posters 1.4k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Seif_Elkerdany
    wrote on last edited by
    #1

    After running the simulation the results are saved on my computer as h5 file so I want to understand how the sensor readings are stored in the h5 file.
    I want to extract the current density value per voxel. Is it feasible if I have the result h5 file?

    1 Reply Last reply
    0
    • brynB Offline
      brynB Offline
      bryn
      ZMT
      wrote on last edited by
      #2

      The current density is computed on the fly in the sensor extractor in Sim4Life. It is not stored in the .h5 file.

      1 Reply Last reply
      0
      • brynB Offline
        brynB Offline
        bryn
        ZMT
        wrote on last edited by bryn
        #3

        to get the current density in Python you could use a script like

        import s4l_v1.document as document
        
        try:
            # add a SimulationExtractor for the simulation call "LF"
            simulation = document.AllSimulations["LF"]
            simulation_extractor = simulation.Results()
        
            # create an EmSensorExtractor
            em_sensor_extractor = simulation_extractor["Overall Field"]
            em_sensor_extractor.FrequencySettings.ExtractedFrequency = u"All"
            document.AllAlgorithms.Add(em_sensor_extractor)
        
            # update the pipeline, make sure current density is extracted
            em_sensor_extractor.Outputs["J(x,y,z,f0)"].Update()
        
            # get data
            current_density_field = em_sensor_extractor.Outputs["J(x,y,z,f0)"].Data
        
        except Exception as exc:
            import traceback
            traceback.print_exc()
        
        1 Reply Last reply
        1

        Hello! It looks like you're interested in this conversation, but you don't have an account yet.

        Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

        With your input, this post could be even better 💗

        Register Login
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Search