Screamer Project  V3.3.1
Screamer Structure
 All Files Functions Variables
sinefunc.f
Go to the documentation of this file.
1  function fsinfun (time, amplitude, period, delay)
2 c
3 c Define passed variables
4 c
5  real time, amplitude, period, delay
6 c
7  real alpha, pi, twopi
8  parameter(pi = 3.1415927)
9  parameter(twopi = 2.0*pi)
10 c
11 c Changed log
12 c
13 c 2014-02-06 RBS: Changed real*4 to real
14 c
15 c Calulates the function:
16 c
17 c f(time) = amplitude * ( sin (alpha) ) ,
18 c where: alpha = ((time-delay)/period)*twopi .
19 c
20  alpha = ( (time-delay) / period ) * twopi
21  fsinfun = amplitude * sin(alpha)
22 c
23  return
24  end
function fsinfun(time, amplitude, period, delay)
Definition: sinefunc.f:1
c *****************************************************************************c Various format statements for read_screamer_data output c To get these into made format to be characters c for each line corrected spelling errors in format added statement for Zflow Plasma Loss Model added format for CSV output type fixed more lines longer than characters added format for Measure Zflow Block and forward c reverse current directions in Zflow plasma loss c and Zflow POS models added format for SFC output type c removed from all code calls c c c c c a80 c i10 c No grids on plots c Do not write files containing the plotted points c Execute only one cycle c Do not echo the setup parameters and indicies c c &exitting c a13 c c c c c c c c102 c &described as a function of time c c c &described as a function of time c c c &function of time c c shell c &min A K c &trapped field time
Definition: zdemfmt.h:85