A comprehensive and full-featured computational physics suite for boundary-element analysis of electromagnetic scattering, fluctuation-induced phenomena (Casimir forces and radiative heat transfer), nanophotonics, RF device engineering, electrostatics, and more. Includes a core library with C++ and python APIs as well as many command-line applications.
Hi, Dr. Reid, My name is Ramin and I am a Msater student. I am trying to learn how to run your code and I have experienced an issue. I am trying to implement the second part of one of the solved examples (Thermal radiation, heat transfer, and non-equilibrium Casimir forces between silicon dioxide spheres). In tutorial, you introduce a simple script file named "RunScript" which is as follows:
!/bin/bash
for N in 501 1479
do
ARGS=""
ARGS="${ARGS} --geometry SiO2Spheres_${N}.scuffgeo"
ARGS="${ARGS} --OmegaFile OmegaFile"
ARGS="${ARGS} --Power --ZForce"
ARGS="${ARGS} --DSIRadius 5"
ARGS="${ARGS} --DSIPoints 302"
scuff-neq ${ARGS}
done
when I try to execute it, I get this error below:
error unknown option --Power
I checked my scuff-neq options and there is no --Power option.
I really appreciate if you help me with this problem.
Hi, Dr. Reid, My name is Ramin and I am a Msater student. I am trying to learn how to run your code and I have experienced an issue. I am trying to implement the second part of one of the solved examples (Thermal radiation, heat transfer, and non-equilibrium Casimir forces between silicon dioxide spheres). In tutorial, you introduce a simple script file named "RunScript" which is as follows:
!/bin/bash
for N in 501 1479 do ARGS="" ARGS="${ARGS} --geometry SiO2Spheres_${N}.scuffgeo" ARGS="${ARGS} --OmegaFile OmegaFile" ARGS="${ARGS} --Power --ZForce" ARGS="${ARGS} --DSIRadius 5" ARGS="${ARGS} --DSIPoints 302"
scuff-neq ${ARGS} done
when I try to execute it, I get this error below:
error unknown option --Power
I checked my scuff-neq options and there is no --Power option. I really appreciate if you help me with this problem.