Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
54 views

Numerical Methods Library in FORTRAN: Sets The Weights and Points For The 8-Point Gaussian Rule

This document summarizes the SUBROUTINE GL8, which sets the weights and points for an 8-point Gaussian quadrature rule for numerical integration. The subroutine takes in the maximum number of weights/points, the actual number of weights/points, and arrays to store the weights and points. It is part of an open source Fortran library for numerical methods and has no dependent routines.

Uploaded by

rodwellhead
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
54 views

Numerical Methods Library in FORTRAN: Sets The Weights and Points For The 8-Point Gaussian Rule

This document summarizes the SUBROUTINE GL8, which sets the weights and points for an 8-point Gaussian quadrature rule for numerical integration. The subroutine takes in the maximum number of weights/points, the actual number of weights/points, and arrays to store the weights and points. It is part of an open source Fortran library for numerical methods and has no dependent routines.

Uploaded by

rodwellhead
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

www.numerical-methods.

com

Numerical Methods Library in FORTRAN


Module

SUBROUTINE GL8

Title

Sets the weights and points for the 8-point Gaussian Rule.

Description

Sets the weights and points of the folowing Gaussian quadrature


rule.
1

() ( )
0

Interface

Web source of
code.

=1

SUBROUTINE GL8(MAXN, N, WTS, PTS)


integer maxn: the maximimum number of weights/points
integer
n: the number of weights/pointsr
real
wts: the weights
real
pts: the points
http://www.numerical-methods.com/fortran/GL8.FOR

Web source of
this guide

www.numerical-methods.com/fortan/GL8_FOR.htm

Web source of
the algorithm

Not-applicable

Dependent
routines

NONE

Test problems

http://www.numerical-methods.com/fortran/GL8_FOR.htm

Licence

This is open source; the software may be used and applied within other
systems as long as its provenance is appropriately acknowledged.
See the GNU Licence for more information or contact
webmaster@numerical-methods.com

Similar codes
that may be of
interest
Applications

GL8 is used in the boundary element library www.boundary-elementmethod.com

www.numerical-methods.com

Bibilography

Gaussian Quadrature
Tutorials on Fortran77

You might also like