-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
101 lines (69 loc) · 2.54 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
========
SCUFF-EM
========
SCUFF-EM is a free open-source software suite for boundary-element analysis of
problems in computational electromagnetism and related fields.
SCUFF-EM stands for
Surface-CUrrent-Field Formulation of ElectroMagnetism
For documentation and further information on SCUFF-EM, and to download binary
and source packages, visit the SCUFF-EM homepage:
http://www.homerreid.com/scuff-em
The SCUFF-EM distribution includes the following components:
* libscuff, a C++ library that implements the basic boundary-element
solver functionality
* a number of ancillary C++ libraries implementing utility functions
* a collection of simple C++ code examples demonstrating how to use
the libscuff API
* a collection of standalone application programs, built atop
libscuff and its associated libraries, for solving specialized problems in
computational electromagnetism and related fields.
The standalone application programs distributed with SCUFF-EM
include the following:
``scuff-scatter``:
A comprehensive tool for computing the fields scattered from arbitrary
geometries irradiated by arbitrary user-specified incident fields
``scuff-RF``:
A tool for analyzing passive RF and microwave devices: RF antennas, coaxial
cables, MRI coils, lumped-element passives, etc. scuff-RF can compute
``scuff-cas2D``, ``scuff-cas3D``, ``scuff-caspol``:
Tools for computing Casimir forces between 2D and 3D objects of arbitrary
geometries and material properties, as well as Casimir-Polder potentials
for polarizable molecules in the vicinity of complex material surfaces.
Install scuff-em
================
Dependencies
------------
* libtool
* bison
* flex
* liblapack-dev
* libblas-dev
* libhdf5-serial-dev
* python-dev
* gmsh
* (python3-pytest or python-pytest)
* probably missing dependencies are: cmake, build-essentials...
From git repository
-------------------
Checkout the main module and the submodules::
git clone https://github.com/derNarr/scuff-em.git
# or git clone http://homerreid.com/scuff-em.git
git submodule init
git submodule update # modules will be added from homerreid.com
Now run ./autogen.sh::
cd scuff-em
./autogen --prefix=${HOME}/scuff-em
make
make install
Add executables to path::
export PATH=${HOME}/scuff-em/bin/:$PATH
Run tests::
cd unitTests/py_tests
py.test
More information about the tests for the py.test framework can be found in
unitTests/py_tests/README.rst.
Tested system
-------------
* Ubuntu 14.04
* lex 2.5.35
* yacc bison (GNU Bison) 3.0.2