Description Usage Arguments Value Author(s) Examples
View source: R/Rpp_plot_v3.r View source: R/Rpp_ggplot_v3.r
create Stress-Time plot
create Stress-Time plot
1 2 3 | plotTimeStress(time_wave, stress, time_wave_in, strain_rate, ...)
plotTimeStress(time_wave, stress, time_wave_in, strain_rate, ...)
|
time_wave |
from the output matrix from fft analysis or numerical differentiation analysis |
stress |
from the output matrix from fft analysis or numerical differentiation analysis |
time_wave_in |
raw time from input data |
strain_rate |
strain rate from input data |
... |
parameters of plot() |
No return value
No return value
Giorgio Luciano and Serena Beretta, based on the Plotting functions created by Simon Rogers Group for Soft Matter
Giorgio Luciano and Serena Beretta, based on the Plotting functions created by Simon Rogers Group for Soft Matter
1 2 3 4 5 6 7 8 9 10 | data(mydata)
df <- rpp_read2(mydata , selected=c(2, 3, 4, 0, 0, 1, 0, 0))
time_wave <- df$raw_time
resp_wave <- data.frame(df$strain,df$strain_rate,df$stress)
out <- Rpp_num(time_wave, resp_wave , L=1024, k=8, num_mode=1)
time_wave= out$spp_data_out$time_wave
stress= out$spp_data_out$stress
time_wave_in= out$spp_data_in$time_wave
strain_rate= out$spp_data_in$strain_rate
plotTimeStress(time_wave,stress,time_wave_in,strain_rate)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.