Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Dirack/diffractionSimulator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Dirack/diffractionSimulator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: interpolation
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 10 commits
  • 1 file changed
  • 1 contributor

Commits on Aug 21, 2020

  1. Modify velocity input to several reflectors #17

    Program sfdiffsim now reads a velocity vector with a sample for each
    reflector. Each sample of the velocity vector is assigned to a set of
    (t0,m0) pairs in t0s and m0s files. Because of that, t0s and m0s files
    now have n2 axis assigned to a given velocity sample in velocity vector.
    
    So, v[0] corresponds to a velocity sample for
    (t0[0][0],m0[0][0]),(t0[1][0],m0[1][0]),(t0[2][0],m0[2][0])... pairs
    
    and  v[1] corresponds to a velocity sample for
    (t0[0][1],m0[0][1]),(t0[1][1],m0[1][1]),(t0[2][1],m0[2][1])... pairs
    
    and so on...
    Dirack committed Aug 21, 2020
    Configuration menu
    Copy the full SHA
    2a6d187 View commit details
    Browse the repository at this point in the history
  2. Modify program sfdiffsim to run in a loop #17

    Modify the program sfdiffsim to receive one velocity each time for
    a set of (t0, m0) pairs for a given reflector. It allows the program
    to run in a loop, each iteration of the loop receive (t0,m0) pairs
    picked above one reflector in the stacked section.
    Dirack committed Aug 21, 2020
    Configuration menu
    Copy the full SHA
    ac62ab4 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2020

  1. Half velocity medium for diffractions #17

    To simulate a stacked section with diffraction hyperbolas someone
    should use half of the medium velocity in the hyperbola equation
    following the model of a exploding reflector.
    Dirack committed Aug 23, 2020
    Configuration menu
    Copy the full SHA
    6fee49f View commit details
    Browse the repository at this point in the history
  2. Round division of t0/2 #17

    Dirack committed Aug 23, 2020
    Configuration menu
    Copy the full SHA
    6c9e994 View commit details
    Browse the repository at this point in the history
  3. Division inside of a loop is incorrect #17

    A division v=v/2 inside of a loop is a logic error because this
    division will be done each loop iteration.
    Dirack committed Aug 23, 2020
    Configuration menu
    Copy the full SHA
    ffab485 View commit details
    Browse the repository at this point in the history
  4. Use picked points variables pm0 and pt0 #17

    Use pm0 and pt0 directly to calculate hyperbola traveltime
    instead of using intermediate steps with m0, it0 and t0.
    Dirack committed Aug 23, 2020
    Configuration menu
    Copy the full SHA
    10af81c View commit details
    Browse the repository at this point in the history
  5. Jump to next iteration if it is outside the section #17

    To avoid segmentation fault errors, check if calculated traveltime
    sample is outside the section, if it is the case, jump to the next
    itaration. This check will allow the user to pick and generate
    hyperbolas closer to the section boundaries
    Dirack committed Aug 23, 2020
    Configuration menu
    Copy the full SHA
    f278cbe View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1bc73dd View commit details
    Browse the repository at this point in the history
  7. Merge pull request #18 from Dirack/feature/issue/17

    Feature/issue/17
    Dirack authored Aug 23, 2020
    Configuration menu
    Copy the full SHA
    8eae563 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2020

  1. Sum up diffraction amplitudes

    Dirack committed Sep 7, 2020
    Configuration menu
    Copy the full SHA
    af77de7 View commit details
    Browse the repository at this point in the history
Loading