pert_mol: Perturbate molecule

Description Usage Arguments Examples

Description

Perturbate molecule

Usage

1
pert_mol(mol, tcoef = 10)

Arguments

mol
tcoef

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (mol, tcoef = 10) 
{
    xyz <- mol2xyz(mol)
    R <- rnd_euler_orth()
    T <- rnd_trans_vec(tcoef)
    xyz_p <- R %*% xyz + T
    xyz2mol(mol, xyz_p)
  }

conmolfields documentation built on May 2, 2019, 4:18 p.m.