Title: | Simulates LOX Drop Testing |
---|---|
Description: | Generates simulated data representing the LOX drop testing process (also known as impact testing). A simulated process allows for accelerated study of test behavior. Functions are provided to simulate trials, test series, and groups of test series. Functions for creating plots specific to this process are also included. Test attributes and criteria can be set arbitrarily. This work is not endorsed by or affiliated with NASA. See "ASTM G86-17, Standard Test Method for Determining Ignition Sensitivity of Materials to Mechanical Impact in Ambient Liquid Oxygen and Pressurized Liquid and Gaseous Oxygen Environments" <doi:10.1520/G0086-17>. |
Authors: | Chad Ross [aut, cre] |
Maintainer: | Chad Ross <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.1.3 |
Built: | 2025-03-31 02:53:33 UTC |
Source: | https://github.com/chadr/droptest |
Historical drop test data where testers did not immediately terminate testing. Useful for comparing modern test methods and simulation output.
data("D7905")
data("D7905")
A data frame with 10 observations on the following 2 variables.
P
a numeric vector
SD
a numeric vector
NASA Technical Note NASA-TN D-7905. (1970) Written by J. B. Gayle. https://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19750014413.pdf
data(D7905)
data(D7905)
dgroups
returns a collection test series organized into groups. Each
batch of test series are identified with a group number. Test parameters
will be uniform within each group.
dgroups(num.groups = NULL, probs = NULL, ...)
dgroups(num.groups = NULL, probs = NULL, ...)
num.groups |
Integer. Specifies how many groups of drop tests to simulate. |
probs |
Vector. Specifies probabilities of q used for each group. Vector length must equal value of num.groups. |
... |
Passes values to |
Data table of groups where each group consists of multiple drop tests. Consisting of the following elements:
F_CRITERIA The failure criteria specified.
REACT The total number of simulated reactions (failures).
NON_REACT The total number of simulated non-reactions (successes).
TRIALS The number of simulated trials performed until failure condition met.
MAX_TRIALS The maximum number of simulated trials to perform as specified.
PCT_REACT The percent of simulated trials that yielded a reaction (failure).
Q The probability of failure (reaction) as specified.
P The probability of success (non-reaction).
RESULT Whether the simulated test series as a whole failed or passed based on the failure criteria specified.
GROUP Denotes the group of simulated test series.
Chad Ross [email protected]
dgroups(num.groups = 2, probs = c(0.01, 0.2), num.series = 5) dgroups(num.groups = 2, probs = c(0.01, 0.2), num.series = 5, max.trials = 60) dgroups(num.groups = 2, probs = c(0.01, 0.2), num.series = 5, fail.criteria = 2) dgroups(num.groups = 5, probs = seq(0.01, 0.05, by = 0.01), num.series = 2)
dgroups(num.groups = 2, probs = c(0.01, 0.2), num.series = 5) dgroups(num.groups = 2, probs = c(0.01, 0.2), num.series = 5, max.trials = 60) dgroups(num.groups = 2, probs = c(0.01, 0.2), num.series = 5, fail.criteria = 2) dgroups(num.groups = 5, probs = seq(0.01, 0.05, by = 0.01), num.series = 2)
Generates simulated data representing the LOX drop testing process (also known as impact testing). Drop testing is expensive, time consuming, and notoriously difficult to analyze. A simulated process allows for accelerated study of test behavior.
Functions are provided to simulate trials, test series, and groups of test series. Functions for creating plots specific to this process are also included. Test attributes and criteria can be set arbitrarily. This work is not endorsed by or affiliated with NASA.
Drop testing – sometimes called impact testing – is used to evaluate if a material will interact with liquid oxygen (LOX). The material is exposed to the LOX and an impactor is dropped onto the sample. Each drop is a bernoulli trial where a reaction is a failure and a non-reaction is a success. The specified number of trials – until failure – completes one test.
While fundamentally a binomial process, drop testing – performed by the military and NASA – yields results that are difficult to analyze. Numerous tech briefs and standards have attempted to address the problem (see below for more information). Testing stops immediately once the failure condition is reached. If the failure condition occurs on drop one or two – depending on the failure criteria – then the test returns only one or two result values. Alternatively, if a material passes, or if the failure condition occurs on the last trial, then the test returns as many result values as trials.
Simulation can be used to examine the behavior of this test procedure.
Inspired by NASA Technical Note "Computer Simulation of Threshold Sensitivity Determinations" (NASA-TN-D-7663). Gayle (1974). https://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19750004618.pdf
Trial: A simulated bernoulli trial that represents one drop
of the impactor onto a material sample. Hence a trial is also referred to as
a drop. Where q is the probability of failure. A reaction is recorded as a
failure. Where p is the probability of success. A non-reaction is recorded
as a success. Where .
See https://en.wikipedia.org/wiki/Bernoulli_trial
Drop Test: A collection of simulated trials (drops) generated with equal parameters (q, number of trials, failure criteria, etc). When the failure criteria is reached the test is immediately terminated and no more trials are completed. The sooner a test reaches the failure criteria the less total trials for that particular test. A test with no failures will always contain the maximum number of trials as defined in the function parameters.
Test Series: A collection of simulated drop tests. A group number can be attached to the drop tests in a test series (optional).
Groups: A collection of multiple simulated test series. Each batch of test series are identified with a group number. Within each group test parameters will be identical.
Trial Deviation: The average distance from q for the total percent of reactions (failures).
Chad Ross [email protected]
Pass/Fail criteria and number of observations required have been defined in the following standards:
NASA-STD-6001B https://spaceflightsystems.grc.nasa.gov/SpaceDOC_II/Standards/documents/NASA-STD-6001B-1.pdf
ASTM D2512 https://www.astm.org/Standards/D2512.htm
ASTM G86-17 https://www.astm.org/Standards/G86.htm
Note: This package is not constrained by any standard. Arbitrary test criteria and observations can be specified for maximum flexibility.
For more information on drop testing:
"An Instrument for Determination of Impact Sensitivity of Materials in Contact with Liquid Oxygen" (AB6002-EB). Lucas (1960). https://www.astm.org/DIGITAL_LIBRARY/STP/MMR/PAGES/AB6002-EB.htm
"Reproducibility of Liquid Oxygen Impact Test Results" (NASA-TN-D-7905). Gayle (1970). https://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19750014413.pdf
"Lox/Gox Mechanical Impact Tester Assessment" (TM-74106). Bransford, Bryan, Frye, Stohler (1980). https://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19800006920.pdf
Note: This work is not endorsed by or affiliated with NASA. Released under MIT license.
dtrials
dseries
dgroups
trialdev
gayleplot
ratioplot
D7905
PREGENTD
dseries
returns a series of simulated drop tests. Where each test
consists of trials (drops).
dseries(num.series, tag.group = FALSE, group = 0, ...)
dseries(num.series, tag.group = FALSE, group = 0, ...)
num.series |
Integer. Specifies how many series of drop tests to simulate. |
tag.group |
Logical. If |
group |
Integer. Assigns a group number to each simulated drop test
within the same series. Only if |
... |
Passes |
Data table of multiple simulated drop tests. Each row of the data.table represents one simulated drop test. Containing the following elements:
F_CRITERIA The failure criteria specified.
REACT The total number of simulated reactions (failures).
NON_REACT The total number of simulated non-reactions (successes).
TRIALS The number of simulated trials performed until failure condition met.
MAX_TRIALS The maximum number of simulated trials to perform as specified.
PCT_REACT The the percent of simulated trials that yielded a reaction (failure).
Q The probability of failure (reaction) as specified.
P The probability of success (non-reaction).
RESULT Whether the simulated test series as a whole failed or passed based on the failure criteria specified.
Chad Ross [email protected]
dseries(num.series = 5, q = 0.05) dseries(num.series = 5, q = 0.05, max.trials = 60) dseries(num.series = 5, q = 0.05, max.trials = 60, fail.criteria = 2)
dseries(num.series = 5, q = 0.05) dseries(num.series = 5, q = 0.05, max.trials = 60) dseries(num.series = 5, q = 0.05, max.trials = 60, fail.criteria = 2)
dtrials
returns simulated bernoulli trials (drops) that compose one
drop test.
dtrials(q, max.trials = 20, fail.criteria = 1, data.structure = "data.table")
dtrials(q, max.trials = 20, fail.criteria = 1, data.structure = "data.table")
q |
Integer. Specifies the probability that a reaction occurs.
A reaction is interpreted as a failure therfore q is the probability
of failure for the bernoulli trials. Probability of success would be
|
max.trials |
Integer. The maximum number of bernoulli trials to
perform. where each trial represents one drop of the impactor onto
a sample. Trials performed will always be less than or equal to
|
fail.criteria |
Integer. Specifies number of reactions (failures)
that can occur before an entire test is considered a failure. Must be
less than or equal to |
data.structure |
Instructs function to return result as a data.table or list. Default is data.table. Note: Other functions in this package only work with data.tables. List is an option strictly for future flexibility. |
A data table or list. Containing the following elements:
RAW_VALUES The raw, uncensored trial results. (Only in list output.)
F_CRITERIA The failure criteria specified.
REACT The total number of simulated reactions (failures).
NON_REACT The total number of simulated non-reactions (successes).
TRIALS The number of simulated trials performed until the failure condition was met.
MAX_TRIALS The maximum number of simulated trials specified.
PCT_REACT The percent of simulated trials that yielded a reaction (failure).
Q The probability of failure (reaction) as specified.
P The probability of success (non-reaction).
RESULT Whether the simulated test series as a whole failed or passed based on the failure criteria specified.
Chad Ross [email protected]
dtrials(0.05) dtrials(0.05, max.trials = 60) dtrials(0.05, fail.criteria = 2) dtrials(0.05, max.trials = 60, fail.criteria = 2) dtrials(0.05, data.structure = "list")
dtrials(0.05) dtrials(0.05, max.trials = 60) dtrials(0.05, fail.criteria = 2) dtrials(0.05, max.trials = 60, fail.criteria = 2) dtrials(0.05, data.structure = "list")
gayleplot
Creates plot similar to the one seen in NASA Technical
Note NASA-TN-D-7905. (1970) Written by J. B. Gayle. The namesake
of this function.
https://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19750014413.pdf
gayleplot(simq = seq(0.01, 0.5, by = 0.05), ...)
gayleplot(simq = seq(0.01, 0.5, by = 0.05), ...)
simq |
Vector. Probabilities of failure (q) to use for simulated trials. Defaults to range of q = 0.01 to q = 0.5 in 0.05 steps. |
... |
Passes values to |
Plots historical standard deviations ( mid-test – against binomial process. Also plots standard deviations ( from simulation using modern procedure.
Shows how historical data follows a binomial process, but simulated data produced using modern procedure does not.
none
Chad Ross [email protected]
dgroups
dseries
dtrials
droptest
# recommended to use num.series value greater than or equal to 1000. gayleplot(num.series = 100) gayleplot(num.series = 100, simq = seq(0.01, 0.05, by = 0.01))
# recommended to use num.series value greater than or equal to 1000. gayleplot(num.series = 100) gayleplot(num.series = 100, simq = seq(0.01, 0.05, by = 0.01))
Output of trialdev()
on a large pre-generated dataset.
Original dataset represents fifty levels of q where each level has 100,000 simulated test series. For a total of 5,000,000 simulated tests.
data("PREGENTD")
data("PREGENTD")
A data frame with 50 observations of 4 variables.
data(PREGENTD)
data(PREGENTD)
ratioplot
Creates plot of pass/fail ratio for repeated test
series. By simulated probability of reaction.
ratioplot(simq = seq(0.01, 0.2, by = 0.01), colors = c("RED", "GREEN"), ...)
ratioplot(simq = seq(0.01, 0.2, by = 0.01), colors = c("RED", "GREEN"), ...)
simq |
Vector. Probabilities of failure (q) to use for simulated trials. Defaults to range of q = 0.01 to q = 0.5 in 0.05 steps. |
colors |
Vector. Passes color options to |
... |
Passes values to |
none
Chad Ross [email protected]
dgroups
dseries
dtrials
droptest
# recommended to use num.series value greater than or equal to 1000. ratioplot(simq = seq(0.01, 0.20, by = 0.01), num.series = 100) ratioplot(simq = seq(0.01, 0.20, by = 0.01), num.series = 100, colors = c("BLUE", "BLACK"))
# recommended to use num.series value greater than or equal to 1000. ratioplot(simq = seq(0.01, 0.20, by = 0.01), num.series = 100) ratioplot(simq = seq(0.01, 0.20, by = 0.01), num.series = 100, colors = c("BLUE", "BLACK"))
trialdev
creates a data.table with the average distances from q for
the total percent of reactions (failures).
trialdev(sim.values)
trialdev(sim.values)
sim.values |
Data table. Data table produced by droptest::dtrials, droptest::dseries, or droptest::dgroups. |
Data table of q, p, trial deviation, and average total trials per test. Aggregated by q.
Q The probability of failure (reaction) as specified.
P The probability of success (non-reaction).
TRIAL_DEV The average distance from q for the total percent of reactions (failures).
AVG_TRIALS The average number of simulated trials reached for each q.
Chad Ross [email protected]
dtrials
dseries
dgroups
droptest
trialdev(dtrials(q = 0.05, max.trials = 60, fail.criteria = 2))
trialdev(dtrials(q = 0.05, max.trials = 60, fail.criteria = 2))