diff options
author | 2021-11-19 14:32:40 -0800 | |
---|---|---|
committer | 2021-11-19 14:32:40 -0800 | |
commit | 279aadf47f2c19c17129e83a0bc4544f280e7068 (patch) | |
tree | ddd3d4bd35e5754aab5cefcfb889a2fafb621e07 /Examples/Physics_applications | |
parent | a1104408d0752b791622d564e2a6e556b144b1d1 (diff) | |
download | WarpX-279aadf47f2c19c17129e83a0bc4544f280e7068.tar.gz WarpX-279aadf47f2c19c17129e83a0bc4544f280e7068.tar.zst WarpX-279aadf47f2c19c17129e83a0bc4544f280e7068.zip |
add github ci compile check for ascent (#2483)
* add github ci compile check for ascent
* now with less whitespace
* add ascent to insitu workflow
* Update .github/workflows/insitu.yml
Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja>
* more style
* try to run as existing user
* new container
* use env script
* path fix
* add ascent test
* fix space
* move test resources
* get into style
* style
* Ascent CI: Cleanup (#1)
- make sure inputs file stays up-to-date
- locate alongside example
* Update .github/workflows/insitu.yml
Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja>
* Update .github/workflows/insitu.yml
Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja>
* rename test file
* fix for cp
* improve color table for vol rendering
* now with rotation
Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja>
Diffstat (limited to 'Examples/Physics_applications')
-rw-r--r-- | Examples/Physics_applications/laser_acceleration/3d_ascent_actions.yaml | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/Examples/Physics_applications/laser_acceleration/3d_ascent_actions.yaml b/Examples/Physics_applications/laser_acceleration/3d_ascent_actions.yaml new file mode 100644 index 000000000..c5b710587 --- /dev/null +++ b/Examples/Physics_applications/laser_acceleration/3d_ascent_actions.yaml @@ -0,0 +1,76 @@ +# +# This actions file tests: +# Rendering a Contour of Ey +# Volume Rendering Ey +# Rendering the Electrons Particle mesh +# Exporting Blueprint HDF5 files +# +- + action: add_pipelines + pipelines: + contour_pipeline: + f0: + params: + field: Ey + levels: 16 + type: contour +- + action: add_scenes + scenes: + ey_contour_pc: + plots: + p0: + field: Ey + pipeline: contour_pipeline + type: pseudocolor + renders: + r1: + camera: + azimuth: 90.0 + image_prefix: "ey_contour_pc_" + ey_volrend: + plots: + p0: + field: Ey + type: volume + min_value: -3e+12 + max_value: 3e+12 + color_table: + name: "Cool to Warm Extended" + control_points: + - + type: "alpha" + position: 0.0 + alpha: 1.0 + - + type: "alpha" + position: 0.5 + alpha: 0.0 + - + type: "alpha" + position: 1.0 + alpha: 1.0 + renders: + r1: + camera: + azimuth: 90.0 + image_prefix: "ey_volrend_" + uz_pc: + plots: + p0: + field: particle_electrons_uz + type: pseudocolor + renders: + r1: + camera: + azimuth: 90.0 + image_prefix: "uz_pc_" +- + action: add_extracts + extracts: + e1: + params: + path: ./conduit_blueprint + protocol: blueprint/mesh/hdf5 + type: relay + |