Giter Club home page Giter Club logo

Comments (1)

jobovy avatar jobovy commented on September 28, 2024

Hi!

The first entry in the time array is the time of the initial condition (that is, the initial condition isn't assumed to be at t=0, which I think you may have thought). So because you change the initial time, your clage will be a different time in the past. If you keep the initial times the same, e.g., in your second run use

ts = np.linspace(-200.0, 100.0, 10001)#*u.Gyr

then you'll see that you get a consistent result.

A few more comments:

  • You do have to add *u.Gyr if you want your times to be interpreted as being in Gyr. Without this, the times are assumed to be in internal units. Given how you define clage, I think this is supposed to be in Gyr.
  • I think you want to integrate backwards in time, but you are integrating forwards in time. For your purposes, the best thing to do would be to use
    ts = np.linspace(0,-clage, 10001)
    
    So you go from the present (defined to be t=0 here) to the time you want to integrate backwards for.

I hope this helps!

from galpy.

Related Issues (20)

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.