/Snopt.jl

Julia interface to SNOPT (must obtain a licensed copy of SNOPT separately)

Primary LanguageJuliaOtherNOASSERTION

Snopt.jl

Julia interface to SNOPT (must obtain a licensed copy of SNOPT separately).

To Install

  1. Checkout the repo for development:
(v1.0) pkg> dev https://github.com/byuflowlab/Snopt.jl.git
  1. Copy your SNOPT source files into ~/.julia/dev/Snopt/deps/src.

  2. You will need to make a couple of changes to subroutine sn02lib.f. Function snSet, snSeti, and snSetr require the following changes:

    character*(*) buffer => character buffer*72 (snSet)

    character*(*) buffer => character buffer*55 (snSeti and snSetr)

    lenbuf = len(buffer) => lenbuf = len_trim(buffer) (snSeti and snSetr)

    The first two change the argument from a variable length string to one with a known length (which are the max lengths according to snopt docs). I had problems trying to pass variable length strings from Julia. I believe this can be done with pointers and allocatable strings, but that requires changes on the Fortran side anyway (and the changes would be more extensive). You must then always pass in a string of the correct length from Julia, so I pad the options with spaces in Julia, but this is transparent to the user. The latter change computes the length without the whitespace at the end so that the messages printed in the files don't contain the extra padding.

  3. sn27lu.f, sn27lu77.f, and sn27lu90.f contain duplicate symbols. You'll need to keep only one file. I deleted the latter two files.

  4. Compile the fortran code.

(v1.0) pkg> build Snopt

Run tests

(v1.0) pkg> test Snopt

To Use

using Snopt

See examples in tests.