read_g09output: extract the summary area from gaussian09 log file

Description Usage Arguments Value Examples

View source: R/parser-summary.R

Description

extract the summary area from gaussian09 log file

Usage

1

Arguments

file

file path

Value

summary list

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
library(dplyr)
dir(".") %>%
 grep(".out", ., value = TRUE) %>%
  lapply(
    function(x){
      res <- read_g09output(x)
      tryCatch(
        c(res$Title ,res$Summary$`CCSD(T)`),
        error = function(e) NA
      )
    }
  )

kyusque/g09R documentation built on May 20, 2019, 10:21 p.m.