User Tools

Site Tools


prokop_hapala

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)
NOTES
stranka s knihovnama FZU
Graphics

Python and C++ based rendering system with good quailty, Radiance and so http://www.lightflowtech.com/

CG ethusiast with tutorials good demos and code http://www.iquilezles.org/

TEMP

Claky podivat se

Classification of chemical bonds based on topological analysis of electron localization functions http://www.nature.com/nature/journal/v371/n6499/pdf/371683a0.pdf.

Claudio Gonzales - examples + MetropilisSampling accelerated Budhabort http://www.openprocessing.org/portal/?userID=1636

MonteCarlo Metropolis Samplig
Simplecti integrators

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

prokop_hapala.txt · Last modified: 2012/11/30 13:01 (external edit)