Giter VIP home page Giter VIP logo

wisdem's Introduction

WISDEM®

Actions Status Coverage Status Documentation Status

The Wind-Plant Integrated System Design and Engineering Model (WISDEM®) is a set of models for assessing overall wind plant cost of energy (COE). The models use wind turbine and plant cost and energy production as well as financial models to estimate COE and other wind plant system attributes. WISDEM® is accessed through Python, is built using OpenMDAO, and uses several sub-models that are also implemented within OpenMDAO. These sub-models can be used independently but they are required to use the overall WISDEM® turbine design capability. Please install all of the pre-requisites prior to installing WISDEM® by following the directions below. For additional information about the NWTC effort in systems engineering that supports WISDEM® development, please visit the official NREL systems engineering for wind energy website.

Author: NREL WISDEM Team

Documentation

See local documentation in the docs-directory or access the online version at https://wisdem.readthedocs.io/en/master/

Packages

WISDEM® is a family of modules. The core modules are:

  • CommonSE includes several libraries shared among modules
  • FloatingSE works with the floating platforms
  • DrivetrainSE sizes the drivetrain and generator systems (formerly DriveSE and GeneratorSE)
  • TowerSE is a tool for tower (and monopile) design
  • RotorSE is a tool for rotor design
  • NREL CSM is the regression-based turbine mass, cost, and performance model
  • ORBIT is the process-based balance of systems cost model for offshore plants
  • LandBOSSE is the process-based balance of systems cost model for land-based plants
  • Plant_FinanceSE runs the financial analysis of a wind plant

The core modules draw upon some utility packages, which are typically compiled code with python wrappers:

  • Airfoil Preppy is a tool to handle airfoil polar data
  • CCBlade is the BEM module of WISDEM
  • pyFrame3DD brings libraries to handle various coordinate transformations
  • MoorPy is a quasi-static mooring line model
  • pyOptSparse provides some additional optimization algorithms to OpenMDAO

Installation

Installation with Anaconda is the recommended approach because of the ability to create self-contained environments suitable for testing and analysis. WISDEM® requires Anaconda 64-bit. However, the conda command has begun to show its age and we now recommend the one-for-one replacement with the Miniforge3 distribution, which is much more lightweight and more easily solves for the WISDEM package dependencies.

Installation as a "library"

To use WISDEM's modules as a library for incorporation into other scripts or tools, WISDEM is available via conda install wisdem or pip install wisdem, assuming that you have already setup your python environment. Note that on Windows platforms, we suggest using conda exclusively.

Installation for direct use

These instructions are for interaction with WISDEM directly, the use of its examples, and the direct inspection of its source code.

The installation instructions below use the environment name, "wisdem-env," but any name is acceptable. For those working behind company firewalls, you may have to change the conda authentication with conda config --set ssl_verify no. Proxy servers can also be set with conda config --set proxy_servers.http http://id:pw@address:port and conda config --set proxy_servers.https https://id:pw@address:port. To setup an environment based on a different Github branch of WISDEM, simply substitute the branch name for master in the setup line.

  1. Setup and activate the Anaconda environment from a prompt (Anaconda3 Power Shell on Windows or Terminal.app on Mac)

    conda config --add channels conda-forge
    conda env create --name wisdem-env -f https://raw.githubusercontent.com/WISDEM/WISDEM/master/environment.yml
    conda activate wisdem-env
    
  2. In order to directly use the examples in the repository and peek at the code when necessary, we recommend all users install WISDEM in developer / editable mode using the instructions here. If you really just want to use WISDEM as a library and lean on the documentation, you can always do conda install wisdem and be done. Note the differences between Windows and Mac/Linux build systems. For Linux, we recommend using the native compilers (for example, gcc and gfortran in the default GNU suite).

    conda install -y petsc4py mpi4py                 # (Mac / Linux only)
    conda install -y gfortran                        # (Mac only without Homebrew or Macports compilers)
    conda install -y m2w64-toolchain libpython       # (Windows only)
    git clone https://github.com/WISDEM/WISDEM.git
    cd WISDEM
    pip install --no-deps -e . -v
    

NOTE: To use WISDEM again after installation is complete, you will always need to activate the conda environment first with conda activate wisdem-env

Run Unit Tests

Each package has its own set of unit tests. These can be run in batch with the test_all.py script located in the top level test-directory.

Feedback

For software issues please use https://github.com/WISDEM/WISDEM/issues. For functionality and theory related questions and comments please use the NWTC forum for Systems Engineering Software Questions.

wisdem's People

Contributors

abhineet-gupta avatar akey7 avatar andrewning avatar ccoulombe avatar cfrontin avatar dakotaramos avatar dykesk avatar dzalkind avatar evan-gaertner avatar ewquon avatar gbarter avatar gnscott avatar jakenunemaker avatar jaredthomas68 avatar johnjasa avatar kevybear avatar kilojoules avatar mayankchetan avatar mmoniot avatar nikhar-abbas avatar pgraf avatar pre-commit-ci[bot] avatar ptrbortolotti avatar ryannking avatar taylor-parsons avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

wisdem's Issues

Sea_depth might be broken

When running lcoe_csm_assembly.py and if you change the sea_depth parameter >= 30 it fails with the error:
`(openmdao-0.10.3.2) C:\fusedwind-gui\src\wisdem\src\wisdem\lcoe>python lcoe_csm_assembly.py

Traceback (most recent call last):
File "lcoe_csm_assembly.py", line 257, in
example()
File "lcoe_csm_assembly.py", line 237, in example
lcoe.run()
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\component.py", line 557, in run
self.execute()
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\assembly.py", line 769, in execute
self.driver.run(ffd_order=self.ffd_order, case_uuid=self._case_uuid)
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\driver.py", line 312, in run
super(Driver, self).run(ffd_order, case_uuid)
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\component.py", line 557, in run
self.execute()
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\driver.py", line 336, in execute
self.run_iteration()
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\driver.py", line 367, in run_iteration
wf.run(ffd_order=self.ffd_order)
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\workflow.py", line 141, in run
comp.run(ffd_order=ffd_order, case_uuid=case_uuid)
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\component.py", line 557, in run
self.execute()
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\assembly.py", line 769, in execute
self.driver.run(ffd_order=self.ffd_order, case_uuid=self._case_uuid)
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\driver.py", line 312, in run
super(Driver, self).run(ffd_order, case_uuid)
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\component.py", line 557, in run
self.execute()
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\driver.py", line 336, in execute
self.run_iteration()
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\driver.py", line 367, in run_iteration
wf.run(ffd_order=self.ffd_order)
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\workflow.py", line 141, in run
comp.run(ffd_order=ffd_order, case_uuid=case_uuid)
File "c:\openmdao-0.10.3.2\lib\site-packages\openmdao.main-0.10.3.2-py2.7.egg\openmdao\main\component.py", line 557, in run
self.execute()
File "c:\fusedwind-gui\src\plant-costsse\src\plant_costsse\nrel_csm_bos\nrel_csm_bos.py", line 213, in execute
transportation_costs = self.turbTrans + self.supportTrans
AttributeError: 'bos_csm_component' object has no attribute 'turbTrans'`

On Windows Failed to install: ['akima', 'CCBlade', 'RotorSE', 'pyFrame3DD', 'pBEAM']

I tried to follow the installation steps, but something still goes wrong when installing
['akima', 'CCBlade', 'RotorSE', 'pyFrame3DD', 'pBEAM']
Also, in the preceding steps, PyOpt had issues installing the solvers

Probably the compilers are still not configured correctly. Any ideas?

Pieter

Below the output of

(openmdao-0.10.3.2) C:\OpenMDAO\WISDEM>python setup_all.py > setupLog.txt 2>&1

Searching for pandas
Best match: pandas 0.15.2
Processing pandas-0.15.2-py2.7-win32.egg
pandas 0.15.2 is already the active version in easy-install.pth

Using c:\python27\lib\site-packages\pandas-0.15.2-py2.7-win32.egg
Processing dependencies for pandas
Finished processing dependencies for pandas
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
Searching for algopy
Best match: algopy 0.5.1
Processing algopy-0.5.1-py2.7.egg
algopy 0.5.1 is already the active version in easy-install.pth

Using c:\python27\lib\site-packages\algopy-0.5.1-py2.7.egg
Processing dependencies for algopy
Finished processing dependencies for algopy
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
Searching for zope.interface
Best match: zope.interface 4.1.2
Processing zope.interface-4.1.2-py2.7-win32.egg
zope.interface 4.1.2 is already the active version in easy-install.pth

Using c:\python27\lib\site-packages\zope.interface-4.1.2-py2.7-win32.egg
Processing dependencies for zope.interface
Finished processing dependencies for zope.interface
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
Searching for sphinx
Best match: sphinx 1.3b2
Processing sphinx-1.3b2-py2.7.egg
sphinx 1.3b2 is already the active version in easy-install.pth
Installing sphinx-apidoc-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing sphinx-apidoc.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing sphinx-apidoc.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing sphinx-build-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing sphinx-build.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing sphinx-build.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing sphinx-quickstart-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing sphinx-quickstart.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing sphinx-quickstart.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing sphinx-autogen-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing sphinx-autogen.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing sphinx-autogen.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts

Using c:\python27\lib\site-packages\sphinx-1.3b2-py2.7.egg
Processing dependencies for sphinx
Finished processing dependencies for sphinx
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
Searching for xlrd
Best match: xlrd 0.9.3
Processing xlrd-0.9.3-py2.7.egg
xlrd 0.9.3 is already the active version in easy-install.pth
Installing runxlrd.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts

Using c:\python27\lib\site-packages\xlrd-0.9.3-py2.7.egg
Processing dependencies for xlrd
Finished processing dependencies for xlrd
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
Searching for pyopt
Best match: pyOpt 1.2.0
pyOpt 1.2.0 is already the active version in easy-install.pth

Using c:\python27\lib\site-packages
Processing dependencies for pyopt
Finished processing dependencies for pyopt
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
Searching for py2exe
Best match: py2exe 0.9.2.2
Processing py2exe-0.9.2.2-py2.7-win32.egg
py2exe 0.9.2.2 is already the active version in easy-install.pth
Installing build_exe-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing build_exe-script.pyc script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing build_exe.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing build_exe.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing build_exe-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing build_exe.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing build_exe.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts

Using c:\python27\lib\site-packages\py2exe-0.9.2.2-py2.7-win32.egg
Processing dependencies for py2exe
Finished processing dependencies for py2exe
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
Searching for pyzmq
Best match: pyzmq 14.5.0
Processing pyzmq-14.5.0-py2.7-win32.egg
pyzmq 14.5.0 is already the active version in easy-install.pth

Using c:\python27\lib\site-packages\pyzmq-14.5.0-py2.7-win32.egg
Processing dependencies for pyzmq
Finished processing dependencies for pyzmq
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
Searching for sphinxcontrib-bibtex
Best match: sphinxcontrib-bibtex 0.3.1
Processing sphinxcontrib_bibtex-0.3.1-py2.7.egg
sphinxcontrib-bibtex 0.3.1 is already the active version in easy-install.pth

Using c:\python27\lib\site-packages\sphinxcontrib_bibtex-0.3.1-py2.7.egg
Processing dependencies for sphinxcontrib-bibtex
Finished processing dependencies for sphinxcontrib-bibtex
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
Searching for sphinxcontrib-napoleon
Best match: sphinxcontrib-napoleon 0.2.11
Processing sphinxcontrib_napoleon-0.2.11-py2.7.egg
sphinxcontrib-napoleon 0.2.11 is already the active version in easy-install.pth

Using c:\python27\lib\site-packages\sphinxcontrib_napoleon-0.2.11-py2.7.egg
Processing dependencies for sphinxcontrib-napoleon
Finished processing dependencies for sphinxcontrib-napoleon
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
Searching for numpydoc
Best match: numpydoc 0.5
Processing numpydoc-0.5-py2.7.egg
numpydoc 0.5 is already the active version in easy-install.pth

Using c:\python27\lib\site-packages\numpydoc-0.5-py2.7.egg
Processing dependencies for numpydoc
Finished processing dependencies for numpydoc
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
Searching for ipython
Best match: ipython 2.4.1
ipython 2.4.1 is already the active version in easy-install.pth
Installing ipengine2-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipengine2.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipengine2.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing iptest-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing iptest.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing iptest.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipython2-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipython2.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipython2.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipcluster2-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipcluster2.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipcluster2.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipcluster-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipcluster.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipcluster.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipython-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipython.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipython.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipcontroller2-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipcontroller2.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipcontroller2.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipcontroller-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipcontroller.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipcontroller.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing iptest2-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing iptest2.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing iptest2.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipengine-script.py script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipengine.exe script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts
Installing ipengine.exe.manifest script to C:\OpenMDAO\openmdao-0.10.3.2\Scripts

Using c:\python27\lib\site-packages
Processing dependencies for ipython
Finished processing dependencies for ipython
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
running develop
running egg_info
creating src\fusedwind.egg-info
writing requirements to src\fusedwind.egg-info\requires.txt
writing src\fusedwind.egg-info\PKG-INFO
writing top-level names to src\fusedwind.egg-info\top_level.txt
writing dependency_links to src\fusedwind.egg-info\dependency_links.txt
writing manifest file 'src\fusedwind.egg-info\SOURCES.txt'
reading manifest file 'src\fusedwind.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no directories found matching 'src\fusedwind\sphinx_build\html'
writing manifest file 'src\fusedwind.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\fusedwind.egg-link (link to src)
Adding fusedwind 0.1.0 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\fusedwind\src
installing distribution from current directory as a 'develop' egg
running install
running bdist_egg
running egg_info
running build_src
build_src
building py_modules sources
building extension "_akima" sources
f2py options: []
f2py:> build\src.win32-2.7_akimamodule.c
creating build
creating build\src.win32-2.7
Reading fortran codes...
Reading file 'src/akima.f90' (format:free)
Post-processing...
Block: _akima
Block: abs_smooth
Block: setup
In: :_akima:src/akima.f90:setup
get_parameters: got "invalid syntax (, line 1)" on '1d-30'
Block: interp
Block: setup_dv
In: :akima:src/akima.f90:setup_dv
get_parameters: got "invalid syntax (, line 1)" on '1d-30'
Block: abs_smooth_dv
Post-processing (stage 2)...
Building modules...
Building module "akima"...
Constructing wrapper function "abs_smooth"...
y = abs_smooth(x,delta_x)
Constructing wrapper function "setup"...
p0,p1,p2,p3 = setup(xpt,ypt,[n,delta_x])
Constructing wrapper function "interp"...
y,dydx,dydxpt,dydypt = interp(x,xpt,p0,p1,p2,p3,dp0dxpt,dp1dxpt,dp2dxpt,dp3dxpt,dp0dypt,dp1dypt,dp2dypt,dp3dypt,[npt,n])
Constructing wrapper function "setup_dv"...
p0,p0d,p1,p1d,p2,p2d,p3,p3d = setup_dv(xpt,xptd,ypt,yptd,[n,delta_x,nbdirs])
Constructing wrapper function "abs_smooth_dv"...
y,yd = abs_smooth_dv(x,xd,delta_x,[nbdirs])
Wrote C/API module "akima" to file "build\src.win32-2.7_akimamodule.c"
adding 'build\src.win32-2.7\fortranobject.c' to sources.
adding 'build\src.win32-2.7' to include_dirs.
copying c:\python27\lib\site-packages\numpy\f2py\src\fortranobject.c -> build\src.win32-2.7
copying c:\python27\lib\site-packages\numpy\f2py\src\fortranobject.h -> build\src.win32-2.7
build_src: building npy-pkg config files
creating src\akima.egg-info
writing src\akima.egg-info\PKG-INFO
writing top-level names to src\akima.egg-info\top_level.txt
writing dependency_links to src\akima.egg-info\dependency_links.txt
writing manifest file 'src\akima.egg-info\SOURCES.txt'
reading manifest file 'src\akima.egg-info\SOURCES.txt'
writing manifest file 'src\akima.egg-info\SOURCES.txt'
installing library code to build\bdist.win32\egg
running install_lib
running build_py
creating build\lib.win32-2.7
copying src\akima.py -> build\lib.win32-2.7
copying src\example.py -> build\lib.win32-2.7
running build_ext
No module named msvccompiler in numpy.distutils; trying from distutils
customize MSVCCompiler
customize MSVCCompiler using build_ext
customize GnuFCompiler
Could not locate executable g77
Could not locate executable f77
customize IntelVisualFCompiler
Could not locate executable ifort
Could not locate executable ifl
customize AbsoftFCompiler
Could not locate executable f90
customize CompaqVisualFCompiler
Could not locate executable DF
customize IntelItaniumVisualFCompiler
Could not locate executable efl
customize Gnu95FCompiler
Found executable C:\MinGW\bin\gfortran.exe
Found executable C:\MinGW\bin\gfortran.exe
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init
.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
customize Gnu95FCompiler
customize Gnu95FCompiler using build_ext
building 'akima' extension
compiling C sources
creating build\temp.win32-2.7
creating build\temp.win32-2.7\Release
creating build\temp.win32-2.7\Release\build
creating build\temp.win32-2.7\Release\build\src.win32-2.7
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Ibuild\src.win32-2.7 -Ic:\python27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcbuild\src.win32-2.7_akimamodule.c /Fobuild\temp.win32-2.7\Release\build\src.win32-2.7_akimamodule.obj -O2
Found executable C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Ibuild\src.win32-2.7 -Ic:\python27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcbuild\src.win32-2.7\fortranobject.c /Fobuild\temp.win32-2.7\Release\build\src.win32-2.7\fortranobject.obj -O2
compiling Fortran sources
Fortran f77 compiler: C:\MinGW\bin\gfortran.exe -Wall -ffixed-form -fno-second-underscore -O3 -funroll-loops
Fortran f90 compiler: C:\MinGW\bin\gfortran.exe -Wall -fno-second-underscore -O3 -funroll-loops
Fortran fix compiler: C:\MinGW\bin\gfortran.exe -Wall -ffixed-form -fno-second-underscore -Wall -fno-second-underscore -O3 -funroll-loops
creating build\temp.win32-2.7\Release\src
compile options: '-Ibuild\src.win32-2.7 -Ic:\python27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c'
gfortran.exe:f90: src/akima.f90
copying c:\mingw\lib\gcc\mingw32\4.8.1\libgfortran.a -> build\temp.win32-2.7\Release\gfortran.lib
copying c:\mingw\lib\gcc\mingw32\4.8.1\libgcc.a -> build\temp.win32-2.7\Release\gcc.lib
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:c:\mingw\lib\gcc\mingw32\4.8.1 /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild /LIBPATH:build\temp.win32-2.7\Release /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild gfortran.lib gcc.lib mingw32.lib mingwex.lib /EXPORT:init_akima build\temp.win32-2.7\Release\build\src.win32-2.7_akimamodule.obj build\temp.win32-2.7\Release\build\src.win32-2.7\fortranobject.obj build\temp.win32-2.7\Release\src\akima.o /OUT:build\lib.win32-2.7_akima.pyd /IMPLIB:build\temp.win32-2.7\Release\build\src.win32-2.7_akima.lib /MANIFESTFILE:build\temp.win32-2.7\Release\build\src.win32-2.7_akima.pyd.manifest
Found executable C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\link.exe
LINK : fatal error LNK1181: cannot open input file 'mingw32.lib'
error: Command "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:c:\mingw\lib\gcc\mingw32\4.8.1 /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild /LIBPATH:build\temp.win32-2.7\Release /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild gfortran.lib gcc.lib mingw32.lib mingwex.lib /EXPORT:init_akima build\temp.win32-2.7\Release\build\src.win32-2.7_akimamodule.obj build\temp.win32-2.7\Release\build\src.win32-2.7\fortranobject.obj build\temp.win32-2.7\Release\src\akima.o /OUT:build\lib.win32-2.7_akima.pyd /IMPLIB:build\temp.win32-2.7\Release\build\src.win32-2.7_akima.lib /MANIFESTFILE:build\temp.win32-2.7\Release\build\src.win32-2.7_akima.pyd.manifest" failed with exit status 1181
running develop
running egg_info
creating src\Turbine_CostsSE.egg-info
writing requirements to src\Turbine_CostsSE.egg-info\requires.txt
writing src\Turbine_CostsSE.egg-info\PKG-INFO
writing top-level names to src\Turbine_CostsSE.egg-info\top_level.txt
writing dependency_links to src\Turbine_CostsSE.egg-info\dependency_links.txt
writing manifest file 'src\Turbine_CostsSE.egg-info\SOURCES.txt'
reading manifest file 'src\Turbine_CostsSE.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init
.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src\Turbine_CostsSE.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\Turbine-CostsSE.egg-link (link to src)
Adding Turbine-CostsSE 0.1.0 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\turbine_costsse\src
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\CommonSE.egg-info
writing requirements to src\CommonSE.egg-info\requires.txt
writing src\CommonSE.egg-info\PKG-INFO
writing top-level names to src\CommonSE.egg-info\top_level.txt
writing dependency_links to src\CommonSE.egg-info\dependency_links.txt
writing manifest file 'src\CommonSE.egg-info\SOURCES.txt'
reading manifest file 'src\CommonSE.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src\CommonSE.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\CommonSE.egg-link (link to src)
Adding CommonSE 0.1.2 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\commonse\src
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\Plant_CostsSE.egg-info
writing requirements to src\Plant_CostsSE.egg-info\requires.txt
writing src\Plant_CostsSE.egg-info\PKG-INFO
writing top-level names to src\Plant_CostsSE.egg-info\top_level.txt
writing dependency_links to src\Plant_CostsSE.egg-info\dependency_links.txt
writing manifest file 'src\Plant_CostsSE.egg-info\SOURCES.txt'
reading manifest file 'src\Plant_CostsSE.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src\Plant_CostsSE.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\Plant-CostsSE.egg-link (link to src)
Adding Plant-CostsSE 0.1.0 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\plant_costsse\src
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\Plant_FinanceSE.egg-info
writing requirements to src\Plant_FinanceSE.egg-info\requires.txt
writing src\Plant_FinanceSE.egg-info\PKG-INFO
writing top-level names to src\Plant_FinanceSE.egg-info\top_level.txt
writing dependency_links to src\Plant_FinanceSE.egg-info\dependency_links.txt
writing manifest file 'src\Plant_FinanceSE.egg-info\SOURCES.txt'
reading manifest file 'src\Plant_FinanceSE.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src\Plant_FinanceSE.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\Plant-FinanceSE.egg-link (link to src)
Adding Plant-FinanceSE 0.1.0 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\plant_financese\src
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\Plant_EnergySE.egg-info
writing requirements to src\Plant_EnergySE.egg-info\requires.txt
writing src\Plant_EnergySE.egg-info\PKG-INFO
writing top-level names to src\Plant_EnergySE.egg-info\top_level.txt
writing dependency_links to src\Plant_EnergySE.egg-info\dependency_links.txt
writing manifest file 'src\Plant_EnergySE.egg-info\SOURCES.txt'
reading manifest file 'src\Plant_EnergySE.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src\Plant_EnergySE.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\Plant-EnergySE.egg-link (link to src)
Adding Plant-EnergySE 0.1.0 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\plant_energyse\src
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\AeroelasticSE.egg-info
writing requirements to src\AeroelasticSE.egg-info\requires.txt
writing src\AeroelasticSE.egg-info\PKG-INFO
writing top-level names to src\AeroelasticSE.egg-info\top_level.txt
writing dependency_links to src\AeroelasticSE.egg-info\dependency_links.txt
writing manifest file 'src\AeroelasticSE.egg-info\SOURCES.txt'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
package init file 'src\AeroelasticSE\rainflow__init__.py' not found (or not a regular file)
reading manifest file 'src\AeroelasticSE.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no directories found matching 'src\test'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src\AeroelasticSE.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\AeroelasticSE.egg-link (link to src)
Adding AeroelasticSE 0.1.0 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\aeroelasticse\src
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\AirfoilPrep.py.egg-info
writing src\AirfoilPrep.py.egg-info\PKG-INFO
writing top-level names to src\AirfoilPrep.py.egg-info\top_level.txt
writing dependency_links to src\AirfoilPrep.py.egg-info\dependency_links.txt
writing manifest file 'src\AirfoilPrep.py.egg-info\SOURCES.txt'
reading manifest file 'src\AirfoilPrep.py.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'src\AirfoilPrep.py.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\AirfoilPrep.py.egg-link (link to src)
Adding AirfoilPrep.py 0.1.0 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\airfoilpreppy\src
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
installing distribution from current directory as a 'develop' egg
running develop
running build_scripts
running egg_info
running build_src
build_src
building py_modules sources
building extension "_bem" sources
f2py options: []
f2py:> build\src.win32-2.7_bemmodule.c
creating build
creating build\src.win32-2.7
Reading fortran codes...
Reading file 'src/bem.f90' (format:free)
Post-processing...
Block: _bem
Block: inductionfactors
Block: relativewind
Block: definecurvature
Block: windcomponents
Block: thrusttorque
Block: inductionfactors_dv
Block: relativewind_dv
Block: windcomponents_dv
Block: definecurvature_dv
Block: thrusttorque_bv
Block: definecurvature_bv
Block: definecurvature_dv2
Post-processing (stage 2)...
Building modules...
Building module "bem"...
Constructing wrapper function "inductionfactors"...
fzero,a,ap = inductionfactors(r,chord,rhub,rtip,phi,cl,cd,b,vx,vy,[usecd,hubloss,tiploss,wakerotation])
Constructing wrapper function "relativewind"...
alpha,w,re = relativewind(phi,a,ap,vx,vy,pitch,chord,theta,rho,mu)
Constructing wrapper function "definecurvature"...
x_az,y_az,z_az,cone,s = definecurvature(r,precurve,presweep,precone,[n])
Constructing wrapper function "windcomponents"...
vx,vy = windcomponents(r,precurve,presweep,precone,yaw,tilt,azimuth,uinf,omegarpm,hubht,shearexp,[n])
Constructing wrapper function "thrusttorque"...
t,q = thrusttorque(np,tp,r,precurve,presweep,precone,rhub,rtip,precurvetip,presweeptip,[n])
Constructing wrapper function "inductionfactors_dv"...
fzero,a,ap,fzerod,ad,apd = inductionfactors_dv(r,chord,rhub,rtip,phi,cl,cd,b,vx,vy,rd,chordd,rhubd,rtipd,phid,cld,cdd,vxd,vyd,[usecd,hubloss,tiploss,wakerotation,nbdirs])
Constructing wrapper function "relativewind_dv"...
alpha,alphad,w,wd,re,red = relativewind_dv(phi,phid,a,ad,ap,apd,vx,vxd,vy,vyd,pitch,pitchd,chord,chordd,theta,thetad,rho,mu,[nbdirs])
Constructing wrapper function "windcomponents_dv"...
vx,vxd,vy,vyd = windcomponents_dv(r,rd,precurve,precurved,presweep,presweepd,precone,preconed,yaw,yawd,tilt,tiltd,azimuth,azimuthd,uinf,uinfd,omegarpm,omegarpmd,hubht,hubhtd,shearexp,[n,nbdirs])
Constructing wrapper function "definecurvature_dv"...
x_az,x_azd,y_az,y_azd,z_az,z_azd,cone,coned,s = definecurvature_dv(r,rd,precurve,precurved,presweep,presweepd,precone,preconed,[n,nbdirs])
Constructing wrapper function "thrusttorque_bv"...
npb,tpb,rb,precurveb,presweepb,preconeb,rhubb,rtipb,precurvetipb,presweeptipb = thrusttorque_bv(np,tp,r,precurve,presweep,precone,rhub,rtip,precurvetip,presweeptip,tb,qb,[n,nbdirs])
Constructing wrapper function "definecurvature_bv"...
definecurvature_bv(r,rb,precurve,precurveb,presweep,presweepb,precone,preconeb,x_az,x_azb,y_az,z_az,z_azb,cone,coneb,s,sb,[n,nbdirs])
Constructing wrapper function "definecurvature_dv2"...
x_az,x_azd,y_az,y_azd,z_az,z_azd,cone,coned,s,sd = definecurvature_dv2(r,rd,precurve,precurved,presweep,presweepd,precone,preconed,[n,nbdirs])
Wrote C/API module "bem" to file "build\src.win32-2.7_bemmodule.c"
adding 'build\src.win32-2.7\fortranobject.c' to sources.
adding 'build\src.win32-2.7' to include_dirs.
copying c:\python27\lib\site-packages\numpy\f2py\src\fortranobject.c -> build\src.win32-2.7
copying c:\python27\lib\site-packages\numpy\f2py\src\fortranobject.h -> build\src.win32-2.7
build_src: building npy-pkg config files
creating src\CCBlade.egg-info
writing requirements to src\CCBlade.egg-info\requires.txt
writing src\CCBlade.egg-info\PKG-INFO
writing top-level names to src\CCBlade.egg-info\top_level.txt
writing dependency_links to src\CCBlade.egg-info\dependency_links.txt
writing manifest file 'src\CCBlade.egg-info\SOURCES.txt'
reading manifest file 'src\CCBlade.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no directories found matching 'docs_build\html'
writing manifest file 'src\CCBlade.egg-info\SOURCES.txt'
running build_ext
No module named msvccompiler in numpy.distutils; trying from distutils
customize MSVCCompiler
customize MSVCCompiler using build_ext
customize GnuFCompiler
Could not locate executable g77
Could not locate executable f77
customize IntelVisualFCompiler
Could not locate executable ifort
Could not locate executable ifl
customize AbsoftFCompiler
Could not locate executable f90
customize CompaqVisualFCompiler
Could not locate executable DF
customize IntelItaniumVisualFCompiler
Could not locate executable efl
customize Gnu95FCompiler
Found executable C:\MinGW\bin\gfortran.exe
Found executable C:\MinGW\bin\gfortran.exe
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init
.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
customize Gnu95FCompiler
customize Gnu95FCompiler using build_ext
building '_bem' extension
compiling C sources
creating build\temp.win32-2.7
creating build\temp.win32-2.7\Release
creating build\temp.win32-2.7\Release\build
creating build\temp.win32-2.7\Release\build\src.win32-2.7
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Ibuild\src.win32-2.7 -Ic:\python27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcbuild\src.win32-2.7_bemmodule.c /Fobuild\temp.win32-2.7\Release\build\src.win32-2.7_bemmodule.obj -O2
Found executable C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Ibuild\src.win32-2.7 -Ic:\python27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcbuild\src.win32-2.7\fortranobject.c /Fobuild\temp.win32-2.7\Release\build\src.win32-2.7\fortranobject.obj -O2
compiling Fortran sources
Fortran f77 compiler: C:\MinGW\bin\gfortran.exe -Wall -ffixed-form -fno-second-underscore -O3 -funroll-loops
Fortran f90 compiler: C:\MinGW\bin\gfortran.exe -Wall -fno-second-underscore -O3 -funroll-loops
Fortran fix compiler: C:\MinGW\bin\gfortran.exe -Wall -ffixed-form -fno-second-underscore -Wall -fno-second-underscore -O3 -funroll-loops
creating build\temp.win32-2.7\Release\src
compile options: '-Ibuild\src.win32-2.7 -Ic:\python27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c'
gfortran.exe:f90: src/bem.f90
copying c:\mingw\lib\gcc\mingw32\4.8.1\libgfortran.a -> build\temp.win32-2.7\Release\gfortran.lib
copying c:\mingw\lib\gcc\mingw32\4.8.1\libgcc.a -> build\temp.win32-2.7\Release\gcc.lib
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:c:\mingw\lib\gcc\mingw32\4.8.1 /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild /LIBPATH:build\temp.win32-2.7\Release /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild gfortran.lib gcc.lib mingw32.lib mingwex.lib /EXPORT:init_bem build\temp.win32-2.7\Release\build\src.win32-2.7_bemmodule.obj build\temp.win32-2.7\Release\build\src.win32-2.7\fortranobject.obj build\temp.win32-2.7\Release\src\bem.o /OUT:src_bem.pyd /IMPLIB:build\temp.win32-2.7\Release\build\src.win32-2.7_bem.lib /MANIFESTFILE:build\temp.win32-2.7\Release\build\src.win32-2.7_bem.pyd.manifest
Found executable C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\link.exe
LINK : fatal error LNK1181: cannot open input file 'mingw32.lib'
error: Command "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:c:\mingw\lib\gcc\mingw32\4.8.1 /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild /LIBPATH:build\temp.win32-2.7\Release /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild gfortran.lib gcc.lib mingw32.lib mingwex.lib /EXPORT:init_bem build\temp.win32-2.7\Release\build\src.win32-2.7_bemmodule.obj build\temp.win32-2.7\Release\build\src.win32-2.7\fortranobject.obj build\temp.win32-2.7\Release\src\bem.o /OUT:src_bem.pyd /IMPLIB:build\temp.win32-2.7\Release\build\src.win32-2.7_bem.lib /MANIFESTFILE:build\temp.win32-2.7\Release\build\src.win32-2.7_bem.pyd.manifest" failed with exit status 1181
installing distribution from current directory as a 'develop' egg

ERROR: command 'C:\OpenMDAO\openmdao-0.10.3.2\Scripts\python.exe setup.py develop -N' returned error code: 1
running develop
running egg_info
creating src\DriveSE.egg-info
writing requirements to src\DriveSE.egg-info\requires.txt
writing src\DriveSE.egg-info\PKG-INFO
writing top-level names to src\DriveSE.egg-info\top_level.txt
writing dependency_links to src\DriveSE.egg-info\dependency_links.txt
writing manifest file 'src\DriveSE.egg-info\SOURCES.txt'
reading manifest file 'src\DriveSE.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src\DriveSE.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\DriveSE.egg-link (link to src)
Adding DriveSE 0.1.1 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\drivese\src
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\DriveWPACT.egg-info
writing requirements to src\DriveWPACT.egg-info\requires.txt
writing src\DriveWPACT.egg-info\PKG-INFO
writing top-level names to src\DriveWPACT.egg-info\top_level.txt
writing dependency_links to src\DriveWPACT.egg-info\dependency_links.txt
writing manifest file 'src\DriveWPACT.egg-info\SOURCES.txt'
reading manifest file 'src\DriveWPACT.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src\DriveWPACT.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\DriveWPACT.egg-link (link to src)
Adding DriveWPACT 0.1.0 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\drivewpact\src
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\nrel_csm.egg-info
writing src\nrel_csm.egg-info\PKG-INFO
writing top-level names to src\nrel_csm.egg-info\top_level.txt
writing dependency_links to src\nrel_csm.egg-info\dependency_links.txt
writing manifest file 'src\nrel_csm.egg-info\SOURCES.txt'
reading manifest file 'src\nrel_csm.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no directories found matching 'src\test'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
warning: no directories found matching 'src\NREL_CSM\sphinx_build\html'
warning: no files found matching '_.py' under directory 'src\NREL_CSM\test'
warning: no files found matching 'src\NREL_CSM\static_'
warning: no files found matching '*.txt' under directory 'docs'
writing manifest file 'src\nrel_csm.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\nrel-csm.egg-link (link to src)
Adding nrel-csm 0.1 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\nrel_csm\src
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\RotorSE.egg-info
writing requirements to src\RotorSE.egg-info\requires.txt
writing src\RotorSE.egg-info\PKG-INFO
writing top-level names to src\RotorSE.egg-info\top_level.txt
writing dependency_links to src\RotorSE.egg-info\dependency_links.txt
writing manifest file 'src\RotorSE.egg-info\SOURCES.txt'
reading manifest file 'src\RotorSE.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no files found matching 'CHANGELOG.md'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src\RotorSE.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\RotorSE.egg-link (link to src)
Adding RotorSE 0.1.0 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\rotorse\src
running develop
running build_scripts
running egg_info
running build_src
build_src
building extension "_precomp" sources
f2py options: []
f2py:> build\src.win32-2.7_precompmodule.c
creating build
creating build\src.win32-2.7
Reading fortran codes...
Reading file 'src/rotorse/PreCompPy.f90' (format:free)
Post-processing...
Block: _precomp
Block: precomp
In: :_precomp:src/rotorse/PreCompPy.f90:precomp
get_parameters: got "unexpected EOF while parsing (, line 1)" on '3.14159265358979323846_dbp'
In: :_precomp:src/rotorse/PreCompPy.f90:precomp
get_parameters: got "invalid syntax (, line 1)" on '1.0d-10'
In: :_precomp:src/rotorse/PreCompPy.f90:precomp
get_parameters: got "unexpected EOF while parsing (, line 1)" on '57.29577951308232_dbp'
Block: properties
Block: embed_us
Block: embed_ls
Block: seg_info
Block: tw_rate
Block: q_bars
Block: q_tildas
Post-processing (stage 2)...
Block: _precomp
Block: unknown_interface
Block: precomp
Block: properties
Block: embed_us
Block: embed_ls
Block: seg_info
Block: tw_rate
Block: q_bars
Block: q_tildas
Building modules...
Building module "_precomp"...
Constructing F90 module support for "precomp"...
Variables: dbp pi eps r2d
Constructing wrapper function "precomp.properties"...
eifbar,eilbar,gjbar,eabar,eiflbar,sfbar,slbar,sftbar,sltbar,satbar,z_sc,y_sc,ztc_ref,ytc_ref,mass,iflap_eta,ilag_zeta,tw_iner,zcm_ref,ycm_ref = properties(chord,tw_aero_d,tw_prime_d,le_loc,xnode,ynode,e1,e2,g12,anu12,density,xsec_nodeu,n_laminau,n_pliesu,t_lamu,tht_lamu,mat_lamu,xsec_nodel,n_laminal,n_pliesl,t_laml,tht_laml,mat_laml,nweb,loc_web,n_laminaw,n_pliesw,t_lamw,tht_lamw,mat_lamw,[n_af_nodes,n_materials,n_sctu,n_sctl,nwebin,n_laminatotalu,n_laminatotall,n_laminatotalw])
Constructing wrapper function "precomp.embed_us"...
y,newnode = embed_us(x,nodes_u,xnode_u,ynode_u)
Constructing wrapper function "precomp.embed_ls"...
y,newnode = embed_ls(x,nodes_l,xnode_l,ynode_l)
Creating wrapper for Fortran subroutine "seg_info"("seg_info")...
Constructing wrapper function "precomp.seg_info"...
isur,idsect,yseg,zseg,wseg,sthseg,cthseg,s2thseg,c2thseg = seg_info(ch,rle,nseg,nseg_u,nseg_p,xnode_u,ynode_u,xnode_l,ynode_l,ndl1,ndu1,loc_web,weby_u,weby_l,n_scts,xsec_node,[nsecnode])
Constructing wrapper function "precomp.tw_rate"...
th_prime = tw_rate(sloc,tw_aero,[naf])
Creating wrapper for Fortran subroutine "q_bars"("q_bars")...
Constructing wrapper function "precomp.q_bars"...
qbar11,qbar22,qbar12,qbar16,qbar26,qbar66,rho_m = q_bars(mat,thp,density,q11,q22,q12,q66)
Constructing wrapper function "precomp.q_tildas"...
qtil = q_tildas(qbar11,qbar22,qbar12,qbar16,qbar26,qbar66,mat)
Wrote C/API module "_precomp" to file "build\src.win32-2.7_precompmodule.c"
Fortran 90 wrappers are saved to "build\src.win32-2.7_precomp-f2pywrappers2.f90"
adding 'build\src.win32-2.7\fortranobject.c' to sources.
adding 'build\src.win32-2.7' to include_dirs.
copying c:\python27\lib\site-packages\numpy\f2py\src\fortranobject.c -> build\src.win32-2.7
copying c:\python27\lib\site-packages\numpy\f2py\src\fortranobject.h -> build\src.win32-2.7
adding 'build\src.win32-2.7_precomp-f2pywrappers2.f90' to sources.
build_src: building npy-pkg config files
creating src\rotorse\precomp.egg-info
writing src/rotorse\precomp.egg-info\PKG-INFO
writing top-level names to src/rotorse\precomp.egg-info\top_level.txt
writing dependency_links to src/rotorse\precomp.egg-info\dependency_links.txt
writing manifest file 'src/rotorse\precomp.egg-info\SOURCES.txt'
reading manifest file 'src/rotorse\precomp.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'CHANGELOG.md'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src/rotorse\precomp.egg-info\SOURCES.txt'
running build_ext
No module named msvccompiler in numpy.distutils; trying from distutils
customize MSVCCompiler
customize MSVCCompiler using build_ext
customize GnuFCompiler
Could not locate executable g77
Could not locate executable f77
customize IntelVisualFCompiler
Could not locate executable ifort
Could not locate executable ifl
customize AbsoftFCompiler
Could not locate executable f90
customize CompaqVisualFCompiler
Could not locate executable DF
customize IntelItaniumVisualFCompiler
Could not locate executable efl
customize Gnu95FCompiler
Found executable C:\MinGW\bin\gfortran.exe
Found executable C:\MinGW\bin\gfortran.exe
customize Gnu95FCompiler
customize Gnu95FCompiler using build_ext
building '_precomp' extension
compiling C sources
creating build\temp.win32-2.7
creating build\temp.win32-2.7\Release
creating build\temp.win32-2.7\Release\build
creating build\temp.win32-2.7\Release\build\src.win32-2.7
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Ibuild\src.win32-2.7 -Ic:\python27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcbuild\src.win32-2.7_precompmodule.c /Fobuild\temp.win32-2.7\Release\build\src.win32-2.7_precompmodule.obj -O2
Found executable C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Ibuild\src.win32-2.7 -Ic:\python27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcbuild\src.win32-2.7\fortranobject.c /Fobuild\temp.win32-2.7\Release\build\src.win32-2.7\fortranobject.obj -O2
compiling Fortran 90 module sources
Fortran f77 compiler: C:\MinGW\bin\gfortran.exe -Wall -ffixed-form -fno-second-underscore -O3 -funroll-loops
Fortran f90 compiler: C:\MinGW\bin\gfortran.exe -Wall -fno-second-underscore -O3 -funroll-loops
Fortran fix compiler: C:\MinGW\bin\gfortran.exe -Wall -ffixed-form -fno-second-underscore -Wall -fno-second-underscore -O3 -funroll-loops
creating build\temp.win32-2.7\Release\src
creating build\temp.win32-2.7\Release\src\rotorse
compile options: '-Ibuild\src.win32-2.7 -Ic:\python27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c'
extra options: '-Jbuild\temp.win32-2.7\Release\ -Ibuild\temp.win32-2.7\Release'
gfortran.exe:f90: src/rotorse/PreCompPy.f90
compiling Fortran sources
Fortran f77 compiler: C:\MinGW\bin\gfortran.exe -Wall -ffixed-form -fno-second-underscore -O3 -funroll-loops
Fortran f90 compiler: C:\MinGW\bin\gfortran.exe -Wall -fno-second-underscore -O3 -funroll-loops
Fortran fix compiler: C:\MinGW\bin\gfortran.exe -Wall -ffixed-form -fno-second-underscore -Wall -fno-second-underscore -O3 -funroll-loops
compile options: '-Ibuild\src.win32-2.7 -Ic:\python27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c'
extra options: '-Jbuild\temp.win32-2.7\Release\ -Ibuild\temp.win32-2.7\Release'
gfortran.exe:f90: build\src.win32-2.7_precomp-f2pywrappers2.f90
copying c:\mingw\lib\gcc\mingw32\4.8.1\libgfortran.a -> build\temp.win32-2.7\Release\gfortran.lib
copying c:\mingw\lib\gcc\mingw32\4.8.1\libgcc.a -> build\temp.win32-2.7\Release\gcc.lib
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:c:\mingw\lib\gcc\mingw32\4.8.1 /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild /LIBPATH:build\temp.win32-2.7\Release /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild gfortran.lib gcc.lib mingw32.lib mingwex.lib /EXPORT:init_precomp build\temp.win32-2.7\Release\build\src.win32-2.7_precompmodule.obj build\temp.win32-2.7\Release\build\src.win32-2.7\fortranobject.obj build\temp.win32-2.7\Release\src\rotorse\PreCompPy.o build\temp.win32-2.7\Release\build\src.win32-2.7_precomp-f2pywrappers2.o /OUT:src\rotorse_precomp.pyd /IMPLIB:build\temp.win32-2.7\Release\build\src.win32-2.7_precomp.lib /MANIFESTFILE:build\temp.win32-2.7\Release\build\src.win32-2.7_precomp.pyd.manifest
Found executable C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\link.exe
LINK : fatal error LNK1181: cannot open input file 'mingw32.lib'
error: Command "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:c:\mingw\lib\gcc\mingw32\4.8.1 /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild /LIBPATH:build\temp.win32-2.7\Release /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild gfortran.lib gcc.lib mingw32.lib mingwex.lib /EXPORT:init_precomp build\temp.win32-2.7\Release\build\src.win32-2.7_precompmodule.obj build\temp.win32-2.7\Release\build\src.win32-2.7\fortranobject.obj build\temp.win32-2.7\Release\src\rotorse\PreCompPy.o build\temp.win32-2.7\Release\build\src.win32-2.7_precomp-f2pywrappers2.o /OUT:src\rotorse_precomp.pyd /IMPLIB:build\temp.win32-2.7\Release\build\src.win32-2.7_precomp.lib /MANIFESTFILE:build\temp.win32-2.7\Release\build\src.win32-2.7_precomp.pyd.manifest" failed with exit status 1181
installing distribution from current directory as a 'develop' egg

ERROR: command 'C:\OpenMDAO\openmdao-0.10.3.2\Scripts\python.exe setup.py develop -N' returned error code: 1
running develop
running egg_info
creating src\TowerSE.egg-info
writing requirements to src\TowerSE.egg-info\requires.txt
writing src\TowerSE.egg-info\PKG-INFO
writing top-level names to src\TowerSE.egg-info\top_level.txt
writing dependency_links to src\TowerSE.egg-info\dependency_links.txt
writing manifest file 'src\TowerSE.egg-info\SOURCES.txt'
reading manifest file 'src\TowerSE.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src\TowerSE.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\TowerSE.egg-link (link to src)
Adding TowerSE 0.1.4 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\towerse\src
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\pyFrame3DD.egg-info
writing src\pyFrame3DD.egg-info\PKG-INFO
writing top-level names to src\pyFrame3DD.egg-info\top_level.txt
writing dependency_links to src\pyFrame3DD.egg-info\dependency_links.txt
writing manifest file 'src\pyFrame3DD.egg-info\SOURCES.txt'
reading manifest file 'src\pyFrame3DD.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src\pyFrame3DD.egg-info\SOURCES.txt'
running build_ext
building '_pyframe3dd' extension
creating build
creating build\temp.win32-2.7
creating build\temp.win32-2.7\Release
creating build\temp.win32-2.7\Release\src
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcsrc/py_main.c /Fobuild\temp.win32-2.7\Release\src/py_main.obj
py_main.c
src/py_main.c(223) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_main.c(228) : warning C4013: 'D3matrix' undefined; assuming extern returning int
src/py_main.c(228) : warning C4047: '=' : 'float **' differs in levels of indirection from 'int'
src/py_main.c(229) : warning C4047: '=' : 'float *' differs in levels of indirection from 'int'
src/py_main.c(230) : warning C4047: '=' : 'float *
' differs in levels of indirection from 'int'
src/py_main.c(231) : warning C4047: '=' : 'float *' differs in levels of indirection from 'int'
src/py_main.c(239) : warning C4013: 'D3dmatrix' undefined; assuming extern returning int
src/py_main.c(239) : warning C4047: '=' : 'double *
' differs in levels of indirection from 'int'
src/py_main.c(240) : warning C4047: '=' : 'double *
*' differs in levels of indirection from 'int'
src/py_main.c(301) : warning C4244: 'function' : conversion from 'time_t' to 'unsigned int', possible loss of data
src/py_main.c(442) : warning C4013: 'save_ut_dmatrix' undefined; assuming extern returning int
src/py_main.c(590) : warning C4013: 'save_dmatrix' undefined; assuming extern returning int
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcsrc/py_io.c /Fobuild\temp.win32-2.7\Release\src/py_io.obj
py_io.c
src/py_io.c(37) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(44) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(73) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(83) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(88) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(89) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(90) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(91) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(92) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(93) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(94) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(95) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(96) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(97) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(99) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(103) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(108) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(113) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(118) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(123) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(128) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(133) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(154) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(160) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(168) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(192) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(251) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(261) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(270) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(275) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(280) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(285) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(290) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(295) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(302) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(312) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(400) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(401) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(402) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(444) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(470) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(477) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(481) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(482) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(483) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(484) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(526) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(533) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(537) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(538) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(539) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(540) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(541) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(542) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(543) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(544) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(545) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(546) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(547) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(548) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(549) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(564) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(570) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(576) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(582) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(588) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(594) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(600) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(606) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(611) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(715) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(722) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(726) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(727) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(728) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(729) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(730) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(736) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(804) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(811) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(815) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(816) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(817) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(818) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(819) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(820) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(821) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(822) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(829) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(881) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(882) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(883) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(884) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(885) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(886) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(891) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(989) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(993) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(994) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(995) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(996) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(997) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(998) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(999) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(1000) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(1001) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(1002) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(1025) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(1029) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/py_io.c(1042) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(1139) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(1148) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
src/py_io.c(1149) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
src/py_io.c(1150) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
src/py_io.c(1151) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
src/py_io.c(1152) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
src/py_io.c(1153) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
src/py_io.c(1155) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(1177) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(1206) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(1208) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(1210) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/py_io.c(1352) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcsrc/frame3dd.c /Fobuild\temp.win32-2.7\Release\src/frame3dd.obj
frame3dd.c
src/frame3dd.c(130) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/frame3dd.c(131) : warning C4013: 'save_dmatrix' undefined; assuming extern returning int
src/frame3dd.c(710) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/frame3dd.c(1176) : warning C4013: 'free_D3matrix' undefined; assuming extern returning int
src/frame3dd.c(1187) : warning C4013: 'free_D3dmatrix' undefined; assuming extern returning int
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcsrc/HPGmatrix.c /Fobuild\temp.win32-2.7\Release\src/HPGmatrix.obj
HPGmatrix.c
src/HPGmatrix.c(76) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/HPGmatrix.c(80) : warning C4013: 'nrerror' undefined; assuming extern returning int
src/HPGmatrix.c(103) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/HPGmatrix.c(918) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/HPGmatrix.c(919) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/HPGmatrix.c(923) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/HPGmatrix.c(924) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/HPGmatrix.c(929) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/HPGmatrix.c(933) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/HPGmatrix.c(935) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
src/HPGmatrix.c(937) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcsrc/coordtrans.c /Fobuild\temp.win32-2.7\Release\src/coordtrans.obj
coordtrans.c
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcsrc/eig.c /Fobuild\temp.win32-2.7\Release\src/eig.obj
eig.c
src/eig.c(85) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/eig.c(117) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/eig.c(193) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/eig.c(205) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/eig.c(400) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/eig.c(482) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcsrc/HPGutil.c /Fobuild\temp.win32-2.7\Release\src/HPGutil.obj
HPGutil.c
src/HPGutil.c(121) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/HPGutil.c(125) : warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(237) : see declaration of 'fopen'
src/HPGutil.c(127) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/HPGutil.c(129) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/HPGutil.c(132) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/HPGutil.c(135) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/HPGutil.c(138) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
src/HPGutil.c(198) : warning C4996: 'fscanf': This function or variable may be unsafe. Consider using fscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(256) : see declaration of 'fscanf'
src/HPGutil.c(244) : warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\string.h(157) : see declaration of 'strncpy'
src/HPGutil.c(246) : warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\string.h(157) : see declaration of 'strncpy'
src/HPGutil.c(247) : warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\string.h(157) : see declaration of 'strncpy'
src/HPGutil.c(248) : warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\string.h(157) : see declaration of 'strncpy'
src/HPGutil.c(249) : warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\string.h(157) : see declaration of 'strncpy'
src/HPGutil.c(250) : warning C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\string.h(157) : see declaration of 'strncpy'
src/HPGutil.c(293) : warning C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(366) : see declaration of 'sprintf'
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tcsrc/NRutil.c /Fobuild\temp.win32-2.7\Release\src/NRutil.obj
NRutil.c
src/NRutil.c(440) : warning C4013: 'malloc' undefined; assuming extern returning int
src/NRutil.c(651) : warning C4013: 'free' undefined; assuming extern returning int
src/NRutil.c(834) : warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(237) : see declaration of 'fopen'
src/NRutil.c(838) : warning C4013: 'time' undefined; assuming extern returning int
src/NRutil.c(839) : warning C4013: 'ctime' undefined; assuming extern returning int
src/NRutil.c(862) : warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(237) : see declaration of 'fopen'
src/NRutil.c(890) : warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(237) : see declaration of 'fopen'
src/NRutil.c(918) : warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(237) : see declaration of 'fopen'
src/NRutil.c(958) : warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(237) : see declaration of 'fopen'
src/NRutil.c(1000) : warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(237) : see declaration of 'fopen'
src/NRutil.c(1037) : warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\stdio.h(237) : see declaration of 'fopen'
creating build\lib.win32-2.7
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\python27\Libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\libs /LIBPATH:C:\OpenMDAO\openmdao-0.10.3.2\PCbuild /EXPORT:init_pyframe3dd build\temp.win32-2.7\Release\src/py_main.obj build\temp.win32-2.7\Release\src/py_io.obj build\temp.win32-2.7\Release\src/frame3dd.obj build\temp.win32-2.7\Release\src/HPGmatrix.obj build\temp.win32-2.7\Release\src/coordtrans.obj build\temp.win32-2.7\Release\src/eig.obj build\temp.win32-2.7\Release\src/HPGutil.obj build\temp.win32-2.7\Release\src/NRutil.obj /OUT:build\lib.win32-2.7_pyframe3dd.pyd /IMPLIB:build\temp.win32-2.7\Release\src_pyframe3dd.lib /MANIFESTFILE:build\temp.win32-2.7\Release\src_pyframe3dd.pyd.manifest
Creating library build\temp.win32-2.7\Release\src_pyframe3dd.lib and object build\temp.win32-2.7\Release\src_pyframe3dd.exp
py_main.obj : error LNK2019: unresolved external symbol _D3dmatrix referenced in function _run
py_main.obj : error LNK2019: unresolved external symbol _D3matrix referenced in function _run
frame3dd.obj : error LNK2019: unresolved external symbol _free_D3dmatrix referenced in function _deallocate
frame3dd.obj : error LNK2019: unresolved external symbol _free_D3matrix referenced in function _deallocate
build\lib.win32-2.7_pyframe3dd.pyd : fatal error LNK1120: 4 unresolved externals
error: command 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\link.exe' failed with exit status 1120
installing distribution from current directory as a 'develop' egg

ERROR: command 'C:\OpenMDAO\openmdao-0.10.3.2\Scripts\python.exe setup.py develop -N' returned error code: 1
running develop
running build_scripts
running egg_info
running build_src
build_src
building extension "pBEAM" sources
build_src: building npy-pkg config files
creating pBEAM.egg-info
writing pBEAM.egg-info\PKG-INFO
writing top-level names to pBEAM.egg-info\top_level.txt
writing dependency_links to pBEAM.egg-info\dependency_links.txt
writing manifest file 'pBEAM.egg-info\SOURCES.txt'
reading manifest file 'pBEAM.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'CHANGELOG.md'
warning: no directories found matching 'docs_build\html'
warning: no directories found matching 'test'
writing manifest file 'pBEAM.egg-info\SOURCES.txt'
running build_ext
No module named msvccompiler in numpy.distutils; trying from distutils
customize MSVCCompiler
customize MSVCCompiler using build_ext
No module named msvccompiler in numpy.distutils; trying from distutils
customize MSVCCompiler
Missing compiler_cxx fix for MSVCCompiler
customize MSVCCompiler using build_ext
building 'pBEAM' extension
compiling C sources
creating build
creating build\temp.win32-2.7
creating build\temp.win32-2.7\Release
creating build\temp.win32-2.7\Release\src
creating build\temp.win32-2.7\Release\src\pBEAM
creating build\temp.win32-2.7\Release\src\pyBEAM
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Isrc\pBEAM -IC:/boost_1_55_0 -Ic:\python27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tpsrc\pBEAM\Poly.cpp /Fobuild\temp.win32-2.7\Release\src\pBEAM\Poly.obj -O2 /Zm1000
Found executable C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init
.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
Poly.cpp
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\INCLUDE\xlocale(342) : warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc
src\pBEAM\Poly.cpp(155) : error C2057: expected constant expression
src\pBEAM\Poly.cpp(155) : error C2466: cannot allocate an array of constant size 0
src\pBEAM\Poly.cpp(155) : error C2133: 'x' : unknown size
src\pBEAM\Poly.cpp(181) : error C2057: expected constant expression
src\pBEAM\Poly.cpp(181) : error C2466: cannot allocate an array of constant size 0
src\pBEAM\Poly.cpp(181) : error C2133: 'z' : unknown size
src\pBEAM\Poly.cpp(233) : error C2057: expected constant expression
src\pBEAM\Poly.cpp(233) : error C2466: cannot allocate an array of constant size 0
src\pBEAM\Poly.cpp(233) : error C2133: 'z_array' : unknown size
src\pBEAM\Poly.cpp(277) : error C2057: expected constant expression
src\pBEAM\Poly.cpp(277) : error C2466: cannot allocate an array of constant size 0
src\pBEAM\Poly.cpp(277) : error C2133: 'x' : unknown size
src\pBEAM\Poly.cpp(336) : error C2057: expected constant expression
src\pBEAM\Poly.cpp(336) : error C2466: cannot allocate an array of constant size 0
src\pBEAM\Poly.cpp(336) : error C2133: 'x' : unknown size
src\pBEAM\Poly.cpp(355) : error C2057: expected constant expression
src\pBEAM\Poly.cpp(355) : error C2466: cannot allocate an array of constant size 0
src\pBEAM\Poly.cpp(355) : error C2133: 'pout' : unknown size
src\pBEAM\Poly.cpp(401) : error C2057: expected constant expression
src\pBEAM\Poly.cpp(401) : error C2466: cannot allocate an array of constant size 0
src\pBEAM\Poly.cpp(401) : error C2133: 'result' : unknown size
error: Command "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Isrc\pBEAM -IC:/boost_1_55_0 -Ic:\python27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC /Tpsrc\pBEAM\Poly.cpp /Fobuild\temp.win32-2.7\Release\src\pBEAM\Poly.obj -O2 /Zm1000" failed with exit status 2
installing distribution from current directory as a 'develop' egg

ERROR: command 'C:\OpenMDAO\openmdao-0.10.3.2\Scripts\python.exe setup.py develop -N' returned error code: 1
running develop
running egg_info
creating src\jacketse.egg-info
writing requirements to src\jacketse.egg-info\requires.txt
writing src\jacketse.egg-info\PKG-INFO
writing top-level names to src\jacketse.egg-info\top_level.txt
writing dependency_links to src\jacketse.egg-info\dependency_links.txt
writing manifest file 'src\jacketse.egg-info\SOURCES.txt'
reading manifest file 'src\jacketse.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no directories found matching 'src\jacketse\sphinx_build\html'
writing manifest file 'src\jacketse.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\jacketse.egg-link (link to src)
Adding jacketse 0.1 to easy-install.pth file

Installed c:\openmdao\wisdem\plugins\jacketse\src
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\WISDEM.egg-info
writing requirements to src\WISDEM.egg-info\requires.txt
writing src\WISDEM.egg-info\PKG-INFO
writing top-level names to src\WISDEM.egg-info\top_level.txt
writing dependency_links to src\WISDEM.egg-info\dependency_links.txt
writing manifest file 'src\WISDEM.egg-info\SOURCES.txt'
reading manifest file 'src\WISDEM.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.2-py2.7.egg\pkg_resources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'src\WISDEM.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\WISDEM.egg-link (link to src)
WISDEM 0.1.1 is already the active version in easy-install.pth

Installed c:\openmdao\wisdem\src
installing distribution from current directory as a 'develop' egg
install url: package= fusedwind url= http://github.com/FUSED-Wind/fusedwind/tarball/develop
subprocess returned 0
install url: package= akima url= http://github.com/andrewning/akima/tarball/master
subprocess returned 1
plugin akima FAILED to install correctly
install url: package= Turbine_CostsSE url= http://github.com/WISDEM/Turbine_CostsSE/tarball/master
subprocess returned 0
install url: package= CommonSE url= http://github.com/WISDEM/CommonSE/tarball/master
subprocess returned 0
install url: package= Plant_CostsSE url= http://github.com/WISDEM/Plant_CostsSE/tarball/master
subprocess returned 0
install url: package= Plant_FinanceSE url= http://github.com/WISDEM/Plant_FinanceSE/tarball/master
subprocess returned 0
install url: package= Plant_EnergySE url= http://github.com/WISDEM/Plant_EnergySE/tarball/master
subprocess returned 0
install url: package= AeroelasticSE url= http://github.com/WISDEM/AeroelasticSE/tarball/master
subprocess returned 0
install url: package= AirfoilPreppy url= http://github.com/WISDEM/AirfoilPreppy/tarball/master
subprocess returned 0
install url: package= CCBlade url= http://github.com/WISDEM/CCBlade/tarball/master
subprocess returned -1
plugin CCBlade FAILED to install correctly
install url: package= DriveSE url= http://github.com/WISDEM/DriveSE/tarball/master
subprocess returned 0
install url: package= DriveWPACT url= http://github.com/WISDEM/DriveWPACT/tarball/master
subprocess returned 0
install url: package= NREL_CSM url= http://github.com/WISDEM/NREL_CSM/tarball/master
subprocess returned 0
install url: package= RotorSE url= http://github.com/WISDEM/RotorSE/tarball/master
subprocess returned -1
plugin RotorSE FAILED to install correctly
install url: package= TowerSE url= http://github.com/WISDEM/TowerSE/tarball/master
subprocess returned 0
install url: package= pyFrame3DD url= http://github.com/WISDEM/pyFrame3DD/tarball/master
subprocess returned -1
plugin pyFrame3DD FAILED to install correctly
install url: package= pBEAM url= http://github.com/WISDEM/pBEAM/tarball/master
subprocess returned -1
plugin pBEAM FAILED to install correctly
install url: package= JacketSE url= http://github.com/WISDEM/JacketSE/tarball/master
subprocess returned 0

Attempted to install WISDEM and its sub-plugins: ['Turbine_CostsSE', 'CommonSE', 'Plant_CostsSE', 'Plant_FinanceSE', 'Plant_EnergySE', 'AeroelasticSE', 'AirfoilPreppy', 'CCBlade', 'DriveSE', 'DriveWPACT', 'NREL_CSM', 'RotorSE', 'TowerSE', 'pyFrame3DD', 'pBEAM', 'JacketSE']
Failed to install: ['akima', 'CCBlade', 'RotorSE', 'pyFrame3DD', 'pBEAM']

ImportError: No module named functools32

when in OpenMDAO virtual environment, whenever I try to import "wisdem.lcoe.lcoe_csm_assembly" or "wisdem.lcoe.lcoe_se_assembly" i get the follwoing error: "ImportError: No module named functools32"

I'm using Win7-64 and running all Python codes using Cygwin terminal so all the packages are installed in Cygwin. also, I'm very new to Linux and (C, Fortran, Python) so excuse me if this is a trivial issue.

thanks,
Ali

Having trouble installing WISDEM on Linux

Hello, I'm trying to install WISDEM on Ubuntu. I follow the directions, but when I get to installing WISDEM I get the error:
sh: 1: plugin: not found
After that I get a list of the sub-plugins and a message telling me "Failed to install: []"

Any suggestions?
Can I use a newer OpenMDAO version? Currently, I am creating a virtual OpenMDAO environment with version 0.10.3.2. OpenMDAO is not listed as a package in my Anaconda python 2.7 environment

Thanks in advance for any guidance.

update for 10.3.2 for self.J

for all models - self.J variables need to be in i/o list to be accessible for self.J function in version 10.3.2

CCBlade Install Fails

I'm stuck trying to get CCBlade to install, all other modules are successfully installed. Its crashing during the fortran compiling, but appears to be throwing a C error, caused by not being linked to the math library. It seems odd to me because the pBeam install used gfortran and gcc successfully.

I hate to bother yall, but is there anything glaring I'm missing?

Thank you!
Evan @ UMass

(openmdao-0.10.3.2) C:\Users\python\WISDEM-WISDEM-947a089\plugins\CCBlade>plugin
install
installing distribution from current directory as a 'develop' egg
running develop
running build_scripts
running egg_info
running build_src
build_src
building py_modules sources
building extension "_bem" sources
f2py options: []
adding 'build\src.win32-2.7\fortranobject.c' to sources.
adding 'build\src.win32-2.7' to include_dirs.
build_src: building npy-pkg config files
writing requirements to src\CCBlade.egg-info\requires.txt
writing src\CCBlade.egg-info\PKG-INFO
writing top-level names to src\CCBlade.egg-info\top_level.txt
writing dependency_links to src\CCBlade.egg-info\dependency_links.txt
writing requirements to src\CCBlade.egg-info\requires.txt
writing src\CCBlade.egg-info\PKG-INFO
writing top-level names to src\CCBlade.egg-info\top_level.txt
writing dependency_links to src\CCBlade.egg-info\dependency_links.txt
reading manifest file 'src\CCBlade.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no directories found matching 'docs_build\html'
writing manifest file 'src\CCBlade.egg-info\SOURCES.txt'
running build_ext
Cannot build msvcr library: "msvcr90d.dll" not found
customize Mingw32CCompiler
customize Mingw32CCompiler using build_ext
customize GnuFCompiler
Could not locate executable g77
Could not locate executable f77
customize IntelVisualFCompiler
Could not locate executable ifort
Could not locate executable ifl
customize AbsoftFCompiler
Could not locate executable f90
customize CompaqVisualFCompiler
Could not locate executable DF
customize IntelItaniumVisualFCompiler
Could not locate executable efl
customize Gnu95FCompiler
Found executable C:\MinGW\bin\gfortran.exe
Found executable C:\MinGW\bin\gfortran.exe
customize Gnu95FCompiler
customize Gnu95FCompiler using build_ext
building '_bem' extension
compiling C sources
C compiler: gcc -O2 -Wall -Wstrict-prototypes

compile options: '-DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSION__=0x0900 -Ibui
ld\src.win32-2.7 -Ic:\users\python\anaconda2\lib\site-packages\numpy\core\includ
e -IC:\Users\python\Anaconda2\include -IC:\Users\python\openmdao-0.10.3.2\PC -IC
:\Users\python\Anaconda2\include -IC:\Users\python\openmdao-0.10.3.2\PC -c'
extra options: '-O2'
gcc -O2 -Wall -Wstrict-prototypes -DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSIO
N__=0x0900 -Ibuild\src.win32-2.7 -Ic:\users\python\anaconda2\lib\site-packages\n
umpy\core\include -IC:\Users\python\Anaconda2\include -IC:\Users\python\openmdao
-0.10.3.2\PC -IC:\Users\python\Anaconda2\include -IC:\Users\python\openmdao-0.10
.3.2\PC -c build\src.win32-2.7_bemmodule.c -o build\temp.win32-2.7\Release\buil
d\src.win32-2.7_bemmodule.o -O2
Found executable C:\MinGW\bin\gcc.exe
gcc -O2 -Wall -Wstrict-prototypes -DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSIO
N__=0x0900 -Ibuild\src.win32-2.7 -Ic:\users\python\anaconda2\lib\site-packages\n
umpy\core\include -IC:\Users\python\Anaconda2\include -IC:\Users\python\openmdao
-0.10.3.2\PC -IC:\Users\python\Anaconda2\include -IC:\Users\python\openmdao-0.10
.3.2\PC -c build\src.win32-2.7\fortranobject.c -o build\temp.win32-2.7\Release\b
uild\src.win32-2.7\fortranobject.o -O2
compiling Fortran sources
Fortran f77 compiler: C:\MinGW\bin\gfortran.exe -Wall -g -ffixed-form -fno-secon
d-underscore -O3 -funroll-loops
Fortran f90 compiler: C:\MinGW\bin\gfortran.exe -Wall -g -fno-second-underscore
-O3 -funroll-loops
Fortran fix compiler: C:\MinGW\bin\gfortran.exe -Wall -g -ffixed-form -fno-secon
d-underscore -Wall -g -fno-second-underscore -O3 -funroll-loops
compile options: '-Ibuild\src.win32-2.7 -Ic:\users\python\anaconda2\lib\site-pac
kages\numpy\core\include -IC:\Users\python\Anaconda2\include -IC:\Users\python\o
penmdao-0.10.3.2\PC -IC:\Users\python\Anaconda2\include -IC:\Users\python\openmd
ao-0.10.3.2\PC -c'
gfortran.exe:f90: src/bem.f90
C:\MinGW\bin\gfortran.exe -Wall -g -Wall -g -shared build\temp.win32-2.7\Release
\build\src.win32-2.7_bemmodule.o build\temp.win32-2.7\Release\build\src.win32-2
.7\fortranobject.o build\temp.win32-2.7\Release\src\bem.o -Lc:\mingw\lib\gcc\min
gw32\4.9.3 -LC:\Users\python\Anaconda2\Libs -LC:\Users\python\openmdao-0.10.3.2
libs -LC:\Users\python\openmdao-0.10.3.2\PCbuild -LC:\Users\python\openmdao-0.10
.3.2\PC\VS9.0 -lpython27 -lgfortran -o src_bem.pyd
build\temp.win32-2.7\Release\src\bem.o: In function windcomponents_': C:\Users\python\WISDEM-WISDEM-947a089\plugins\CCBlade/src/bem.f90:255: undefined reference topow'
C:\Users\python\WISDEM-WISDEM-947a089\plugins\CCBlade/src/bem.f90:255: undefined
reference to pow' C:\Users\python\WISDEM-WISDEM-947a089\plugins\CCBlade/src/bem.f90:255: undefined reference topow'
C:\Users\python\WISDEM-WISDEM-947a089\plugins\CCBlade/src/bem.f90:255: undefined
reference to pow' C:\Users\python\WISDEM-WISDEM-947a089\plugins\CCBlade/src/bem.f90:255: undefined reference topow'
build\temp.win32-2.7\Release\src\bem.o:C:\Users\python\WISDEM-WISDEM-947a089\plu
gins\CCBlade/src/bem.f90:255: more undefined references to `pow' follow
collect2.exe: error: ld returned 1 exit status
error: Command "C:\MinGW\bin\gfortran.exe -Wall -g -Wall -g -shared build\temp.w
in32-2.7\Release\build\src.win32-2.7_bemmodule.o build\temp.win32-2.7\Release\b
uild\src.win32-2.7\fortranobject.o build\temp.win32-2.7\Release\src\bem.o -Lc:\m
ingw\lib\gcc\mingw32\4.9.3 -LC:\Users\python\Anaconda2\Libs -LC:\Users\python\op
enmdao-0.10.3.2\libs -LC:\Users\python\openmdao-0.10.3.2\PCbuild -LC:\Users\pyth
on\openmdao-0.10.3.2\PC\VS9.0 -lpython27 -lgfortran -o src_bem.pyd" failed with
exit status 1

ERROR: command 'C:\Users\python\openmdao-0.10.3.2\Scripts\python.exe setup.py de
velop -N' returned error code: 1

Problem importing lcoe_se_assembly due to LandBOS import error

Testing installation on Linux guest machine, all imports except for lcoe_se_assembly work. Error related to OpenMDAO not recognizing LandBOS:

(openmdao-0.12.0)tparsons@tparsons-VirtualBox:~/Documents/SE_Docs/WISDEM$ python
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.

import wisdem.lcoe.lcoe_csm_assembly
:0: FutureWarning: IPython widgets are experimental and may change in the future.

import wisdem.lcoe.lcoe_se_assembly
/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py:1054: UserWarning: /home/tparsons/.python-eggs is writable by group/others and vulnerable to attack when used with get_resource_filename. Consider a more secure location (set with .set_extraction_path or the PYTHON_EGG_CACHE environment variable).
Traceback (most recent call last):
File "", line 1, in
File "/home/tparsons/Documents/SE_Docs/WISDEM/src/wisdem/lcoe/lcoe_se_assembly.py", line 26, in
from landbos import LandBOS
ImportError: No module named landbos
import wisdem.turbinese.turbine
exit()

Using WISDEM

Hello,

I am a little unsure about how to use WISDEM correctly. Do you have any documentation with examples listed to run through the model?

Best,
Reshmi

Precomp improperly installed

I've tried installing all of the components to Wisdem and it reports that everything is installed correctly. However when I test it with "import wisdem.lcoe.lcoe_se_assembly", it fails to find the precomp libraries.

Looking at the debug info for RotorSE, it appears to be deleting the entire "build\bdist.win32\egg" directory, where it expects the library to be. The "build\bdist.win32" directory is indeed empty. Do you have any suggestions?

Thank you for your help!
Evan

>>> import wisdem.lcoe.lcoe_se_assembly
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "c:\python27\openmdao-0.9.7\wisdem\src\wisdem\lcoe\lcoe_se_assembly.py",
line 19, in <module>
    from wisdem.turbinese.turbine import configure_turbine
  File "c:\python27\openmdao-0.9.7\wisdem\src\wisdem\turbinese\turbine.py", line
 15, in <module>
    from rotorse.rotor import RotorSE
  File "C:\Python27\openmdao-0.9.7\lib\site-packages\rotorse-0.1.0-py2.7.egg\rot
orse\rotor.py", line 22, in <module>
    from precomp import Profile, Orthotropic2DMaterial, CompositeSection, _preco
mp
  File "C:\Python27\openmdao-0.9.7\lib\site-packages\rotorse-0.1.0-py2.7.egg\rot
orse\precomp.py", line 18, in <module>
    from _precomp import precomp as _precomp
  File "build\bdist.win32\egg\_precomp.py", line 7, in <module>
  File "build\bdist.win32\egg\_precomp.py", line 6, in __bootstrap__
ImportError: DLL load failed: The specified procedure could not be found.
(openmdao-0.9.7) C:\Python27\openmdao-0.9.7\WISDEM\plugins\RotorSE>python setup.
py install
running install
running bdist_egg
running egg_info
writing requirements to src\RotorSE.egg-info\requires.txt
writing src\RotorSE.egg-info\PKG-INFO
writing top-level names to src\RotorSE.egg-info\top_level.txt
writing dependency_links to src\RotorSE.egg-info\dependency_links.txt
reading manifest file 'src\RotorSE.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'CHANGELOG.md'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere
 in distribution
writing manifest file 'src\RotorSE.egg-info\SOURCES.txt'
installing library code to build\bdist.win32\egg
running install_lib
running build_py
creating build\bdist.win32\egg
creating build\bdist.win32\egg\rotorse
creating build\bdist.win32\egg\rotorse\5MW_AFFiles
copying build\lib\rotorse\5MW_AFFiles\__init__.py -> build\bdist.win32\egg\rotor
se\5MW_AFFiles
creating build\bdist.win32\egg\rotorse\5MW_PreCompFiles
copying build\lib\rotorse\5MW_PreCompFiles\__init__.py -> build\bdist.win32\egg\
rotorse\5MW_PreCompFiles
copying build\lib\rotorse\precomp.py -> build\bdist.win32\egg\rotorse
copying build\lib\rotorse\rotor.py -> build\bdist.win32\egg\rotorse
copying build\lib\rotorse\rotoraero.py -> build\bdist.win32\egg\rotorse
copying build\lib\rotorse\rotoraerodefaults.py -> build\bdist.win32\egg\rotorse
creating build\bdist.win32\egg\rotorse\test
copying build\lib\rotorse\test\test_rotoraero_gradients.py -> build\bdist.win32\
egg\rotorse\test
copying build\lib\rotorse\test\test_rotor_gradients.py -> build\bdist.win32\egg\
rotorse\test
copying build\lib\rotorse\test\__init__.py -> build\bdist.win32\egg\rotorse\test

copying build\lib\rotorse\__init__.py -> build\bdist.win32\egg\rotorse
byte-compiling build\bdist.win32\egg\rotorse\5MW_AFFiles\__init__.py to __init__
.pyc
byte-compiling build\bdist.win32\egg\rotorse\5MW_PreCompFiles\__init__.py to __i
nit__.pyc
byte-compiling build\bdist.win32\egg\rotorse\precomp.py to precomp.pyc
byte-compiling build\bdist.win32\egg\rotorse\rotor.py to rotor.pyc
byte-compiling build\bdist.win32\egg\rotorse\rotoraero.py to rotoraero.pyc
byte-compiling build\bdist.win32\egg\rotorse\rotoraerodefaults.py to rotoraerode
faults.pyc
byte-compiling build\bdist.win32\egg\rotorse\test\test_rotoraero_gradients.py to
 test_rotoraero_gradients.pyc
byte-compiling build\bdist.win32\egg\rotorse\test\test_rotor_gradients.py to tes
t_rotor_gradients.pyc
byte-compiling build\bdist.win32\egg\rotorse\test\__init__.py to __init__.pyc
byte-compiling build\bdist.win32\egg\rotorse\__init__.py to __init__.pyc
creating build\bdist.win32\egg\EGG-INFO
copying src\RotorSE.egg-info\PKG-INFO -> build\bdist.win32\egg\EGG-INFO
copying src\RotorSE.egg-info\SOURCES.txt -> build\bdist.win32\egg\EGG-INFO
copying src\RotorSE.egg-info\dependency_links.txt -> build\bdist.win32\egg\EGG-I
NFO
copying src\RotorSE.egg-info\not-zip-safe -> build\bdist.win32\egg\EGG-INFO
copying src\RotorSE.egg-info\requires.txt -> build\bdist.win32\egg\EGG-INFO
copying src\RotorSE.egg-info\top_level.txt -> build\bdist.win32\egg\EGG-INFO
creating 'dist\RotorSE-0.1.0-py2.7.egg' and adding 'build\bdist.win32\egg' to it

removing 'build\bdist.win32\egg' (and everything under it)
Processing RotorSE-0.1.0-py2.7.egg
removing 'c:\python27\openmdao-0.9.7\lib\site-packages\RotorSE-0.1.0-py2.7.egg'
(and everything under it)
creating c:\python27\openmdao-0.9.7\lib\site-packages\RotorSE-0.1.0-py2.7.egg
Extracting RotorSE-0.1.0-py2.7.egg to c:\python27\openmdao-0.9.7\lib\site-packag
es
Adding RotorSE 0.1.0 to easy-install.pth file

Installed c:\python27\openmdao-0.9.7\lib\site-packages\rotorse-0.1.0-py2.7.egg
Processing dependencies for RotorSE==0.1.0
Searching for pBEAM==0.1.0
Best match: pBEAM 0.1.0
Processing pbeam-0.1.0-py2.7-win32.egg
pbeam 0.1.0 is already the active version in easy-install.pth

Using c:\python27\openmdao-0.9.7\lib\site-packages\pbeam-0.1.0-py2.7-win32.egg
Searching for CCBlade==1.1.1
Best match: CCBlade 1.1.1
CCBlade 1.1.1 is already the active version in easy-install.pth

Using c:\python27\openmdao-0.9.7\wisdem\plugins\ccblade\src
Searching for CommonSE==0.1.3
Best match: CommonSE 0.1.3
CommonSE 0.1.3 is already the active version in easy-install.pth

Using c:\python27\openmdao-0.9.7\wisdem\plugins\commonse\src
Searching for AirfoilPrep.py==0.1.0
Best match: AirfoilPrep.py 0.1.0
AirfoilPrep.py 0.1.0 is already the active version in easy-install.pth

Using c:\python27\openmdao-0.9.7\wisdem\plugins\airfoilpreppy\src
Searching for akima==1.0.0
Best match: akima 1.0.0
Adding akima 1.0.0 to easy-install.pth file

Using c:\python27\openmdao-0.9.7\wisdem\plugins\akima\src
Finished processing dependencies for RotorSE==0.1.0
running install
running bdist_egg
running egg_info
running build_src
build_src
building extension "_precomp" sources
f2py options: []
  adding 'build\src.win32-2.7\fortranobject.c' to sources.
  adding 'build\src.win32-2.7' to include_dirs.
  adding 'build\src.win32-2.7\_precomp-f2pywrappers2.f90' to sources.
build_src: building npy-pkg config files
writing src/rotorse\precomp.egg-info\PKG-INFO
writing top-level names to src/rotorse\precomp.egg-info\top_level.txt
writing dependency_links to src/rotorse\precomp.egg-info\dependency_links.txt
reading manifest file 'src/rotorse\precomp.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'CHANGELOG.md'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere
 in distribution
writing manifest file 'src/rotorse\precomp.egg-info\SOURCES.txt'
installing library code to build\bdist.win32\egg
running install_lib
running build_ext
Cannot build msvcr library: "msvcr90d.dll" not found
customize Mingw32CCompiler
customize Mingw32CCompiler using build_ext
customize GnuFCompiler
Could not locate executable g77
Could not locate executable f77
customize IntelVisualFCompiler
Could not locate executable ifort
Could not locate executable ifl
customize AbsoftFCompiler
Could not locate executable f90
customize CompaqVisualFCompiler
Could not locate executable DF
customize IntelItaniumVisualFCompiler
Could not locate executable efl
customize Gnu95FCompiler
Found executable C:\MinGW\bin\gfortran.exe
Found executable C:\MinGW\bin\gfortran.exe
customize Gnu95FCompiler
customize Gnu95FCompiler using build_ext
creating build\bdist.win32\egg
copying build\lib.win32-2.7\_curvefem.pyd -> build\bdist.win32\egg
copying build\lib.win32-2.7\_precomp.pyd -> build\bdist.win32\egg
creating stub loader for _precomp.pyd
byte-compiling build\bdist.win32\egg\_precomp.py to _precomp.pyc
creating build\bdist.win32\egg\EGG-INFO
copying src\rotorse\precomp.egg-info\SOURCES.txt -> build\bdist.win32\egg\EGG-IN
FO
writing build\bdist.win32\egg\EGG-INFO\native_libs.txt
zip_safe flag not set; analyzing archive contents...
creating 'dist\precomp-0.0.0-py2.7-win32.egg' and adding 'build\bdist.win32\egg'
 to it
**removing 'build\bdist.win32\egg' (and everything under it)**
Processing precomp-0.0.0-py2.7-win32.egg
Removing c:\python27\openmdao-0.9.7\lib\site-packages\precomp-0.0.0-py2.7-win32.
egg
Copying precomp-0.0.0-py2.7-win32.egg to c:\python27\openmdao-0.9.7\lib\site-pac
kages
Adding precomp 0.0.0 to easy-install.pth file

Installed c:\python27\openmdao-0.9.7\lib\site-packages\precomp-0.0.0-py2.7-win32
.egg
Processing dependencies for precomp==0.0.0
Finished processing dependencies for precomp==0.0.0
running install
running bdist_egg
running egg_info
running build_src
build_src
building extension "_curvefem" sources
f2py options: []
  adding 'build\src.win32-2.7\fortranobject.c' to sources.
  adding 'build\src.win32-2.7' to include_dirs.
build_src: building npy-pkg config files
writing src/rotorse\curvefem.egg-info\PKG-INFO
writing top-level names to src/rotorse\curvefem.egg-info\top_level.txt
writing dependency_links to src/rotorse\curvefem.egg-info\dependency_links.txt
reading manifest file 'src/rotorse\curvefem.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'CHANGELOG.md'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere
 in distribution
writing manifest file 'src/rotorse\curvefem.egg-info\SOURCES.txt'
installing library code to build\bdist.win32\egg
running install_lib
running build_ext
Cannot build msvcr library: "msvcr90d.dll" not found
customize Mingw32CCompiler
customize Mingw32CCompiler using build_ext
customize GnuFCompiler
customize IntelVisualFCompiler
customize AbsoftFCompiler
customize CompaqVisualFCompiler
customize IntelItaniumVisualFCompiler
customize Gnu95FCompiler
customize Gnu95FCompiler
customize Gnu95FCompiler using build_ext
creating build\bdist.win32\egg
copying build\lib.win32-2.7\_curvefem.pyd -> build\bdist.win32\egg
copying build\lib.win32-2.7\_precomp.pyd -> build\bdist.win32\egg
creating stub loader for _curvefem.pyd
byte-compiling build\bdist.win32\egg\_curvefem.py to _curvefem.pyc
creating build\bdist.win32\egg\EGG-INFO
copying src\rotorse\curvefem.egg-info\SOURCES.txt -> build\bdist.win32\egg\EGG-I
NFO
writing build\bdist.win32\egg\EGG-INFO\native_libs.txt
zip_safe flag not set; analyzing archive contents...
creating 'dist\curvefem-0.0.0-py2.7-win32.egg' and adding 'build\bdist.win32\egg
' to it
removing 'build\bdist.win32\egg' (and everything under it)
Processing curvefem-0.0.0-py2.7-win32.egg
Removing c:\python27\openmdao-0.9.7\lib\site-packages\curvefem-0.0.0-py2.7-win32
.egg
Copying curvefem-0.0.0-py2.7-win32.egg to c:\python27\openmdao-0.9.7\lib\site-pa
ckages
curvefem 0.0.0 is already the active version in easy-install.pth

Installed c:\python27\openmdao-0.9.7\lib\site-packages\curvefem-0.0.0-py2.7-win3
2.egg
Processing dependencies for curvefem==0.0.0
Finished processing dependencies for curvefem==0.0.0

NameError: name 'nrelcsm' is not defined.

Hi, we are looking to import the bos_csm function from wisdom as such:
from wisdem.nrelcsm.nrel_csm import bos_csm

However we receive the error:
File "nrel_csm_run.py", line 11, in <module> from wisdem.nrelcsm.nrel_csm import bos_csm File "C:\Users\hawes\Anaconda3\envs\wisdem-env\lib\site-packages\wisdem\nrelcsm\nrel_csm.py", line 11, in <module> from wisdem.nrelcsm.config import * File "C:\Users\hawes\Anaconda3\envs\wisdem-env\lib\site-packages\wisdem\nrelcsm\config.py", line 22, in <module> ppi = PPI(ref_yr,ref_mon,curr_yr,curr_mon) File "C:\Users\hawes\Anaconda3\envs\wisdem-env\lib\site-packages\wisdem\nrelcsm\csmPPI.py", line 129, in __init__ fullfile = os.path.join(nrelcsm.__path__[0], self.tblfile) NameError: name 'nrelcsm' is not defined (wisdem-env)

To my understanding it looks like the issue is because on line 129 in nrelcsm/csmPPi.py, there is a reference to nrelcsm, but the import at the top of the file looks like:
import wisdem.nrelcsm

Installation question~~!!

Dear sir
I have a question about how to run wisdem unit tests successfully:
Microsoft Windows
Copyright (c) 2009 Microsoft Corporation. All rights reserved.

C:\Users\jason2>cd "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmd
ao-0.7.0"

C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0>call Script
s\activate.bat
Traceback (most recent call last):
File "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0\Scr
ipts\get_full_libpath-script.py", line 6, in
from pkg_resources import load_entry_point
File "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0\lib
\site-packages\setuptools-36.4.0-py2.7.egg\pkg_resources_init_.py", line 3074
, in
@call_aside
File "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0\lib
\site-packages\setuptools-36.4.0-py2.7.egg\pkg_resources_init
.py", line 3058
, in call_aside
f(*args, **kwargs)
File "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0\lib
\site-packages\setuptools-36.4.0-py2.7.egg\pkg_resources_init
.py", line 3087
, in _initialize_master_working_set
working_set = WorkingSet.build_master()
File "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0\lib
\site-packages\setuptools-36.4.0-py2.7.egg\pkg_resources_init
.py", line 666,
in _build_master
return cls.build_from_requirements(requires)
File "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0\lib
\site-packages\setuptools-36.4.0-py2.7.egg\pkg_resources_init
.py", line 679,
in build_from_requirements
dists = ws.resolve(reqs, Environment())
File "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0\lib
\site-packages\setuptools-36.4.0-py2.7.egg\pkg_resources_init
.py", line 872,
in resolve
raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.ContextualVersionConflict: (traits 3.3.0 (c:\users\jason2\desktop
wisdem-wisdem-0.1-15-ged28592\openmdao-0.7.0\lib\site-packages\traits-3.3.0-py2.
7-win32.egg), Requirement.parse('Traits==4.3.0'), set(['openmdao.util']))

(openmdao-0.7.0) C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-
0.7.0>cd "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\WISDEM\src"

(openmdao-0.7.0) C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\WISDEM\sr
c>python
Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.

import wisdem.lcoe.lcoe_csm_assembly
Traceback (most recent call last):
File "", line 1, in
File "wisdem\lcoe\lcoe_csm_assembly.py", line 10, in
from fusedwind.plant_cost.fused_finance import ExtendedFinancialAnalysis, co
nfigure_extended_financial_analysis
File "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0\lib
\site-packages\fusedwind-0.1.0-py2.7.egg\fusedwind\plant_cost\fused_finance.py",
line 6, in
from fusedwind.plant_flow.asym import BaseAEPModel
File "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0\lib
\site-packages\fusedwind-0.1.0-py2.7.egg\fusedwind\plant_flow\asym.py", line 14,
in
from vt import *
File "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0\lib
\site-packages\fusedwind-0.1.0-py2.7.egg\fusedwind\plant_flow\vt.py", line 15, i
n
import matplotlib.pylab as plt
File "c:\python27\lib\site-packages\matplotlib_init_.py", line 121, in
'.'.join(str(x) for x in _required)))
ImportError: matplotlib requires pyparsing >= 1.5.6
import wisdem.lcoe.lcoe_se_csm_assembly
Traceback (most recent call last):
File "", line 1, in
ImportError: No module named lcoe_se_csm_assembly
import wisdem.turbinese.turbine
Traceback (most recent call last):
File "", line 1, in
File "wisdem\turbinese\turbine.py", line 15, in
from rotorse.rotor import RotorSE
File "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0\lib
\site-packages\rotorse-0.1.0-py2.7.egg\rotorse\rotor.py", line 15, in
from rotoraero import SetupRunVarSpeed, RegulatedPowerCurve, AEP, VarSpeedMa
chine,
File "C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\openmdao-0.7.0\lib
\site-packages\rotorse-0.1.0-py2.7.egg\rotorse\rotoraero.py", line 12, in
from openmdao.main.api import VariableTree, Component, Assembly, ImplicitCom
ponent
ImportError: cannot import name ImplicitComponent

^Z

(openmdao-0.7.0) C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\WISDEM\sr
c>python test/test_WISDEM.py


Ran 0 tests in 0.000s

OK

(openmdao-0.7.0) C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\WISDEM\sr
c>python test/test_turbine_gradients.py
Traceback (most recent call last):
File "test/test_turbine_gradients.py", line 13, in
from wisdem.turbinese.turbine import MaxTipDeflection
ImportError: No module named wisdem.turbinese.turbine

(openmdao-0.7.0) C:\Users\jason2\Desktop\WISDEM-WISDEM-0.1-15-ged28592\WISDEM\sr
c>

Thanks for your help.

Installation fails

Dear all,
I'm facing the following issue when trying to install WISDEM:

1,loc_web,weby_u,weby_l,n_scts,xsec_node,[nsecnode])
Constructing wrapper function "precomp.tw_rate"...
th_prime = tw_rate(sloc,tw_aero,[naf])
Creating wrapper for Fortran subroutine "q_bars"("q_bars")...
Constructing wrapper function "precomp.q_bars"...
qbar11,qbar22,qbar12,qbar16,qbar26,qbar66,rho_m = q_ba
rs(mat,thp,density,q11,q22,q12,q66)
Constructing wrapper function "precomp.q_tildas"...
qtil = q_tildas(qbar11,qbar22,qbar12,qbar16,qbar26,qba
r66,mat)
Wrote C/API module "_precomp" to file "build\src.win32-2.7_precompmodul
e.c"
Fortran 90 wrappers are saved to "build\src.win32-2.7_precomp-f2pywrapp
ers2.f90"
adding 'build\src.win32-2.7\fortranobject.c' to sources.
adding 'build\src.win32-2.7' to include_dirs.
copying C:\Python27\lib\site-packages\numpy\f2py\src\fortranobject.c -> build\sr
c.win32-2.7
copying C:\Python27\lib\site-packages\numpy\f2py\src\fortranobject.h -> build\sr
c.win32-2.7
adding 'build\src.win32-2.7_precomp-f2pywrappers2.f90' to sources.
build_src: building npy-pkg config files
creating src\rotorse\precomp.egg-info
writing src/rotorse\precomp.egg-info\PKG-INFO
writing top-level names to src/rotorse\precomp.egg-info\top_level.txt
writing dependency_links to src/rotorse\precomp.egg-info\dependency_links.txt
writing manifest file 'src/rotorse\precomp.egg-info\SOURCES.txt'
reading manifest file 'src/rotorse\precomp.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'CHANGELOG.md'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere
in distribution
writing manifest file 'src/rotorse\precomp.egg-info\SOURCES.txt'
running build_ext
Cannot build msvcr library: "msvcr90d.dll" not found
customize Mingw32CCompiler
customize Mingw32CCompiler using build_ext
customize GnuFCompiler
Could not locate executable g77
Could not locate executable f77
customize IntelVisualFCompiler
Could not locate executable ifort
Could not locate executable ifl
customize AbsoftFCompiler
Could not locate executable f90
customize CompaqVisualFCompiler
Could not locate executable DF
customize IntelItaniumVisualFCompiler
Could not locate executable efl
customize Gnu95FCompiler
Found executable C:\Program Files (x86)\CodeBlocks\MinGW\bin\gfortran.exe
Found executable C:\Program Files (x86)\CodeBlocks\MinGW\bin\gfortran.exe
customize Gnu95FCompiler
customize Gnu95FCompiler using build_ext
building '_precomp' extension
compiling C sources
C compiler: gcc -O2 -Wall -Wstrict-prototypes

creating build\temp.win32-2.7
creating build\temp.win32-2.7\Release
creating build\temp.win32-2.7\Release\build
creating build\temp.win32-2.7\Release\build\src.win32-2.7
compile options: '-DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSION__=0x0900 -Ibui
ld\src.win32-2.7 -IC:\Python27\lib\site-packages\numpy\core\include -IC:\Python2
7\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c'
extra options: '-O2'
gcc -O2 -Wall -Wstrict-prototypes -DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSIO
N__=0x0900 -Ibuild\src.win32-2.7 -IC:\Python27\lib\site-packages\numpy\core\incl
ude -IC:\Python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c build\src.win32-
2.7\fortranobject.c -o build\temp.win32-2.7\Release\build\src.win32-2.7\fortrano
bject.o -O2
Found executable C:\Program Files (x86)\CodeBlocks\MinGW\bin\gcc.exe
gcc -O2 -Wall -Wstrict-prototypes -DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSIO
N__=0x0900 -Ibuild\src.win32-2.7 -IC:\Python27\lib\site-packages\numpy\core\incl
ude -IC:\Python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c build\src.win32-
2.7_precompmodule.c -o build\temp.win32-2.7\Release\build\src.win32-2.7_precom
pmodule.o -O2
compiling Fortran 90 module sources
Fortran f77 compiler: C:\Program Files (x86)\CodeBlocks\MinGW\bin\gfortran.exe -
Wall -ffixed-form -fno-second-underscore -mno-cygwin -O2 -funroll-loops
Fortran f90 compiler: C:\Program Files (x86)\CodeBlocks\MinGW\bin\gfortran.exe -
Wall -fno-second-underscore -mno-cygwin -O2 -funroll-loops
Fortran fix compiler: C:\Program Files (x86)\CodeBlocks\MinGW\bin\gfortran.exe -
Wall -ffixed-form -fno-second-underscore -mno-cygwin -Wall -fno-second-underscor
e -mno-cygwin -O2 -funroll-loops
creating build\temp.win32-2.7\Release\src
creating build\temp.win32-2.7\Release\src\rotorse
compile options: '-Ibuild\src.win32-2.7 -IC:\Python27\lib\site-packages\numpy\co
re\include -IC:\Python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c'
extra options: '-Jbuild\temp.win32-2.7\Release\ -Ibuild\temp.win32-2.7\Release'

gfortran.exe:f90: src/rotorse/PreCompPy.f90
gfortran.exe: error: unrecognized command line option '-mno-cygwin'
error: Command "C:\Program Files (x86)\CodeBlocks\MinGW\bin\gfortran.exe -Wall -
fno-second-underscore -mno-cygwin -O2 -funroll-loops -Ibuild\src.win32-2.7 -IC:
Python27\lib\site-packages\numpy\core\include -IC:\Python27\include -IC:\OpenMDA
O\openmdao-0.10.3.2\PC -c -c src/rotorse/PreCompPy.f90 -o build\temp.win32-2.7\R
elease\src\rotorse\PreCompPy.o -Jbuild\temp.win32-2.7\Release\ -Ibuild\temp.win3
2-2.7\Release" failed with exit status 1

ERROR: command 'C:\OpenMDAO\openmdao-0.10.3.2\Scripts\python.exe setup.py develo
p -N' returned error code: 1
subprocess returned -1
plugin RotorSE FAILED to install correctly
install url: package= TowerSE url= http://github.com/WISDEM/TowerSE/tarball/mas
ter
installing distribution from current directory as a 'develop' egg
running develop
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.1-py2.7.egg\pkg_re
sources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a leg
acy, non PEP 440, version. You may find odd behavior and sort order. In particul
ar it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 com
patible versions.
running egg_info
creating src\TowerSE.egg-info
writing requirements to src\TowerSE.egg-info\requires.txt
writing src\TowerSE.egg-info\PKG-INFO
writing top-level names to src\TowerSE.egg-info\top_level.txt
writing dependency_links to src\TowerSE.egg-info\dependency_links.txt
writing manifest file 'src\TowerSE.egg-info\SOURCES.txt'
reading manifest file 'src\TowerSE.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere
in distribution
writing manifest file 'src\TowerSE.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\TowerSE.egg-link (link
to src)
Adding TowerSE 0.1.4 to easy-install.pth file

Installed c:\users\perronef\desktop\wisdem-master\plugins\towerse\src
subprocess returned 0
install url: package= pyFrame3DD url= http://github.com/WISDEM/pyFrame3DD/tarba
ll/master
installing distribution from current directory as a 'develop' egg
running develop
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.1-py2.7.egg\pkg_re
sources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a leg
acy, non PEP 440, version. You may find odd behavior and sort order. In particul
ar it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 com
patible versions.
running egg_info
creating src\pyFrame3DD.egg-info
writing src\pyFrame3DD.egg-info\PKG-INFO
writing top-level names to src\pyFrame3DD.egg-info\top_level.txt
writing dependency_links to src\pyFrame3DD.egg-info\dependency_links.txt
writing manifest file 'src\pyFrame3DD.egg-info\SOURCES.txt'
reading manifest file 'src\pyFrame3DD.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere
in distribution
writing manifest file 'src\pyFrame3DD.egg-info\SOURCES.txt'
running build_ext
building '_pyframe3dd' extension
creating build
creating build\temp.win32-2.7
creating build\temp.win32-2.7\Release
creating build\temp.win32-2.7\Release\src
C:\Program Files (x86)\CodeBlocks\MinGW\bin\gcc.exe -mno-cygwin -mdll -O -Wall -
IC:\Python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c src/py_main.c -o buil
d\temp.win32-2.7\Release\src\py_main.o
gcc: error: unrecognized command line option '-mno-cygwin'
error: command 'C:\Program Files (x86)\CodeBlocks\MinGW\bin\gcc.exe' failed
with exit status 1

ERROR: command 'C:\OpenMDAO\openmdao-0.10.3.2\Scripts\python.exe setup.py develo
p -N' returned error code: 1
subprocess returned -1
plugin pyFrame3DD FAILED to install correctly
install url: package= pBEAM url= http://github.com/WISDEM/pBEAM/tarball/master
installing distribution from current directory as a 'develop' egg
running develop
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.1-py2.7.egg\pkg_re
sources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a leg
acy, non PEP 440, version. You may find odd behavior and sort order. In particul
ar it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 com
patible versions.
running build_scripts
running egg_info
running build_src
build_src
building extension "_pBEAM" sources
build_src: building npy-pkg config files
creating pBEAM.egg-info
writing pBEAM.egg-info\PKG-INFO
writing top-level names to pBEAM.egg-info\top_level.txt
writing dependency_links to pBEAM.egg-info\dependency_links.txt
writing manifest file 'pBEAM.egg-info\SOURCES.txt'
reading manifest file 'pBEAM.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'CHANGELOG.md'
warning: no directories found matching 'docs_build\html'
warning: no directories found matching 'test'
writing manifest file 'pBEAM.egg-info\SOURCES.txt'
running build_ext
Cannot build msvcr library: "msvcr90d.dll" not found
customize Mingw32CCompiler
customize Mingw32CCompiler using build_ext
Cannot build msvcr library: "msvcr90d.dll" not found
customize Mingw32CCompiler
customize Mingw32CCompiler using build_ext
building '_pBEAM' extension
compiling C++ sources
C compiler: g++ -O2 -Wall

creating build
creating build\temp.win32-2.7
creating build\temp.win32-2.7\Release
creating build\temp.win32-2.7\Release\src
creating build\temp.win32-2.7\Release\src\pbeam
creating build\temp.win32-2.7\Release\src\pybeam
compile options: '-DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSION__=0x0900 -Isrc
\pBEAM -IC:/boost_1_55_0 -IC:\Python27\lib\site-packages\numpy\core\include -IC:
\Python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c'
extra options: '-O2'
g++ -O2 -Wall -DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSION__=0x0900 -Isrc\pBE
AM -IC:/boost_1_55_0 -IC:\Python27\lib\site-packages\numpy\core\include -IC:\Pyt
hon27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c src\pBEAM\Poly.cpp -o build
temp.win32-2.7\Release\src\pbeam\poly.o -O2
Found executable C:\Program Files (x86)\CodeBlocks\MinGW\bin\g++.exe
g++ -O2 -Wall -DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSION__=0x0900 -Isrc\pBE
AM -IC:/boost_1_55_0 -IC:\Python27\lib\site-packages\numpy\core\include -IC:\Pyt
hon27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c src\pBEAM\BeamFEA.cpp -o bui
ld\temp.win32-2.7\Release\src\pbeam\beamfea.o -O2
In file included from src\pBEAM\BeamFEA.h:12:0,
from src\pBEAM\BeamFEA.cpp:11:
src\pBEAM\myMath.h:14:42: fatal error: boost/numeric/ublas/matrix.hpp: No such f
ile or directory
compilation terminated.
error: Command "g++ -O2 -Wall -DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSION__=
0x0900 -Isrc\pBEAM -IC:/boost_1_55_0 -IC:\Python27\lib\site-packages\numpy\core
include -IC:\Python27\include -IC:\OpenMDAO\openmdao-0.10.3.2\PC -c src\pBEAM\Be
amFEA.cpp -o build\temp.win32-2.7\Release\src\pbeam\beamfea.o -O2" failed with e
xit status 1

ERROR: command 'C:\OpenMDAO\openmdao-0.10.3.2\Scripts\python.exe setup.py develo
p -N' returned error code: 1
subprocess returned -1
plugin pBEAM FAILED to install correctly
install url: package= JacketSE url= http://github.com/WISDEM/JacketSE/tarball/m
aster
installing distribution from current directory as a 'develop' egg
running develop
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.1-py2.7.egg\pkg_re
sources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a leg
acy, non PEP 440, version. You may find odd behavior and sort order. In particul
ar it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 com
patible versions.
running egg_info
creating src\jacketse.egg-info
writing requirements to src\jacketse.egg-info\requires.txt
writing src\jacketse.egg-info\PKG-INFO
writing top-level names to src\jacketse.egg-info\top_level.txt
writing dependency_links to src\jacketse.egg-info\dependency_links.txt
writing manifest file 'src\jacketse.egg-info\SOURCES.txt'
reading manifest file 'src\jacketse.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no directories found matching 'src\jacketse\sphinx_build\html'
writing manifest file 'src\jacketse.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\jacketse.egg-link (link
to src)
Adding jacketse 0.1 to easy-install.pth file

Installed c:\users\perronef\desktop\wisdem-master\plugins\jacketse\src
subprocess returned 0
installing distribution from current directory as a 'develop' egg
running develop
C:\OpenMDAO\openmdao-0.10.3.2\lib\site-packages\setuptools-12.1-py2.7.egg\pkg_re
sources__init__.py:2512: PEP440Warning: 'pytz (2011k)' is being parsed as a leg
acy, non PEP 440, version. You may find odd behavior and sort order. In particul
ar it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 com
patible versions.
running egg_info
creating src\WISDEM.egg-info
writing requirements to src\WISDEM.egg-info\requires.txt
writing src\WISDEM.egg-info\PKG-INFO
writing top-level names to src\WISDEM.egg-info\top_level.txt
writing dependency_links to src\WISDEM.egg-info\dependency_links.txt
writing manifest file 'src\WISDEM.egg-info\SOURCES.txt'
reading manifest file 'src\WISDEM.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere
in distribution
writing manifest file 'src\WISDEM.egg-info\SOURCES.txt'
running build_ext
Creating c:\openmdao\openmdao-0.10.3.2\lib\site-packages\WISDEM.egg-link (link t
o src)
Adding WISDEM 0.1.1 to easy-install.pth file

Installed c:\users\perronef\desktop\wisdem-master\src

Attempted to install WISDEM and its sub-plugins: ['Turbine_CostsSE', 'CommonSE'
, 'Plant_CostsSE', 'Plant_FinanceSE', 'Plant_EnergySE', 'AeroelasticSE', 'Airfoi
lPreppy', 'CCBlade', 'DriveSE', 'DriveWPACT', 'NREL_CSM', 'RotorSE', 'TowerSE',
'pyFrame3DD', 'pBEAM', 'JacketSE']
Failed to install: ['akima', 'CCBlade', 'RotorSE', 'pyFrame3DD', 'pBEAM']

(openmdao-0.10.3.2) C:\Users\PerroneF\Desktop\WISDEM-master>

pBeam and RotorSE do not install because of addressing wrong library dirs, therefore, as far as I understood, the error is coming from appending the '-mno-cygwin' when trying to compile the Fortran dependacies that should be built. In the installation file there is written from Python v.2.7.5 this issue should be solved. However, I am encountering it even when working with Python 2.7.9.

Specifications are:

Windows OS
GCC 4.7.1 (bundled with CodeBlocks)
Python 2.7.9
OpenMDAO 0.10.3.2

How is it possible to solve this problem? I thank you in advance.

Installation Problem

Dear WISDEM Team,

I am having trouble installing WISDEM on my Windows 10 PC.

I followed the instructions under: https://nwtc.nrel.gov/WISDEM

However, when I run "> bjam toolset=gcc --with-python link=shared" the .../stage/lib folder is created but it stays empty.
Further does the "setup_all.py" gives me the error "'plugin' is not recognized as an internal or external command, operable program or batch file.", which comes when it wants to install WISDEM itself. All other packages like FUSED-WIND or Turbine_CostsSE is installed correctly.
Do I need to add "plugin" to my PATH variables and what does the "install" stands for in the "setup_all.py"? There is nothing called "install" in the WISDEM root directory.

finally install WISDEM itself
os.chdir(rootdir)
os.system("plugin install")

Thanks for your help and of course I can provide you with required additional information.

Sincerely,
René

Problem running turbine.py

I created a virtual machine on my Windows computer running Ubuntu as the guest. All OpenMDAO tests were passed, dependencies are installed, and the setup_all returns everything was installed correctly. When running turbine.py my error seems to be with connections in OpenMDAO:

(openmdao-0.12.0)tparsons@tparsons-VirtualBox:~/Documents/SE_Docs/WISDEM/src/wisdem/turbinese$ python turbine.py
/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py:1054: UserWarning: /home/tparsons/.python-eggs is writable by group/others and vulnerable to attack when used with get_resource_filename. Consider a more secure location (set with .set_extraction_path or the PYTHON_EGG_CACHE environment variable).
Traceback (most recent call last):
File "turbine.py", line 345, in
turbine = TurbineSE()
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/assembly.py", line 182, in init
set_as_top(self, first_only=True)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/assembly.py", line 78, in set_as_top
cont.cpath_updated()
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/component.py", line 420, in cpath_updated
self.configure()
File "turbine.py", line 333, in configure
configure_turbine(self)
File "turbine.py", line 188, in configure_turbine
assembly.add('rotor', RotorSE())
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/component.py", line 558, in add
super(Component, self).add(name, obj)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/container.py", line 603, in add
removed = self._prep_for_add(name, obj)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/container.py", line 592, in _prep_for_add
obj.cpath_updated()
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/component.py", line 420, in cpath_updated
self.configure()
File "/home/tparsons/Documents/SE_Docs/WISDEM/plugins/RotorSE/src/rotorse/rotor.py", line 2032, in configure
self.connect('precurve_sub + delta_precurve_sub', 'spline.precurve_sub')
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/assembly.py", line 623, in connect
sys.exc_info())
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/assembly.py", line 620, in connect
self._connect(src, dst)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/assembly.py", line 642, in _connect
pseudocomp.make_connections(self)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/pseudocomp.py", line 289, in make_connections
scope.connect(src, dest)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/assembly.py", line 623, in connect
sys.exc_info())
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/assembly.py", line 620, in connect
self._connect(src, dst)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/assembly.py", line 670, in _connect
destexpr.set(srcexpr.evaluate(), self)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/expreval.py", line 705, in set
self._get_updated_scope(scope).set(self.text, val)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/container.py", line 1024, in set
self.raise_exception(str(err), err.class)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/container.py", line 1353, in raise_exception
raise exception_class(full_msg)
ValueError: rotor: Can't connect 'precurve_sub+delta_precurve_sub' to 'spline.precurve_sub': rotor: Can't connect '_pseudo_0.out0' to 'spline.precurve_sub': rotor: rotor.spline: Variable 'precurve_sub' must be an array-like object, but a value of None (<type 'NoneType'>) was specified.

WISDEM Installation problem

Dear Developers,

I had installation problem of WISDEM. I am currently using ANACONDA (Python 3.7) and using gfortran by mingw64.
Below is warning and error statements

warning: no directories found matching 'src\test'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere in distribution
writing manifest file 'WISDEM.egg-info\SOURCES.txt'
installing library code to build\bdist.win-amd64\egg
running install_lib
running build_py
running build_ext
No module named 'numpy.distutils._msvccompiler' in numpy.distutils; trying from distutils
customize MSVCCompiler
customize MSVCCompiler using build_ext
No module named 'numpy.distutils._msvccompiler' in numpy.distutils; trying from distutils
customize MSVCCompiler
Missing compiler_cxx fix for MSVCCompiler
customize MSVCCompiler using build_ext
get_default_fcompiler: matching types: '['gnu', 'intelv', 'absoft', 'compaqv', 'intelev', 'gnu95', 'g95', 'intelvem', 'intelem', 'flang']'
customize GnuFCompiler
Could not locate executable g77
Could not locate executable f77
customize IntelVisualFCompiler
Could not locate executable ifort
Could not locate executable ifl
customize AbsoftFCompiler
Could not locate executable f90
customize CompaqVisualFCompiler
Could not locate executable DF
customize IntelItaniumVisualFCompiler
Could not locate executable efl
customize Gnu95FCompiler

py_frame3dd.obj : error LNK2001: free_D3matrix �ܺ� ��ȣ�� Ȯ���� �� �����ϴ�.
py_frame3dd.obj : error LNK2001: free_D3dmatrix �ܺ� ��ȣ�� Ȯ���� �� �����ϴ�.
py_main.obj : error LNK2001: D3matrix �ܺ� ��ȣ�� Ȯ���� �� �����ϴ�.
py_main.obj : error LNK2001: D3dmatrix �ܺ� ��ȣ�� Ȯ���� �� �����ϴ�.
build\lib.win-amd64-3.7\wisdem\pyframe3dd_pyframe3dd.cp37-win_amd64.pyd : fatal error LNK1120: 4���� Ȯ���� �� ���� �ܺ� �����Դϴ�.

cobyla.cobyla error

I install all until running unit test get following error, need help!

import wisdem.lcoe.lcoe_csm_assembly
Traceback (most recent call last):
File "", line 1, in
File "/home/zhangxuedong/OpenMDAO-Framework/devenv/WISDEM/src/wisdem/lcoe/lcoe_csm_assembly.py", line 10, in
from fusedwind.plant_cost.fused_finance import ExtendedFinancialAnalysis, configure_extended_financial_analysis
File "/usr/local/lib/python2.7/dist-packages/fusedwind-0.1.0-py2.7.egg/fusedwind/plant_cost/fused_finance.py", line 6, in
from fusedwind.plant_flow.asym import BaseAEPModel
File "/usr/local/lib/python2.7/dist-packages/fusedwind-0.1.0-py2.7.egg/fusedwind/plant_flow/asym.py", line 7, in
from openmdao.lib.drivers.api import CaseIteratorDriver
File "/usr/local/lib/python2.7/dist-packages/openmdao.lib-0.13.0-py2.7.egg/openmdao/lib/drivers/api.py", line 10, in
from openmdao.lib.drivers.cobyladriver import COBYLAdriver
File "/usr/local/lib/python2.7/dist-packages/openmdao.lib-0.13.0-py2.7.egg/openmdao/lib/drivers/cobyladriver.py", line 15, in
from cobyla.cobyla import cobyla, closeunit
ImportError: No module named cobyla.cobyla

Are there updated install directions for windows?

I've noticed from the NREL NWTC WISDEM website that the windows instructions are a bit dated. For example, openmdao is now on version 1.7.3. Also, Boost is on version 1.63, and if you are going to use the boost command: "> cd boost_1_55_0\tools\build\v2\engine" it should read, "cd boost_1_63_0\tools\build\src\engine"
I do not have experience installing programs and drivers like Boost and LAPACK. Any help in installing the necessary support would be helpful. Currently, I am getting an error trying to install the Boost build.bat.

I am able to run OpenMDAO tutorials.

dependencies on each module

update dependencies so that all models install correct dependencies (not just overall wisdem); also add windows help docs link to each readme

Array broadcasting in drive.py, Linux

Still in a Linux guest machine, running drive.py returns the following error with the nacelle_System_I variable:

(openmdao-0.12.0)tparsons@tparsons-VirtualBox:~/Documents/SE_Docs/WISDEM/plugins/DriveSE/src/drivese$ python drive.py
----- NREL 5 MW Turbine - 3 Point Suspension -----
Traceback (most recent call last):
File "drive.py", line 1194, in
nacelle_example_5MW_baseline_3pt()
File "drive.py", line 740, in nacelle_example_5MW_baseline_3pt
nace.run()
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/component.py", line 520, in run
self.execute()
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/assembly.py", line 752, in execute
self._system.run(self.itername, case_uuid=self._case_uuid)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/systems.py", line 1624, in run
sub.run(iterbase, case_label=case_label, case_uuid=case_uuid)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/systems.py", line 1021, in run
self._comp.run(case_uuid=case_uuid)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/driver.py", line 431, in run
super(Driver, self).run(case_uuid)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/component.py", line 520, in run
self.execute()
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/driver.py", line 459, in execute
self.run_iteration()
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/driver.py", line 497, in run_iteration
wf.run()
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/workflow.py", line 188, in run
self._system.run(iterbase=iterbase, case_uuid=case_uuid)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/systems.py", line 1624, in run
sub.run(iterbase, case_label=case_label, case_uuid=case_uuid)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/systems.py", line 1026, in run
self.vec['u'].set_from_scope(self.scope, vnames)
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/vecwrapper.py", line 291, in set_from_scope
self[name] = scope.get_flattened_value(name[0]).real
File "/home/tparsons/Desktop/OpenMDAO/openmdao-0.12.0/local/lib/python2.7/site-packages/openmdao.main-0.12.0-py2.7.egg/openmdao/main/vecwrapper.py", line 84, in setitem
(name, str(value), str(err)))
RuntimeError: cannot set array ('nacelleSystem.nacelle_I', ('nacelle_I',)) to value:
[ 66146212.61456556 1706237.11484588 1611052.90064292 0.
0. 0. ]
could not broadcast input array from shape (6) into shape (3)

Running the same script on the host machine (Windows) returns no errors as input array seems to be shape(3) instead of shape(6).

Issue in installation tarfile.ReadError

Below is the log generated. (Updated)
All is fine until python tried to install Turbine_CostsSE. Any suggestions on why this is happening.

My environment variable is set to

C:\Python27

Thanks.

(openmdao-0.7.0) C:\Python27\openmdao-0.7.0\WISDEM>python setup_all.py
Searching for pandas
Best match: pandas 0.14.1
pandas 0.14.1 is already the active version in easy-install.pth

Using c:\python27\lib\site-packages
Processing dependencies for pandas
Finished processing dependencies for pandas
Searching for algopy
Best match: algopy 0.5.5
Processing algopy-0.5.5-py2.7.egg
algopy 0.5.5 is already the active version in easy-install.pth

Using c:\python27\openmdao-0.7.0\lib\site-packages\algopy-0.5.5-py2.7.egg
Processing dependencies for algopy
Finished processing dependencies for algopy
Searching for zope.interface
Best match: zope.interface 3.6.1
Processing zope.interface-3.6.1-py2.7-win32.egg
zope.interface 3.6.1 is already the active version in easy-install.pth

Using c:\python27\openmdao-0.7.0\lib\site-packages\zope.interface-3.6.1-py2.7-wi
n32.egg
Processing dependencies for zope.interface
Finished processing dependencies for zope.interface
Searching for sphinx
Best match: sphinx 1.6.3
Processing sphinx-1.6.3-py2.7.egg
sphinx 1.6.3 is already the active version in easy-install.pth
Installing sphinx-apidoc-script.py script to C:\Python27\openmdao-0.7.0\Scripts
Installing sphinx-apidoc.exe script to C:\Python27\openmdao-0.7.0\Scripts
Installing sphinx-apidoc.exe.manifest script to C:\Python27\openmdao-0.7.0\Scrip
ts
Installing sphinx-build-script.py script to C:\Python27\openmdao-0.7.0\Scripts
Installing sphinx-build.exe script to C:\Python27\openmdao-0.7.0\Scripts
Installing sphinx-build.exe.manifest script to C:\Python27\openmdao-0.7.0\Script
s
Installing sphinx-quickstart-script.py script to C:\Python27\openmdao-0.7.0\Scri
pts
Installing sphinx-quickstart.exe script to C:\Python27\openmdao-0.7.0\Scripts
Installing sphinx-quickstart.exe.manifest script to C:\Python27\openmdao-0.7.0\S
cripts
Installing sphinx-autogen-script.py script to C:\Python27\openmdao-0.7.0\Scripts

Installing sphinx-autogen.exe script to C:\Python27\openmdao-0.7.0\Scripts
Installing sphinx-autogen.exe.manifest script to C:\Python27\openmdao-0.7.0\Scri
pts

Using c:\python27\openmdao-0.7.0\lib\site-packages\sphinx-1.6.3-py2.7.egg
Processing dependencies for sphinx
Finished processing dependencies for sphinx
Searching for xlrd
Best match: xlrd 1.0.0
Processing xlrd-1.0.0-py2.7.egg
xlrd 1.0.0 is already the active version in easy-install.pth
Installing runxlrd.py script to C:\Python27\openmdao-0.7.0\Scripts

Using c:\python27\openmdao-0.7.0\lib\site-packages\xlrd-1.0.0-py2.7.egg
Processing dependencies for xlrd
Finished processing dependencies for xlrd
Searching for pyopt
Best match: pyopt 0.84
Processing pyopt-0.84-py2.7.egg
pyopt 0.84 is already the active version in easy-install.pth

Using c:\python27\openmdao-0.7.0\lib\site-packages\pyopt-0.84-py2.7.egg
Processing dependencies for pyopt
Finished processing dependencies for pyopt
Searching for py2exe
Best match: py2exe 0.9.2.2
Processing py2exe-0.9.2.2-py2.7-win32.egg
py2exe 0.9.2.2 is already the active version in easy-install.pth
Installing build_exe-script.py script to C:\Python27\openmdao-0.7.0\Scripts
Installing build_exe-script.pyc script to C:\Python27\openmdao-0.7.0\Scripts
Installing build_exe.exe script to C:\Python27\openmdao-0.7.0\Scripts
Installing build_exe.exe.manifest script to C:\Python27\openmdao-0.7.0\Scripts
Installing build_exe-script.py script to C:\Python27\openmdao-0.7.0\Scripts
Installing build_exe.exe script to C:\Python27\openmdao-0.7.0\Scripts
Installing build_exe.exe.manifest script to C:\Python27\openmdao-0.7.0\Scripts

Using c:\python27\openmdao-0.7.0\lib\site-packages\py2exe-0.9.2.2-py2.7-win32.eg
g
Processing dependencies for py2exe
Finished processing dependencies for py2exe
Searching for pyzmq
Reading https://pypi.python.org/simple/pyzmq/
Downloading https://pypi.python.org/packages/af/37/8e0bf3800823bc247c36715a52e92
4e8f8fd5d1432f04b44b8cd7a5d7e55/pyzmq-16.0.2.tar.gz#md5=9a8768b00a566a400d70318f
8c359cfe
Best match: pyzmq 16.0.2
Processing pyzmq-16.0.2.tar.gz
Writing c:\users\anur\appdata\local\temp\easy_install-6x9i5o\pyzmq-16.0.2\setup.
cfg
Running pyzmq-16.0.2\setup.py -q bdist_egg --dist-dir c:\users\anur\appdata\loca
l\temp\easy_install-6x9i5o\pyzmq-16.0.2\egg-dist-tmp-fszbbf
warning: no files found matching 'tox.ini'
no previously-included directories found matching 'docs\build'
no previously-included directories found matching 'docs\gh-pages'
warning: no previously-included files found matching 'bundled\zeromq\src\Makefil
e*'
warning: no previously-included files found matching 'bundled\zeromq\src\platfor
m.hpp'
warning: no previously-included files found matching 'zmq\libzmq*'
warning: no previously-included files matching '__pycache__\*' found anywhere in
 distribution
warning: no previously-included files matching '.deps\*' found anywhere in distr
ibution
warning: no previously-included files matching '*.so' found anywhere in distribu
tion
warning: no previously-included files matching '*.pyd' found anywhere in distrib
ution
warning: no previously-included files matching '.git*' found anywhere in distrib
ution
warning: no previously-included files matching '.DS_Store' found anywhere in dis
tribution
warning: no previously-included files matching '.mailmap' found anywhere in dist
ribution
warning: no previously-included files matching 'Makefile.am' found anywhere in d
istribution
warning: no previously-included files matching 'Makefile.in' found anywhere in d
istribution
************************************************
Warning: Couldn't find an acceptable libzmq on the system.

If you expected pyzmq to link against an installed libzmq, please check to make
sure:

    * You have a C compiler installed
    * A development version of Python is installed (including headers)
    * A development version of ZMQ >= 3.2 is installed (including headers)
    * If ZMQ is not in a default location, supply the argument --zmq=<path>
    * If you did recently install ZMQ to a default location,
      try rebuilding the ld cache with `sudo ldconfig`
      or specify zmq's location with `--zmq=/usr/local`

You can skip all this detection/waiting nonsense if you know
you want pyzmq to bundle libzmq as an extension by passing:

    `--zmq=bundled`

I will now try to build libzmq as a Python extension
unless you interrupt me (^C) in the next 10 seconds...

 1...
************************************************
Using bundled libzmq
already have bundled\zeromq
staging platform.hpp from: bundled\zeromq\builds\msvc
************************************************
In file included from zmq\utils/zmq_compat.h:16:0,
                 from zmq\devices\monitoredqueue.c:403:
bundled\zeromq\include/zmq.h:439:52: error: unknown type name 'uint8_t'
 ZMQ_EXPORT char *zmq_z85_encode (char *dest, const uint8_t *data, size_t size);

                                                    ^
bundled\zeromq\include/zmq.h:442:12: error: unknown type name 'uint8_t'
 ZMQ_EXPORT uint8_t *zmq_z85_decode (uint8_t *dest, const char *string);
            ^
bundled\zeromq\include/zmq.h:442:37: error: unknown type name 'uint8_t'
 ZMQ_EXPORT uint8_t *zmq_z85_decode (uint8_t *dest, const char *string);
                                     ^
In file included from zmq\devices\monitoredqueue.c:403:0:
zmq\devices\monitoredqueue.c: In function '__pyx_f_3zmq_7devices_14monitoredqueu
e__relay':
zmq\utils/zmq_compat.h:12:23: error: unknown type name 'int64_t'
 #define pyzmq_int64_t int64_t
                       ^
zmq\devices\monitoredqueue.c:1761:3: note: in expansion of macro 'pyzmq_int64_t'

   pyzmq_int64_t __pyx_v_flag_2;
   ^
zmq\utils/zmq_compat.h:12:23: error: 'int64_t' undeclared (first use in this fun
ction)
 #define pyzmq_int64_t int64_t
                       ^
zmq\devices\monitoredqueue.c:1786:30: note: in expansion of macro 'pyzmq_int64_t
'
     __pyx_v_flagsz = (sizeof(pyzmq_int64_t));
                              ^
zmq\utils/zmq_compat.h:12:23: note: each undeclared identifier is reported only
once for each function it appears in
 #define pyzmq_int64_t int64_t
                       ^
zmq\devices\monitoredqueue.c:1786:30: note: in expansion of macro 'pyzmq_int64_t
'
     __pyx_v_flagsz = (sizeof(pyzmq_int64_t));
                              ^
zmq\devices\monitoredqueue.c: In function '__Pyx_RaiseArgtupleInvalid':
zmq\devices\monitoredqueue.c:5271:18: warning: unknown conversion type character
 'z' in format [-Wformat=]
                  (num_expected == 1) ? "" : "s", num_found);
                  ^
zmq\devices\monitoredqueue.c:5271:18: warning: format '%s' expects argument of t
ype 'char *', but argument 5 has type 'Py_ssize_t' [-Wformat=]
zmq\devices\monitoredqueue.c:5271:18: warning: unknown conversion type character
 'z' in format [-Wformat=]
zmq\devices\monitoredqueue.c:5271:18: warning: too many arguments for format [-W
format-extra-args]
zmq\devices\monitoredqueue.c: In function '__Pyx_CyFunction_CallMethod':
zmq\devices\monitoredqueue.c:6537:17: warning: unknown conversion type character
 'z' in format [-Wformat=]
                 f->m_ml->ml_name, size);
                 ^
zmq\devices\monitoredqueue.c:6537:17: warning: too many arguments for format [-W
format-extra-args]
zmq\devices\monitoredqueue.c:6553:17: warning: unknown conversion type character
 'z' in format [-Wformat=]
                 f->m_ml->ml_name, size);
                 ^
zmq\devices\monitoredqueue.c:6553:17: warning: too many arguments for format [-W
format-extra-args]
zmq\devices\monitoredqueue.c: In function '__Pyx_ImportType':
zmq\devices\monitoredqueue.c:7390:13: warning: unknown conversion type character
 'z' in format [-Wformat=]
             module_name, class_name, basicsize, size);
             ^
zmq\devices\monitoredqueue.c:7390:13: warning: unknown conversion type character
 'z' in format [-Wformat=]
zmq\devices\monitoredqueue.c:7390:13: warning: too many arguments for format [-W
format-extra-args]
zmq\devices\monitoredqueue.c:7396:13: warning: unknown conversion type character
 'z' in format [-Wformat=]
             module_name, class_name, basicsize, size);
             ^
zmq\devices\monitoredqueue.c:7396:13: warning: unknown conversion type character
 'z' in format [-Wformat=]
zmq\devices\monitoredqueue.c:7396:13: warning: too many arguments for format [-W
format-extra-args]
error: Setup script exited with error: command 'c:\\Rtools\\mingw_32\\bin\\gcc.e
xe' failed with exit status 1
Searching for sphinxcontrib-bibtex
Best match: sphinxcontrib-bibtex 0.3.5
Processing sphinxcontrib_bibtex-0.3.5-py2.7.egg
sphinxcontrib-bibtex 0.3.5 is already the active version in easy-install.pth

Using c:\python27\openmdao-0.7.0\lib\site-packages\sphinxcontrib_bibtex-0.3.5-py
2.7.egg
Processing dependencies for sphinxcontrib-bibtex
Finished processing dependencies for sphinxcontrib-bibtex
Searching for sphinxcontrib-napoleon
Best match: sphinxcontrib-napoleon 0.6.1
Processing sphinxcontrib_napoleon-0.6.1-py2.7.egg
sphinxcontrib-napoleon 0.6.1 is already the active version in easy-install.pth

Using c:\python27\openmdao-0.7.0\lib\site-packages\sphinxcontrib_napoleon-0.6.1-
py2.7.egg
Processing dependencies for sphinxcontrib-napoleon
Finished processing dependencies for sphinxcontrib-napoleon
Searching for numpydoc
Best match: numpydoc 0.7.0
Processing numpydoc-0.7.0-py2.7.egg
numpydoc 0.7.0 is already the active version in easy-install.pth

Using c:\python27\openmdao-0.7.0\lib\site-packages\numpydoc-0.7.0-py2.7.egg
Processing dependencies for numpydoc
Finished processing dependencies for numpydoc
Searching for ipython
Reading https://pypi.python.org/simple/ipython/
Downloading https://pypi.python.org/packages/79/63/b671fc2bf0051739e87a7478a207b
beb45cfae3c328d38ccdd063d9e0074/ipython-6.1.0.tar.gz#md5=1e15e1ce3f3f722da6935d7
ac0e51346
Best match: ipython 6.1.0
Processing ipython-6.1.0.tar.gz
Writing c:\users\anur\appdata\local\temp\easy_install-k7ruj5\ipython-6.1.0\setup
.cfg
Running ipython-6.1.0\setup.py -q bdist_egg --dist-dir c:\users\anur\appdata\loc
al\temp\easy_install-k7ruj5\ipython-6.1.0\egg-dist-tmp-tkov77

IPython 6.0+ does not support Python 2.6, 2.7, 3.0, 3.1, or 3.2.
When using Python 2.7, please install IPython 5.x LTS Long Term Support version.

Beginning with IPython 6.0, Python 3.3 and above is required.

See IPython `README.rst` file for more information:

    https://github.com/ipython/ipython/blob/master/README.rst

Python sys.version_info(major=2, minor=7, micro=11, releaselevel='final', serial
=0) detected.


error: Setup script exited with 1
Searching for python-dateutil
Best match: python-dateutil 2.6.0
Processing python_dateutil-2.6.0-py2.7.egg
python-dateutil 2.6.0 is already the active version in easy-install.pth

Using c:\python27\openmdao-0.7.0\lib\site-packages\python_dateutil-2.6.0-py2.7.e
gg
Processing dependencies for python-dateutil
Finished processing dependencies for python-dateutil
install url: package= fusedwind url=  http://github.com/FUSED-Wind/fusedwind/tar
ball/develop
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\fusedwind.egg-info
writing requirements to src\fusedwind.egg-info\requires.txt
writing src\fusedwind.egg-info\PKG-INFO
writing top-level names to src\fusedwind.egg-info\top_level.txt
writing dependency_links to src\fusedwind.egg-info\dependency_links.txt
writing manifest file 'src\fusedwind.egg-info\SOURCES.txt'
reading manifest file 'src\fusedwind.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no directories found matching 'src\fusedwind\sphinx_build\html'
writing manifest file 'src\fusedwind.egg-info\SOURCES.txt'
running build_ext
Creating c:\python27\openmdao-0.7.0\lib\site-packages\fusedwind.egg-link (link t
o src)
Adding fusedwind 0.1.0 to easy-install.pth file

Installed c:\python27\openmdao-0.7.0\wisdem\plugins\fusedwind\src
subprocess returned  0
install url: package= Turbine_CostsSE url=  http://github.com/WISDEM/Turbine_Cos
tsSE/tarball/0.1
installing distribution from current directory as a 'develop' egg
running develop
running egg_info
creating src\Turbine_CostsSE.egg-info
writing requirements to src\Turbine_CostsSE.egg-info\requires.txt
writing src\Turbine_CostsSE.egg-info\PKG-INFO
writing top-level names to src\Turbine_CostsSE.egg-info\top_level.txt
writing dependency_links to src\Turbine_CostsSE.egg-info\dependency_links.txt
writing manifest file 'src\Turbine_CostsSE.egg-info\SOURCES.txt'
reading manifest file 'src\Turbine_CostsSE.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files matching 'openmdao_log.txt' found anywhere
 in distribution
writing manifest file 'src\Turbine_CostsSE.egg-info\SOURCES.txt'
running build_ext
Creating c:\python27\openmdao-0.7.0\lib\site-packages\Turbine-CostsSE.egg-link (
link to src)
Adding Turbine-CostsSE 0.1.0 to easy-install.pth file

Installed c:\python27\openmdao-0.7.0\wisdem\plugins\turbine_costsse\src
subprocess returned  0
install url: package= CommonSE url=  http://github.com/WISDEM/CommonSE/tarball/0
.1
Traceback (most recent call last):
  File "setup_all.py", line 105, in <module>
    install_url(f, url,force=options.force)
  File "setup_all.py", line 28, in install_url
    thetarfile = tarfile.open(fileobj=response, mode="r|gz")
  File "C:\Python27\Lib\tarfile.py", line 1703, in open
    stream = _Stream(name, filemode, comptype, fileobj, bufsize)
  File "C:\Python27\Lib\tarfile.py", line 430, in __init__
    self._init_read_gz()
  File "C:\Python27\Lib\tarfile.py", line 524, in _init_read_gz
    raise ReadError("not a gzip file")
tarfile.ReadError: not a gzip file

(openmdao-0.7.0) C:\Python27\openmdao-0.7.0\WISDEM>
```

website update with graphics

Need a major update to the website nwtc.nrel.gov to provide key graphics that illustrate how wisdem is set-up and uses fusedwind

Installation Error on OS X: NameError: name 'sys_platform' is not defined

I'm attempting to install WISDEM on the OS X Yosemite (10.10.3) operating system. When I run install_all.py in the OpenMDAO environment, I get an attribute error. I'm running Fortran 4.9.2, GCC 4.9.2, Numpy 1.9.2, Scipy 0.15.1, swig 3.0.5, and matplotlib 1.4.2. I used brew or pip to install these packages. I tried the install steps but the following packages consistently fail: ['fusedwind', 'akima', 'Turbine_CostsSE', 'CommonSE', 'Plant_CostsSE', 'Plant_FinanceSE', 'Plant_EnergySE', 'AeroelasticSE', 'AirfoilPreppy', 'CCBlade', 'DriveSE', 'DriveWPACT', 'NREL_CSM', 'RotorSE', 'TowerSE', 'pyFrame3DD', 'pBEAM', 'JacketSE']

Does anyone have any ideas as to what I can do to successfully install WISDEM? Why am I getting this error?

Here is the script from my installation:

(openmdao-0.10.3.2)Julians-MacBook-Pro:openmdao-0.10.3.2 julian$ # Verifying openmdao is activated and running correctly
(openmdao-0.10.3.2)Julians-MacBook-Pro:openmdao-0.10.3.2 julian$ openmdao test
..........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
----------------------------------------------------------------------
Ran 826 tests in 48.462s

OK
(openmdao-0.10.3.2)Julians-MacBook-Pro:openmdao-0.10.3.2 julian$ 
(openmdao-0.10.3.2)Julians-MacBook-Pro:openmdao-0.10.3.2 julian$ 
(openmdao-0.10.3.2)Julians-MacBook-Pro:openmdao-0.10.3.2 julian$ git clone https://github.com/WISDEM/WISDEM/
Cloning into 'WISDEM'...
remote: Counting objects: 1625, done.
remote: Total 1625 (delta 0), reused 0 (delta 0), pack-reused 1625
Receiving objects: 100% (1625/1625), 20.71 MiB | 218.00 KiB/s, done.
Resolving deltas: 100% (827/827), done.
Checking connectivity... done
(openmdao-0.10.3.2)Julians-MacBook-Pro:openmdao-0.10.3.2 julian$ cd WISDEM/
(openmdao-0.10.3.2)Julians-MacBook-Pro:WISDEM julian$ 
(openmdao-0.10.3.2)Julians-MacBook-Pro:WISDEM julian$ 
(openmdao-0.10.3.2)Julians-MacBook-Pro:WISDEM julian$ 
(openmdao-0.10.3.2)Julians-MacBook-Pro:WISDEM julian$ # STARTING SETUP_ALL
(openmdao-0.10.3.2)Julians-MacBook-Pro:WISDEM julian$ python s
setup.py      setup_all.py  src/          
(openmdao-0.10.3.2)Julians-MacBook-Pro:WISDEM julian$ python setup_all.py 
Searching for pandas
Best match: pandas 0.16.1
Adding pandas 0.16.1 to easy-install.pth file

Using /usr/local/lib/python2.7/site-packages
Processing dependencies for pandas
Finished processing dependencies for pandas
Searching for algopy
Reading https://pypi.python.org/simple/algopy/
Best match: algopy 0.5.2
Downloading https://pypi.python.org/packages/source/a/algopy/algopy-0.5.2.zip#md5=d5aa6c347129844804e8254d550dcfdb
Processing algopy-0.5.2.zip
Writing /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-n58c8k/algopy-0.5.2/setup.cfg
Running algopy-0.5.2/setup.py -q bdist_egg --dist-dir /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-n58c8k/algopy-0.5.2/egg-dist-tmp-2YUkuz
.dev
zip_safe flag not set; analyzing archive contents...
algopy.__init__: module references __file__
algopy.tracer.tests.environment: module references __file__
Adding algopy 0.5.2 to easy-install.pth file

Installed /Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/algopy-0.5.2-py2.7.egg
Processing dependencies for algopy
Finished processing dependencies for algopy
Searching for zope.interface
Best match: zope.interface 3.6.1
Processing zope.interface-3.6.1-py2.7-macosx-10.10-x86_64.egg
zope.interface 3.6.1 is already the active version in easy-install.pth

Using /Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/zope.interface-3.6.1-py2.7-macosx-10.10-x86_64.egg
Processing dependencies for zope.interface
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/easy_install", line 9, in <module>
    load_entry_point('setuptools==0.9.5', 'console_scripts', 'easy_install')()
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 1992, in main

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 1979, in with_ei_usage

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 1996, in <lambda>

  File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/core.py", line 151, in setup
    dist.run_commands()
  File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py", line 953, in run_commands
    self.run_command(cmd)
  File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py", line 972, in run_command
    cmd_obj.run()
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 380, in run

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 623, in easy_install

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 658, in install_item

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 706, in process_distribution

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
Searching for sphinx
Best match: Sphinx 1.3.1
Removing Sphinx 1.2.2 from easy-install.pth file
Sphinx 1.3.1 is already the active version in easy-install.pth
Installing sphinx-apidoc script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin
Installing sphinx-build script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin
Installing sphinx-quickstart script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin
Installing sphinx-autogen script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin

Using /usr/local/lib/python2.7/site-packages
Processing dependencies for sphinx
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/easy_install", line 9, in <module>
    load_entry_point('setuptools==0.9.5', 'console_scripts', 'easy_install')()
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 1992, in main

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 1979, in with_ei_usage

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 1996, in <lambda>

  File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/core.py", line 151, in setup
    dist.run_commands()
  File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py", line 953, in run_commands
    self.run_command(cmd)
  File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py", line 972, in run_command
    cmd_obj.run()
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 380, in run

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 620, in easy_install

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 706, in process_distribution

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
Searching for xlrd
Reading https://pypi.python.org/simple/xlrd/
Reading http://www.lexicon.net/sjmachin/xlrd.htm
Reading http://www.python-excel.org/
Best match: xlrd 0.9.3
Downloading https://pypi.python.org/packages/source/x/xlrd/xlrd-0.9.3.tar.gz#md5=6f3325132f246594988171bc72e1a385
Processing xlrd-0.9.3.tar.gz
Writing /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-vHYIAs/xlrd-0.9.3/setup.cfg
Running xlrd-0.9.3/setup.py -q bdist_egg --dist-dir /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-vHYIAs/xlrd-0.9.3/egg-dist-tmp-pUF_iO
zip_safe flag not set; analyzing archive contents...
xlrd.xlsx: module references __file__
Adding xlrd 0.9.3 to easy-install.pth file
Installing runxlrd.py script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin

Installed /Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/xlrd-0.9.3-py2.7.egg
Processing dependencies for xlrd
Finished processing dependencies for xlrd
Searching for pyopt
Reading https://pypi.python.org/simple/pyopt/
Best match: pyopt 0.84
Downloading https://pypi.python.org/packages/source/p/pyopt/pyopt-0.84.zip#md5=b7b4450d91cfa8e385a9e9401c7bad8c
Processing pyopt-0.84.zip
Writing /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-Dzhc9X/pyopt-0.84/setup.cfg
Running pyopt-0.84/setup.py -q bdist_egg --dist-dir /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-Dzhc9X/pyopt-0.84/egg-dist-tmp-4XySrZ
distutils.core
zip_safe flag not set; analyzing archive contents...
Adding pyopt 0.84 to easy-install.pth file

Installed /Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/pyopt-0.84-py2.7.egg
Processing dependencies for pyopt
Finished processing dependencies for pyopt
Searching for pyzmq
Best match: pyzmq 14.6.0
Removing pyzmq 13.1.0 from easy-install.pth file
pyzmq 14.6.0 is already the active version in easy-install.pth

Using /usr/local/lib/python2.7/site-packages
Processing dependencies for pyzmq
Finished processing dependencies for pyzmq
Searching for sphinxcontrib-bibtex
Reading https://pypi.python.org/simple/sphinxcontrib-bibtex/
Best match: sphinxcontrib-bibtex 0.3.2
Downloading https://pypi.python.org/packages/source/s/sphinxcontrib-bibtex/sphinxcontrib-bibtex-0.3.2.tar.gz#md5=6de8d82ea407abf1aebeb202255125ac
Processing sphinxcontrib-bibtex-0.3.2.tar.gz
Writing /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-hFGKe5/sphinxcontrib-bibtex-0.3.2/setup.cfg
Running sphinxcontrib-bibtex-0.3.2/setup.py -q bdist_egg --dist-dir /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-hFGKe5/sphinxcontrib-bibtex-0.3.2/egg-dist-tmp-F4H1Ju
warning: no previously-included files matching '*.pyc' found anywhere in distribution
warning: no previously-included files found matching '.gitignore'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching 'release_checklist.txt'
no previously-included directories found matching 'doc/_build'
Adding sphinxcontrib-bibtex 0.3.2 to easy-install.pth file

Installed /Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/sphinxcontrib_bibtex-0.3.2-py2.7.egg
Processing dependencies for sphinxcontrib-bibtex
Searching for oset>=0.1.3
Reading https://pypi.python.org/simple/oset/
Best match: oset 0.1.3
Downloading https://pypi.python.org/packages/source/o/oset/oset-0.1.3.tar.gz#md5=f23e5a545d2c77df3916398d2d39a3ab
Processing oset-0.1.3.tar.gz
Writing /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-Ccb3IJ/oset-0.1.3/setup.cfg
Running oset-0.1.3/setup.py -q bdist_egg --dist-dir /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-Ccb3IJ/oset-0.1.3/egg-dist-tmp-XFzC5y
Adding oset 0.1.3 to easy-install.pth file

Installed /Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/oset-0.1.3-py2.7.egg
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/easy_install", line 9, in <module>
    load_entry_point('setuptools==0.9.5', 'console_scripts', 'easy_install')()
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 1992, in main

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 1979, in with_ei_usage

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 1996, in <lambda>

  File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/core.py", line 151, in setup
    dist.run_commands()
  File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py", line 953, in run_commands
    self.run_command(cmd)
  File "/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py", line 972, in run_command
    cmd_obj.run()
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 380, in run

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 623, in easy_install

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 655, in install_item

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/setuptools/command/easy_install.py", line 706, in process_distribution

  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
Searching for sphinxcontrib-napoleon
Reading https://pypi.python.org/simple/sphinxcontrib-napoleon/
Best match: sphinxcontrib-napoleon 0.3.4
Downloading https://pypi.python.org/packages/source/s/sphinxcontrib-napoleon/sphinxcontrib-napoleon-0.3.4.tar.gz#md5=82e0174c32bf756c011d42349bd63b53
Processing sphinxcontrib-napoleon-0.3.4.tar.gz
Writing /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-l96kiy/sphinxcontrib-napoleon-0.3.4/setup.cfg
Running sphinxcontrib-napoleon-0.3.4/setup.py -q bdist_egg --dist-dir /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-l96kiy/sphinxcontrib-napoleon-0.3.4/egg-dist-tmp-mCxgKc
Adding sphinxcontrib-napoleon 0.3.4 to easy-install.pth file

Installed /Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/sphinxcontrib_napoleon-0.3.4-py2.7.egg
Processing dependencies for sphinxcontrib-napoleon
Searching for pockets>=0.2.1
Reading https://pypi.python.org/simple/pockets/
Best match: pockets 0.2.4
Downloading https://pypi.python.org/packages/source/p/pockets/pockets-0.2.4.tar.gz#md5=92eff6116937edfed56a8ed44bb3b99b
Processing pockets-0.2.4.tar.gz
Writing /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-DF9bCk/pockets-0.2.4/setup.cfg
Running pockets-0.2.4/setup.py -q bdist_egg --dist-dir /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-DF9bCk/pockets-0.2.4/egg-dist-tmp-c1rYuf
Adding pockets 0.2.4 to easy-install.pth file

Installed /Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/pockets-0.2.4-py2.7.egg
Finished processing dependencies for sphinxcontrib-napoleon
Searching for numpydoc
Reading https://pypi.python.org/simple/numpydoc/
Best match: numpydoc 0.5
Downloading https://pypi.python.org/packages/source/n/numpydoc/numpydoc-0.5.tar.gz#md5=6feac1f625ad0df5a11c7b60f920ac1b
Processing numpydoc-0.5.tar.gz
Writing /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-LEOIe3/numpydoc-0.5/setup.cfg
Running numpydoc-0.5/setup.py -q bdist_egg --dist-dir /var/folders/0h/t_511_2d4cq81289ym9pn6g40000gn/T/easy_install-LEOIe3/numpydoc-0.5/egg-dist-tmp-0YmQMF
zip_safe flag not set; analyzing archive contents...
numpydoc.comment_eater: module MAY be using inspect.getsource
Adding numpydoc 0.5 to easy-install.pth file

Installed /Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/numpydoc-0.5-py2.7.egg
Processing dependencies for numpydoc
Finished processing dependencies for numpydoc
Searching for ipython
Best match: ipython 3.1.0
ipython 3.1.0 is already the active version in easy-install.pth
Installing ipengine2 script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin
Installing iptest script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin
Installing ipython2 script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin
Installing ipcluster2 script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin
Installing ipcluster script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin
Installing ipython script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin
Installing ipcontroller2 script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin
Installing ipcontroller script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin
Installing iptest2 script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin
Installing ipengine script to /Users/julian/Desktop/open4/openmdao-0.10.3.2/bin

Using /usr/local/lib/python2.7/site-packages
Processing dependencies for ipython
Finished processing dependencies for ipython
install url: package= fusedwind url=  http://github.com/FUSED-Wind/fusedwind/tarball/develop
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin fusedwind FAILED to install correctly
install url: package= akima url=  http://github.com/andrewning/akima/tarball/master
running config
running build
running config_cc
unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
build_src
building py_modules sources
building extension "_akima" sources
f2py options: []
f2py:> build/src.macosx-10.10-x86_64-2.7/_akimamodule.c
creating build
creating build/src.macosx-10.10-x86_64-2.7
Reading fortran codes...
    Reading file 'src/akima.f90' (format:free)
Post-processing...
    Block: _akima
            Block: abs_smooth
            Block: setup
In: :_akima:src/akima.f90:setup
get_parameters: got "invalid syntax (<string>, line 1)" on '1d-30'
            Block: interp
            Block: setup_dv
In: :_akima:src/akima.f90:setup_dv
get_parameters: got "invalid syntax (<string>, line 1)" on '1d-30'
            Block: abs_smooth_dv
Post-processing (stage 2)...
Building modules...
    Building module "_akima"...
        Constructing wrapper function "abs_smooth"...
          y = abs_smooth(x,delta_x)
        Constructing wrapper function "setup"...
          p0,p1,p2,p3 = setup(xpt,ypt,[n,delta_x])
        Constructing wrapper function "interp"...
          y,dydx,dydxpt,dydypt = interp(x,xpt,p0,p1,p2,p3,dp0dxpt,dp1dxpt,dp2dxpt,dp3dxpt,dp0dypt,dp1dypt,dp2dypt,dp3dypt,[npt,n])
        Constructing wrapper function "setup_dv"...
          p0,p0d,p1,p1d,p2,p2d,p3,p3d = setup_dv(xpt,xptd,ypt,yptd,[n,delta_x,nbdirs])
        Constructing wrapper function "abs_smooth_dv"...
          y,yd = abs_smooth_dv(x,xd,delta_x,[nbdirs])
    Wrote C/API module "_akima" to file "build/src.macosx-10.10-x86_64-2.7/_akimamodule.c"
  adding 'build/src.macosx-10.10-x86_64-2.7/fortranobject.c' to sources.
  adding 'build/src.macosx-10.10-x86_64-2.7' to include_dirs.
copying /usr/local/lib/python2.7/site-packages/numpy/f2py/src/fortranobject.c -> build/src.macosx-10.10-x86_64-2.7
copying /usr/local/lib/python2.7/site-packages/numpy/f2py/src/fortranobject.h -> build/src.macosx-10.10-x86_64-2.7
build_src: building npy-pkg config files
running build_py
creating build/lib.macosx-10.10-x86_64-2.7
copying src/akima.py -> build/lib.macosx-10.10-x86_64-2.7
copying src/example.py -> build/lib.macosx-10.10-x86_64-2.7
running build_ext
No module named cygwinccompiler in numpy.distutils; trying from distutils
@(#)PROGRAM:ld  PROJECT:ld64-236.3
configured to support archs: i386 x86_64 x86_64h armv6 armv7 armv7s armv7m arm64
LTO support using: LLVM version 3.5.0
customize Mingw32CCompiler
customize Mingw32CCompiler using build_ext
customize Gnu95FCompiler
Found executable /usr/local/bin/gfortran
customize Gnu95FCompiler
customize Gnu95FCompiler using build_ext
building '_akima' extension
compiling C sources
C compiler: gcc -mdll -O -Wall

creating build/temp.macosx-10.10-x86_64-2.7
creating build/temp.macosx-10.10-x86_64-2.7/build
creating build/temp.macosx-10.10-x86_64-2.7/build/src.macosx-10.10-x86_64-2.7
compile options: '-Ibuild/src.macosx-10.10-x86_64-2.7 -I/usr/local/lib/python2.7/site-packages/numpy/core/include -I/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c'
extra options: '-O2'
gcc -mdll -O -Wall -Ibuild/src.macosx-10.10-x86_64-2.7 -I/usr/local/lib/python2.7/site-packages/numpy/core/include -I/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c build/src.macosx-10.10-x86_64-2.7/fortranobject.c -o build/temp.macosx-10.10-x86_64-2.7/build/src.macosx-10.10-x86_64-2.7/fortranobject.o -O2
gcc: error: unrecognized command line option ‘-mdll’
gcc: error: unrecognized command line option ‘-mdll’
error: Command "gcc -mdll -O -Wall -Ibuild/src.macosx-10.10-x86_64-2.7 -I/usr/local/lib/python2.7/site-packages/numpy/core/include -I/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c build/src.macosx-10.10-x86_64-2.7/fortranobject.c -o build/temp.macosx-10.10-x86_64-2.7/build/src.macosx-10.10-x86_64-2.7/fortranobject.o -O2" failed with exit status 1
subprocess returned  1
plugin akima FAILED to install correctly
install url: package= Turbine_CostsSE url=  http://github.com/WISDEM/Turbine_CostsSE/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin Turbine_CostsSE FAILED to install correctly
install url: package= CommonSE url=  http://github.com/WISDEM/CommonSE/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin CommonSE FAILED to install correctly
install url: package= Plant_CostsSE url=  http://github.com/WISDEM/Plant_CostsSE/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin Plant_CostsSE FAILED to install correctly
install url: package= Plant_FinanceSE url=  http://github.com/WISDEM/Plant_FinanceSE/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin Plant_FinanceSE FAILED to install correctly
install url: package= Plant_EnergySE url=  http://github.com/WISDEM/Plant_EnergySE/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin Plant_EnergySE FAILED to install correctly
install url: package= AeroelasticSE url=  http://github.com/WISDEM/AeroelasticSE/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin AeroelasticSE FAILED to install correctly
install url: package= AirfoilPreppy url=  http://github.com/WISDEM/AirfoilPreppy/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin AirfoilPreppy FAILED to install correctly
install url: package= CCBlade url=  http://github.com/WISDEM/CCBlade/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin CCBlade FAILED to install correctly
install url: package= DriveSE url=  http://github.com/WISDEM/DriveSE/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin DriveSE FAILED to install correctly
install url: package= DriveWPACT url=  http://github.com/WISDEM/DriveWPACT/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin DriveWPACT FAILED to install correctly
install url: package= NREL_CSM url=  http://github.com/WISDEM/NREL_CSM/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin NREL_CSM FAILED to install correctly
install url: package= RotorSE url=  http://github.com/WISDEM/RotorSE/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin RotorSE FAILED to install correctly
install url: package= TowerSE url=  http://github.com/WISDEM/TowerSE/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin TowerSE FAILED to install correctly
install url: package= pyFrame3DD url=  http://github.com/WISDEM/pyFrame3DD/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin pyFrame3DD FAILED to install correctly
install url: package= pBEAM url=  http://github.com/WISDEM/pBEAM/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin pBEAM FAILED to install correctly
install url: package= JacketSE url=  http://github.com/WISDEM/JacketSE/tarball/master
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined
subprocess returned  1
plugin JacketSE FAILED to install correctly
Traceback (most recent call last):
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/bin/plugin", line 5, in <module>
    from pkg_resources import load_entry_point
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 3007, in <module>
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 728, in require
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 631, in resolve
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2489, in requires
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2700, in _dep_map
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2733, in _compute_dependencies
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/pkg_resources.py", line 2730, in reqs_for_extra
  File "/Users/julian/Desktop/open4/openmdao-0.10.3.2/lib/python2.7/site-packages/setuptools-0.9.5-py2.7.egg/_markerlib/markers.py", line 109, in marker_fn
  File "<environment marker>", line 1, in <module>
NameError: name 'sys_platform' is not defined


Attempted to install WISDEM and its sub-plugins:  ['Turbine_CostsSE', 'CommonSE', 'Plant_CostsSE', 'Plant_FinanceSE', 'Plant_EnergySE', 'AeroelasticSE', 'AirfoilPreppy', 'CCBlade', 'DriveSE', 'DriveWPACT', 'NREL_CSM', 'RotorSE', 'TowerSE', 'pyFrame3DD', 'pBEAM', 'JacketSE']
Failed to install:  ['fusedwind', 'akima', 'Turbine_CostsSE', 'CommonSE', 'Plant_CostsSE', 'Plant_FinanceSE', 'Plant_EnergySE', 'AeroelasticSE', 'AirfoilPreppy', 'CCBlade', 'DriveSE', 'DriveWPACT', 'NREL_CSM', 'RotorSE', 'TowerSE', 'pyFrame3DD', 'pBEAM', 'JacketSE']
(openmdao-0.10.3.2)Julians-MacBook-Pro:WISDEM julian$ 

installing problem for CCBlade

dear administrator,
I get a trouble when installing Wisdem, the traceback is attached following, looking forward you reply...
`Installed d:\programdata\wisdem\plugins\airfoilpreppy\src
subprocess returned 0
install url: package= CCBlade url= http://github.com/WISDEM/CCBlade/tarball/mas
ter
Traceback (most recent call last):
File "setup_all.py", line 105, in
install_url(f, url,force=options.force)
File "setup_all.py", line 27, in install_url
response = urllib2.urlopen(url)
File "D:\ProgramData\Python27Win32\Lib\urllib2.py", line 154, in urlopen
return opener.open(url, data, timeout)
File "D:\ProgramData\Python27Win32\Lib\urllib2.py", line 429, in open
response = self._open(req, data)
File "D:\ProgramData\Python27Win32\Lib\urllib2.py", line 447, in _open
'_open', req)
File "D:\ProgramData\Python27Win32\Lib\urllib2.py", line 407, in _call_chain
result = func(*args)
File "D:\ProgramData\Python27Win32\Lib\urllib2.py", line 1228, in http_open
return self.do_open(httplib.HTTPConnection, req)
File "D:\ProgramData\Python27Win32\Lib\urllib2.py", line 1201, in do_open
r = h.getresponse(buffering=True)
File "D:\ProgramData\Python27Win32\Lib\httplib.py", line 1121, in getresponse
response.begin()
File "D:\ProgramData\Python27Win32\Lib\httplib.py", line 438, in begin
version, status, reason = self._read_status()
File "D:\ProgramData\Python27Win32\Lib\httplib.py", line 402, in _read_status
raise BadStatusLine(line)
httplib.BadStatusLine: ''

(openmdao-0.10.1) D:\ProgramData\WISDEM>`

integrate offshore BOS model

once offshore BOS model is integrated to plant_costsse then integrate the model into the the lcoe_se_assembly

some questions about drivese

Dear Wisdem Team member
I have some questions about the module of drivese , in the subroutine
" def nacelle_example_5MW_baseline_3pt", you give the rotor moments "prob['Mxyz'] = np.array([330770.0, -16665000.0, 2896300.0]) # Nm",which are "The rotor bending moment about the x axis,y axis , z axis ,respectively." We used the bladed software to verify the moment results(Power :2Mw, rotor diameter 126m,), we found the rotor bending moment about x axis (hub loads:fixed frame GL coordinates) , is about 0.55 times of the moment about y axis, but in "5MW_baseline_3pt" example : moment_x/moment_y=0.019(330770.0/16665000.0) ,so I doubt that the bending moment about the x axis may be incorrect( moment about z axis has the same problem) ,or I have some misunderstandings about the bending moment ?

issue while import _pBEAM: DLL load failed

Hello everyone,

I'm quite new to WISDEM and tried to install the program for over two weeks now because we think the blade optimizer will be very helpful in our project. I got it running on Ubuntu 16 with 32 bit, but somehow the SNOPT optimizer with 32bit is just available for windows. The installation on windows 10 worked now with some modifications, but I got an issue with importing _pBEAM in python because there seems to be a DLL missing. I'm very glad for any help. Here is the output of a separate pBEAM installation:

############################################################################
(openmdao-0.10.3.2) C:\workspace\WISDEM\plugins\pBEAM>python setup.py config --compiler=mingw32 build --compiler=mingw32 --force install
running config
running build
running config_cc
unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
build_src
building extension "_pBEAM" sources
build_src: building npy-pkg config files
running build_ext
customize Mingw32CCompiler
customize Mingw32CCompiler using build_ext
customize Mingw32CCompiler
customize Mingw32CCompiler using build_ext
building '_pBEAM' extension
compiling C++ sources
C compiler: g++ -O2 -Wall

compile options: '-DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSION__=0x1500 -Isrc\pBEAM -IC:/boost_1_55_0 -IC:\openmdao-0.10.3.2\lib\site-packages\numpy\core\include -IC:\Python27\include -IC:\openmdao-0.10.3.2\PC -c'
extra options: '-O2'
g++ -O2 -Wall -DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSION__=0x1500 -Isrc\pBEAM -IC:/boost_1_55_0 -IC:\openmdao-0.10.3.2\lib\site-packages\numpy\core\include -IC:\Python27\include -IC:\openmdao-0.10.3.2\PC -c src\pBEAM\Poly.cpp -o build\temp.win32-2.7\Release\src\pbeam\poly.o -O2g++ -O2 -Wall -DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSION__=0x1500 -Isrc\pBEAM -IC:/boost_1_55_0 -IC:\openmdao-0.10.3.2\lib\site-packages\numpy\core\include -IC:\Python27\include -IC:\openmdao-0.10.3.2\PC -c src\pBEAM\BeamFEA.cpp -o build\temp.win32-2.7\Release\src\pbeam\beamfea.o -O2

g++ -O2 -Wall -DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSION__=0x1500 -Isrc\pBEAM -IC:/boost_1_55_0 -IC:\openmdao-0.10.3.2\lib\site-packages\numpy\core\include -IC:\Python27\include -IC:\openmdao-0.10.3.2\PC -c src\pyBEAM\pyBEAM.cpp -o build\temp.win32-2.7\Release\src\pybeam\pybeam.o -O2g++ -O2 -Wall -DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSION__=0x1500 -Isrc\pBEAM -IC:/boost_1_55_0 -IC:\openmdao-0.10.3.2\lib\site-packages\numpy\core\include -IC:\Python27\include -IC:\openmdao-0.10.3.2\PC -c src\pBEAM\Beam.cpp -o build\temp.win32-2.7\Release\src\pbeam\beam.o -O2

g++ -O2 -Wall -DNPY_MINGW_USE_CUSTOM_MSVCR -D__MSVCRT_VERSION__=0x1500 -Isrc\pBEAM -IC:/boost_1_55_0 -IC:\openmdao-0.10.3.2\lib\site-packages\numpy\core\include -IC:\Python27\include -IC:\openmdao-0.10.3.2\PC -c src\pBEAM\myMath.cpp -o build\temp.win32-2.7\Release\src\pbeam\mymath.o -O2
g++ -shared build\temp.win32-2.7\Release\src\pbeam\poly.o build\temp.win32-2.7\Release\src\pbeam\mymath.o build\temp.win32-2.7\Release\src\pbeam\beamfea.o build\temp.win32-2.7\Release\src\pbeam\beam.o build\temp.win32-2.7\Release\src\pybeam\pybeam.o -LC:/boost_1_55_0/stage/lib -LC:/lapack -LC:\Python27\Libs -LC:\openmdao-0.10.3.2\libs -LC:\openmdao-0.10.3.2\PCbuild -LC:\openmdao-0.10.3.2\PC\VS9.0 -lboost_python-mgw63-mt-1_55 -llapack -lblas -lpython27 -lmsvcr90 -o build\lib.win32-2.7_pBEAM.pyd
running install
running bdist_egg
running egg_info
writing pBEAM.egg-info\PKG-INFO
writing top-level names to pBEAM.egg-info\top_level.txt
writing dependency_links to pBEAM.egg-info\dependency_links.txt
reading manifest file 'pBEAM.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'CHANGELOG.md'
warning: no directories found matching 'docs_build\html'
warning: no directories found matching 'test'
writing manifest file 'pBEAM.egg-info\SOURCES.txt'
installing library code to build\bdist.win32\egg
running install_lib
creating build\bdist.win32\egg
copying build\lib.win32-2.7_pBEAM.pyd -> build\bdist.win32\egg
creating stub loader for _pBEAM.pyd
byte-compiling build\bdist.win32\egg_pBEAM.py to _pBEAM.pyc
creating build\bdist.win32\egg\EGG-INFO
copying pBEAM.egg-info\PKG-INFO -> build\bdist.win32\egg\EGG-INFO
copying pBEAM.egg-info\SOURCES.txt -> build\bdist.win32\egg\EGG-INFO
copying pBEAM.egg-info\dependency_links.txt -> build\bdist.win32\egg\EGG-INFO
copying pBEAM.egg-info\top_level.txt -> build\bdist.win32\egg\EGG-INFO
writing build\bdist.win32\egg\EGG-INFO\native_libs.txt
zip_safe flag not set; analyzing archive contents...
creating 'dist\pBEAM-0.1.0-py2.7-win32.egg' and adding 'build\bdist.win32\egg' to it
removing 'build\bdist.win32\egg' (and everything under it)
Processing pBEAM-0.1.0-py2.7-win32.egg
Removing c:\openmdao-0.10.3.2\lib\site-packages\pBEAM-0.1.0-py2.7-win32.egg
Copying pBEAM-0.1.0-py2.7-win32.egg to c:\openmdao-0.10.3.2\lib\site-packages
pBEAM 0.1.0 is already the active version in easy-install.pth

Installed c:\openmdao-0.10.3.2\lib\site-packages\pbeam-0.1.0-py2.7-win32.egg
Processing dependencies for pBEAM==0.1.0
Finished processing dependencies for pBEAM==0.1.0
############################################################################
(openmdao-0.10.3.2) C:\workspace\WISDEM\plugins\pBEAM>python
Python 2.7.15 |Anaconda, Inc.| (default, May 1 2018, 18:37:12) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.

import wisdem.lcoe.lcoe_csm_assembly

import wisdem.lcoe.lcoe_se_assembly
Traceback (most recent call last):
File "", line 1, in
File "c:\workspace\wisdem\src\wisdem\lcoe\lcoe_se_assembly.py", line 19, in
from wisdem.turbinese.turbine import configure_turbine
File "c:\workspace\wisdem\src\wisdem\turbinese\turbine.py", line 15, in
from rotorse.rotor import RotorSE
File "c:\workspace\wisdem\plugins\rotorse\src\rotorse\rotor.py", line 24, in
import _pBEAM
ImportError: DLL load failed: Das angegebene Modul wurde nicht gefunden.
import _pBEAM
Traceback (most recent call last):
File "", line 1, in
ImportError: DLL load failed: Das angegebene Modul wurde nicht gefunden.

#############################################################################

Is this a known error? Or is it possible to get to know which DLL is missing?
Best Regards,
Fabian

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.