R/tauScale.R

Defines functions tauScale

## MIT License
##
## Copyright (c) 2018 Oliver Dechant
##
## Permission is hereby granted, free of charge, to any person obtaining a copy
## of this software and associated documentation files (the "Software"), to deal
## in the Software without restriction, including without limitation the rights
## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
## copies of the Software, and to permit persons to whom the Software is
## furnished to do so, subject to the following conditions {
##
## The above copyright notice and this permission notice shall be included in all
## copies or substantial portions of the Software.
##
## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
## IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
## AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
## LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
## OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
## SOFTWARE.

#Creates standard optical depth scale sampling of the model vertically -
#interpretated as the Rossland optical depth scale uniformly spaced in log(tau)

tauScale <- function(numDeps, log10MinDepth, log10MaxDepth) {

  #log_10 Rossland optical depth scale
  tauRos <- matrix(numDeps, 2)

  #Construct the log Rossland optical depth scale, try equal spacing in log depth
  ln10 <- log(10)

  logMinDepth <- log10MinDepth*ln10
  logMaxDepth <- log10MaxDepth*ln10

  deltaLogTau <- (logMaxDepth-logMinDepth)/(numDeps-1)

  tauRos[,1] <- logMinDepth+(numDeps*deltaLogTau)
  tauRos[,2] <- exp(tauRos[,1])

  tauRos
}
increasechief/chromastar documentation built on May 14, 2019, 5:14 a.m.