HomerReid / scuff-em

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.
http://www.homerreid.com/scuff-em
GNU General Public License v2.0
125 stars 50 forks source link

#scuff-neq #RunScript #--Power #219

Open raminpouria opened 4 years ago

raminpouria commented 4 years ago

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.