Coder Social home page Coder Social logo

snopt.jl's Introduction

Snopt.jl

Julia interface to SNOPT (must obtain a licensed copy of SNOPT separately) and put the snopt src contents into the snopt folder of the julia wrapper.

Step 1: 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.

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

Step 3: Build the library (from the src/snopt folder):

gfortran -shared -O2 *.f *.f90 -o libsnopt.dylib -fPIC -v

To Use Snopt in Julia: include("Snopt.jl") # or the path to where it and the newly compiled library are using Snopt # as required by julia

snopt.jl's People

Contributors

andrewning avatar

Watchers

 avatar  avatar

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.