RAYPP

A program to do quick travel-time calculations of P-P reflections for flat earth

|   Back to main page   |  Back to geophysical INFO main page   |  Back to programs index   |

Introduction

The aim of the program is to calculate the travel-times of P-P reflections generated by flat earth model. The model consists of layers that have different velocities and thicknesses. The program produces common shot gather. The simple description of the model can be seen in the following figure :

The program is a FORTRAN object file. I have tested the program on my Pentium II 233 machine and it has been proved to work fast. To compute the travel-times of an earth model consisting of 26 layers with 401 receivers (more than 10,000 rays), for example, it takes 4.2 seconds approximately.

The program can be used by :

Procedure

To run the program RAYPP you have to go through the steps below :

Run a new model

You can run a new model simply by replacing the lines in the modeling section in file exam1.sci. For example, you can write the lines below to represent a new model :

// Model
vp = [1000 1500 2000 2200 2500 2000 2500]';
d  = [100 100 50 100 100 50 100]';
x  = [0:50:500]';
Now you can execute the program using the same command (exec('exam1.sci')). Doing so, you'll obtaind the following figure :

To produce a split spread record, just type the next lines in the modeling section.

// Model
vp = [1000 2000 2200 2400 2500]';
d  = [50 50 50 50 100]';
x  = [-500:50:500]';
A new figure will be obtained and shown below :

HAVE A LOT OF FUN.