From bc0ddf432ca2d9a90724bc65e2276536477409dc Mon Sep 17 00:00:00 2001 From: Gertjan van Zwieten Date: Mon, 28 Oct 2013 13:31:03 +0100 Subject: [PATCH] rename finity -> nutils --- README.md | 27 +++++----- nutils/_log/viewer.js | 106 +++++++++++++++++++-------------------- nutils/function.py | 4 +- nutils/numeric.py | 2 +- nutils/plot.py | 2 +- nutils/util.py | 6 +-- tests/test_doubleint.py | 2 +- tests/test_finitecell.py | 2 +- tests/test_function.py | 2 +- tests/test_pointdata.py | 2 +- tests/test_quadrature.py | 4 +- tests/test_topology.py | 2 +- 12 files changed, 81 insertions(+), 80 deletions(-) diff --git a/README.md b/README.md index 3850c7104..6f39ef552 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,22 @@ The Nutils Project ================== -The nutils project is a collaborative programming effort aimed at the creation -of a general purpose python programming library for setting up finite element -computations. Identifying features are a heavily object oriented design, strict -separation of topology and geometry, and CAS-like function arithmatic such as -found in maple and mathematica. Primary design goals are: +The nutils project is a collaborative programming effort aimed at the +creation of a general purpose python programming library for setting up finite +element computations. Identifying features are a heavily object oriented +design, strict separation of topology and geometry, and CAS-like function +arithmetic such as found in maple and mathematica. Primary design goals +are: - * __Readability__. Finite element scripts built on top of finity should focus - on workflow and maths, unobscured by finite element infrastructure. - * __Flexibility__. Finity is a toolbox; it does not enforce how its tools are - to be used. Missing components can be added locally without loosing + * __Readability__. Finite element scripts built on top of nutils should focus + on work flow and maths, unobscured by finite element infrastructure. + * __Flexibility__. The nutils are tools; they do not enforce a strict work + flow. Missing components can be added locally without loosing interoperability. * __Compatibility__. Exposed objects are of native python type or allow for easy conversion to leverage third party tools. - * __Speed__. Finity components are self-optimizing and support parallel - computation. Typical scripting inefficiencies are discouraged by design. + * __Speed__. Nutils are self-optimizing and support parallel computation. + Typical scripting inefficiencies are discouraged by design. -The nutils are under active development, and are presently in use by PhD and -MSc students for research on a variety of topics. +The nutils are under active development, and are presently in use for +academic research by Phd and MSc students. diff --git a/nutils/_log/viewer.js b/nutils/_log/viewer.js index d777461db..ee7064549 100644 --- a/nutils/_log/viewer.js +++ b/nutils/_log/viewer.js @@ -1,6 +1,6 @@ /** - * Finity - * Finity viewer, transforms a HTML document with a
 tag
+ * Nutils
+ * Nutils viewer, transforms a HTML document with a 
 tag
  * and links with class "plot" into a viewer.
  *
  * If the 
 contains a span with the id navbar this will be
@@ -11,162 +11,162 @@
  * a.nav_latestall  -> Shift + r
  * a.nav_index      -> i
  */
-function Finity() {
+function Nutils() {
     /**
-     * Finity._iframes
+     * Nutils._iframes
      * Enable iframes to view other datatypes
      */
     this._iframe = true;
 
     /**
-     * Finity._media
+     * Nutils._media
      * Media container 
* @var jQuery */ this._media; /** - * Finity._controls + * Nutils._controls * Controlbar
* @var jQuery */ this._controls; /** - * Finity._code + * Nutils._code * Code
      * @var jQuery
      */
     this._code;
 
     /**
-     * Finity._links
+     * Nutils._links
      * All plotable links 
      * @var jQuery
      */
     this._links;
 
     /**
-     * Finity._imglink
+     * Nutils._imglink
      * Link around image 
      * @var jQuery
      */
     this._imglink;
 
     /**
-     * Finity._img
+     * Nutils._img
      * Image 
      * @var jQuery
      */
     this._img;
 
     /**
-     * Finity._selGallery
+     * Nutils._selGallery
      * Select field for galleries 
      * @var jQuery
      */
     this._selView;
 
     /**
-     * Finity._btnFirst
+     * Nutils._btnFirst
      * Button to show first image in gallery field