Difference between revisions of "Applications/Lumerical"
From HPC
(Created page with "__TOC__ ==Application Details== * Description: Lumerical (Ansys) * Version: 2023-R2 * Modules: lumerical/2023-R2/ompi * Licence: Commercial ==Usage Examples== 3D/2D Maxwel...") |
|||
Line 54: | Line 54: | ||
mpirun singularity exec ${LUMERICALAPP} fdtd-engine-ompi-lcl /home/USERNAME/ExampleLumericalTask.fsp | mpirun singularity exec ${LUMERICALAPP} fdtd-engine-ompi-lcl /home/USERNAME/ExampleLumericalTask.fsp | ||
</pre> | </pre> | ||
+ | |||
+ | (note this sample job runs for 10 minutes, please adjust as appropriate) | ||
{{Licensepagenav}} | {{Licensepagenav}} |
Latest revision as of 08:43, 15 February 2024
Contents
Application Details
- Description: Lumerical (Ansys)
- Version: 2023-R2
- Modules: lumerical/2023-R2/ompi
- Licence: Commercial
Usage Examples
3D/2D Maxwell's solver for nanophotonic devices and provides solutions for the following applications:
- CMOS Image Sensors
- Solar Cells
- OLEDs
- Integrated Optics
- Surface Metrology
- Surface Plasmons
- Metamaterials
- Photonic Crystals
- Liquid Crystals
- Graphene
Note: connection to a FlexNet style license server will be required to run this software
In an interactive session, if you use the
singularitympiexec fdtd-engine-ompi-lcl ExampleLumericalTask.fsp
approach, this should try and make use of all the cores requested.
In a submission script, use:
mpirun singularity exec ${LUMERICALAPP} fdtd-engine-ompi-lcl /home/USERNAME/ExampleLumericalTask.fsp
E.g.
#!/bin/bash #SBATCH -J LumericalTest #SBATCH -N 1 #SBATCH -n 40 #SBATCH -o %j.log #SBATCH -e %j.err #SBATCH -p ecompute #SBATCH --time=10:00 module add lumerical/2023-R2/ompi mpirun singularity exec ${LUMERICALAPP} fdtd-engine-ompi-lcl /home/USERNAME/ExampleLumericalTask.fsp
(note this sample job runs for 10 minutes, please adjust as appropriate)