This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
prokop_hapala [2010/02/12 13:14] prokop |
prokop_hapala [2012/11/30 13:01] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | |||
| + | === FORTRAN HELP === | ||
| + | Object-Oriented Programming in Fortran 2003 | ||
| + | http://www.pgroup.com/lit/articles/insider/v3n1a3.htm | ||
| + | |||
| + | module myModule | ||
| + | implicit none | ||
| + | | ||
| + | type myType | ||
| + | integer :: n | ||
| + | real, dimension (:, :), allocatable :: Rs | ||
| + | contains | ||
| + | procedure :: myMethod | ||
| + | end type subSystem | ||
| + | | ||
| + | type (myType) :: myInstance | ||
| + | | ||
| + | contains | ||
| + | |||
| + | subroutine myMethod ( this, myVar) | ||
| + | class (subSystem) :: this | ||
| + | real :: myVar | ||
| + | integer i | ||
| + | allocate (this%Rs(3,this%n)) | ||
| + | do i = 1, this%n | ||
| + | this%Rs(:,i) = myVar | ||
| + | end do | ||
| + | end subroutine myMethod | ||
| + | |||
| + | end module glob_vars | ||
| + | | ||
| + | call myInstance%myMethod(myVar) | ||
| Line 43: | Line 75: | ||
| low-discrepancy sequences http://parallel.bas.bg/~emanouil/sequences.html | low-discrepancy sequences http://parallel.bas.bg/~emanouil/sequences.html | ||
| + | low-discrepany sequences 2 http://www.puc-rio.br/marco.ind/quasi_mc.html | ||
| + | |||
| + | == Simplecti integrators == | ||
| + | PSEUDO–HIGH-ORDER SYMPLECTIC INTEGRATORS | ||
| + | http://www.iop.org/EJ/article/1538-3881/119/1/425/990231.text.html | ||
| [[wiki test]] | [[wiki test]] | ||
| + | === Brain Storm === | ||
| + | |||
| + | [[derivative free optimization]] - Poznamky k algoritmum nevyzadujicim sily (gradienty) | ||
| + | |||
| + | [[Maximum metadynamics]] - Metadynamics which use maximum instead of sum of gaussians. Easier to tune. | ||
| + | |||
| + | [[Border Search a Minima hopping]] | ||
| + | |||
| + | [[Border Search Implementace ve Fireballu]] | ||
| + | |||
| + | [[Kvadraticka Evoluce]] | ||
| + | |||
| + | [[Discrete MetaDynamics]] | ||
| + | |||
| + | [[Uphill damped MD]] | ||
| + | |||
| + | [[BrainSorm]] | ||
| + | |||
| + | === OTHER === | ||
| + | |||
| + | [[Wiki Playground]] | ||