TNT Protocol Equations — Shared Reference¶
Quick Reference¶
This page documents the shared mathematical framework for all TNT (Transient Network Theory) models in RheoJAX. The TNT family includes:
TNTBase: Constant breakage rate (upper-convected Maxwell)
TNTBell: Force-dependent breakage (shear thinning)
TNTFene: Finite extensibility via FENE stress function
TNTBellFene: Combined force-dependent breakage and finite extensibility
TNTNonAffine: Gordon-Schowalter derivative (slip parameter)
TNTStickyRouse: Multi-mode Rouse model with sticky segments
TNTMultiSpecies: Polydisperse network with multiple chain lengths
Common Features:
Conformation tensor \(\mathbf{S}\) tracks chain configuration
Modulus \(G\), breakage time \(\tau_b\), solvent viscosity \(\eta_s\)
6 protocols: FLOW_CURVE, SAOS, RELAXATION, STARTUP, CREEP, LAOS
JAX-native ODE integration via Diffrax
Key Predictions:
Steady shear: Newtonian (constant breakage) or shear thinning (Bell/slip)
SAOS: Single-mode Maxwell response (linearized)
Transients: Stress overshoot in startup (Bell), creep compliance, LAOS harmonics
General Constitutive Framework¶
Conformation Tensor¶
The TNT family is built on the symmetric positive-definite conformation tensor \(\mathbf{S}\), which tracks the average second moment of the chain end-to-end vector \(\mathbf{R}\) between crosslinks:
At equilibrium (no flow), \(\mathbf{S} = \mathbf{I}\) (identity tensor), representing an isotropic Gaussian coil.
Evolution Equation¶
The general evolution equation for \(\mathbf{S}\) is:
where:
\(\boldsymbol{\kappa} = \nabla \mathbf{v}\) is the velocity gradient tensor
\(\tau_b(\mathbf{S})\) is the bond/breakage lifetime (may depend on conformation)
\(\mathbf{S}_{eq} = \mathbf{I}\) is the equilibrium conformation
First two terms: Affine deformation (upper-convected derivative)
Third term: Breakage and reformation (Brownian relaxation)
Variant-specific terms:
Bell breakage: \(\tau_b\) becomes \(\tau_b(\mathbf{S}) = \tau_0 \exp(-\nu \sqrt{\text{tr}(\mathbf{S})})\)
Non-affine slip: Replace \(\boldsymbol{\kappa}\) with Gordon-Schowalter derivative (slip parameter \(\xi\))
FENE: Only affects stress function, not evolution
Stress Tensor¶
The Cauchy stress tensor is given by:
where:
\(G\) is the elastic modulus (plateau modulus)
\(f(\mathbf{S})\) is the stress function:
Linear (Hookean): \(f(\mathbf{S}) = \mathbf{S} - \mathbf{I}\)
FENE: \(f(\mathbf{S}) = \frac{L_{max}^2}{L_{max}^2 - \text{tr}(\mathbf{S})} (\mathbf{S} - \mathbf{I})\)
\(\mathbf{D} = (\nabla \mathbf{v} + \nabla \mathbf{v}^T)/2\) is the rate-of-strain tensor
\(\eta_s\) is the solvent viscosity
2D Simple Shear Reduction¶
For simple shear flows (most rheological tests), the full 3D tensor \(\mathbf{S}\) reduces to 4 independent components due to symmetry:
The velocity gradient in simple shear is:
This gives the 4-component ODE system (for constant breakage, upper-convected):
Outputs:
Shear stress: \(\sigma = G \cdot f(S_{xy})_{component} + \eta_s \dot{\gamma}\)
First normal stress difference: \(N_1 = G \cdot [f(S_{xx}) - f(S_{yy})]\)
Second normal stress: \(N_2 = G \cdot [f(S_{yy}) - f(S_{zz})]\) (zero for UCM)
History Integral (Cohort) Formulation¶
The TNT framework admits an equivalent integral formulation that tracks cohorts of chains born at different times. This perspective is particularly useful for understanding step-strain responses and complex deformation histories.
Deformation measures:
The deformation gradient \(\mathbf{F}(t,t')\) maps material elements from configuration at time \(t'\) to time \(t\). The Finger tensor (left Cauchy-Green) is:
For simple shear with accumulated strain \(\gamma(t,t')\):
Cohort stress superposition:
Chains born at time \(t'\) contribute stress proportional to their birth rate \(\beta(t')\), survival probability \(S(t,t')\), and accumulated deformation:
where:
\(\beta(t')\): Rate of chain creation at time \(t'\) (at equilibrium, \(\beta = 1/\tau_b\))
\(S(t,t') = \exp\!\bigl[-\int_{t'}^{t} k_d(s)\,ds\bigr]\): Probability that a chain born at \(t'\) survives to time \(t\)
\(k_d(s)\) is the destruction rate (variant-dependent)
For constant breakage (\(k_d = 1/\tau_b\)), the survival probability simplifies to:
Shear stress component:
Equivalence with differential form:
Differentiating the integral form with respect to time recovers the conformation tensor ODE. The integral form is the formal solution of the differential equation for any deformation history.
Generic protocol formula:
where \(g(\gamma)\) is the strain measure function (linear for Hookean, nonlinear for FENE). The specific deformation history \(\gamma(t,t')\) depends on the protocol:
Flow curve: \(\gamma(t,t') = \dot{\gamma}(t - t')\), steady integral
Startup: Integrate from \(t' = 0\) to \(t\) (chains born after flow onset)
Relaxation: \(\gamma(t,t') = \gamma_0\) for \(t' < 0\) (step strain)
Creep: Solve inverse problem for \(\dot{\gamma}(t)\) given constant stress
SAOS/LAOS: \(\gamma(t,t') = \gamma(t) - \gamma(t')\), Fourier analysis
Cohort Method — Numerical Template¶
The integral (cohort) formulation can be discretized for numerical evaluation, providing an alternative to ODE integration that is particularly suited for complex histories:
Algorithm:
Discretize time: \(t_0, t_1, \ldots, t_N\) with \(\Delta t = t_{i+1} - t_i\)
At each time step \(t_n\), maintain cohort weights \(w_j\) for \(j = 0, 1, \ldots, n\)
Update survival: \(w_j \leftarrow w_j \cdot \exp(-k_d(t_n) \cdot \Delta t)\)
Add new cohort: \(w_n = \beta(t_n) \cdot \Delta t\)
Compute stress: \(\tau(t_n) = G \sum_{j=0}^{n} w_j \cdot g(\gamma(t_n, t_j))\)
JAX implementation sketch:
def cohort_stress(t_eval, gamma_history, params):
G, tau_b, nu = params['G'], params['tau_b'], params['nu']
dt = t_eval[1] - t_eval[0]
n_steps = len(t_eval)
def scan_fn(weights, i):
# Decay existing cohorts
k_d = 1.0 / tau_b # constant breakage; generalize for Bell
weights = weights * jnp.exp(-k_d * dt)
# Add new cohort
weights = weights.at[i].set((1.0 / tau_b) * dt)
# Compute strain measures relative to current time
gamma_rel = gamma_history[i] - gamma_history[:n_steps]
# Stress superposition
stress = G * jnp.sum(weights[:i+1] * gamma_rel[:i+1])
return weights, stress
weights_init = jnp.zeros(n_steps)
_, stresses = jax.lax.scan(scan_fn, weights_init, jnp.arange(n_steps))
return stresses
This cohort approach complements the Diffrax ODE solver. The ODE approach is generally preferred for smooth deformation histories, while the cohort method excels for discontinuous histories (e.g., sequences of step strains, multi-step creep).
Flow Curve (Steady Shear)¶
Constant Breakage (TNTBase)¶
At steady state, \(d\mathbf{S}/dt = 0\). For the upper-convected Maxwell model (constant \(\tau_b\)), the steady-state solution is:
Shear stress (Newtonian):
where \(\eta_0 = G\tau_b + \eta_s\) is the zero-shear viscosity.
First normal stress difference (quadratic in \(\dot{\gamma}\)):
Second normal stress difference:
Key insight: The base TNT model is Newtonian in steady shear but shows elastic effects (normal stresses, transient overshoots). Shear thinning requires additional physics.
Bell Breakage (TNTBell)¶
With force-dependent breakage:
where \(\nu \geq 0\) is the force sensitivity parameter.
At steady state, \(\tau_b\) depends on \(\mathbf{S}\), which depends on \(\tau_b\). The steady-state equations become implicit:
These are solved via numerical root-finding (e.g., fixed-point iteration or Newton’s method).
Shear thinning behavior:
Low \(\dot{\gamma}\): \(\tau_b \approx \tau_0 \exp(-\nu\sqrt{3})\) → Newtonian plateau
High \(\dot{\gamma}\): Chains stretch → \(\tau_b\) decreases → viscosity drops
Viscosity curve:
Power-law exponent \(n\) in \(\eta \sim \dot{\gamma}^{n-1}\) depends on \(\nu\).
FENE Correction (TNTFene)¶
The FENE stress function modifies stress but not the steady-state \(\mathbf{S}\) (evolution unchanged):
At high stretch (\(\text{tr}(\mathbf{S}) \to L_{max}^2\)), the stress diverges, leading to:
Stress upturn at high \(\dot{\gamma}\) (strain hardening)
Limited extensibility prevents infinite chain stretch
Combined TNTBellFene: Bell breakage gives shear thinning at low \(\dot{\gamma}\), FENE gives upturn at high \(\dot{\gamma}\).
Non-Affine Slip (TNTNonAffine)¶
The Gordon-Schowalter derivative replaces \(\boldsymbol{\kappa}\) with:
where \(0 \leq \xi \leq 1\) is the slip parameter:
\(\xi = 0\): Upper-convected (affine)
\(\xi = 1\): Lower-convected (significant slip)
Effect: Slip reduces chain stretching → reduces \(S_{xx}\) → shear thinning in steady state even with constant \(\tau_b\).
Multi-Mode Models (StickyRouse, MultiSpecies)¶
For polydisperse or multi-segment networks:
Each mode \(k\) has its own \((G_k, \tau_k)\) and evolves independently.
Steady-state flow curve (sum of Newtonian contributions if no Bell/slip):
Normal stress:
Small-Amplitude Oscillatory Shear (SAOS)¶
Linearization¶
For small strain amplitude \(\gamma_0 \ll 1\), the TNT models linearize around \(\mathbf{S} = \mathbf{I}\). The linearized evolution is independent of variant (Bell, FENE, slip effects vanish at small amplitude).
All TNT variants reduce to the single-mode Maxwell model in SAOS:
Substituting into the evolution equation and linearizing:
Solving for the complex modulus:
Storage and Loss Moduli¶
where:
\(G'\) is the storage modulus (elastic)
\(G''\) is the loss modulus (viscous)
Solvent contributes \(\eta_s \omega\) to \(G''\) only
Complex modulus magnitude:
Loss tangent:
Limiting Behavior¶
Low frequency (\(\omega \tau_b \ll 1\), terminal regime):
High frequency (\(\omega \tau_b \gg 1\), glassy plateau):
Crossover frequency (\(\omega^* = 1/\tau_b\)):
Multi-Mode SAOS (StickyRouse, MultiSpecies)¶
For \(N\) modes, the moduli are additive:
StickyRouse spectrum (\(N\) Rouse modes):
This gives a broadened relaxation spectrum compared to single-mode.
Stress Relaxation¶
Step Strain Protocol¶
At \(t = 0\), a step strain \(\gamma_0\) is applied, then held constant (\(\dot{\gamma} = 0\) for \(t > 0\)). The stress relaxes due to breakage.
Initial condition: \(\mathbf{S}(0) = \mathbf{I} + \gamma_0 \mathbf{S}_{simple}\)
For small \(\gamma_0\), the off-diagonal component is \(S_{xy}(0) = \gamma_0\).
Constant Breakage (Analytical)¶
For constant \(\tau_b\), the relaxation is exponential:
Relaxation modulus:
Zero-shear viscosity (integral of \(G(t)\)):
Multi-Mode Relaxation¶
For multi-mode models:
This is a discrete relaxation spectrum, represented as a Prony series.
Broad spectrum: StickyRouse with \(\tau_k = \tau_0/k^2\) gives \(G(t) \sim t^{-1/2}\) at intermediate times (Rouse scaling).
Bell Breakage (ODE Solution)¶
For TNTBell, \(\tau_b\) depends on the current conformation \(\mathbf{S}(t)\), which evolves during relaxation:
The relaxation is non-exponential and requires solving the ODE:
Numerical solution: Use Diffrax with adaptive stepping.
Effect of :math:`nu`: Higher force sensitivity → faster relaxation at early times (chains stretched, \(\tau_b\) small), slower at late times (approaching equilibrium).
FENE Relaxation¶
FENE stress function gives:
Even if \(S_{xy}(t)\) relaxes exponentially, the stress relaxes faster due to the FENE prefactor decreasing with \(\text{tr}(\mathbf{S})\).
Startup Flow¶
Protocol Description¶
Starting from equilibrium (\(\mathbf{S} = \mathbf{I}\), no stress), a constant shear rate \(\dot{\gamma}\) is applied at \(t = 0\).
The 4-component ODE is solved forward in time:
The shear stress \(\sigma(t)\) is computed at each timestep.
Constant Breakage (Analytical)¶
For TNTBase (constant \(\tau_b\)), the startup stress has an analytical solution:
Simplifying:
Limiting behavior:
\(t \ll \tau_b\): \(\sigma \approx (\eta_0 + \eta_s) \dot{\gamma} t\) (linear growth, elastic)
\(t \gg \tau_b\): \(\sigma \to \eta_0 \dot{\gamma}\) (steady state)
No overshoot for constant breakage (monotonic approach to steady state).
Bell Breakage (Stress Overshoot)¶
For TNTBell, the stress typically shows an overshoot before settling to steady state:
Initial elastic response: \(\tau_b \approx \tau_0\) (unperturbed), stress builds rapidly
Peak stress: Chains stretch → \(\tau_b\) decreases → stress growth slows
Overshoot: Maximum stress at strain \(\gamma_{peak} = \dot{\gamma} t_{peak}\) (typically \(\gamma_{peak} \sim 1-3\))
Relaxation to steady state: Stress decreases as breakage accelerates
Overshoot characteristics:
Peak strain: Decreases with \(\nu\) (higher force sensitivity → earlier peak)
Overshoot amplitude: Increases with \(Wi = \tau_b \dot{\gamma}\) (Weissenberg number)
Shear thinning: Steady-state viscosity lower than initial
Damping function:
This is the transient viscosity, showing overshoot and relaxation.
FENE Effect (Strain Hardening)¶
FENE stress function causes stress upturn at large strain:
As \(\text{tr}(\mathbf{S}) \to L_{max}^2\), the prefactor diverges → finite-time blowup if strain continues unbounded.
Practical limit: FENE prevents infinite stretch, but very large \(\dot{\gamma}\) can cause numerical stiffness.
Multi-Mode Startup¶
For StickyRouse or MultiSpecies:
Each mode evolves independently (no coupling). Fast modes (\(\tau_k\) small) reach steady state quickly, slow modes continue building stress.
Broadened overshoot: Multiple peaks or shoulder in \(\sigma(t)\) if modes have disparate timescales.
Creep¶
Protocol Description¶
A constant shear stress \(\sigma_0\) is applied at \(t = 0\), and the resulting strain \(\gamma(t)\) is measured.
Governing equations: The strain \(\gamma\) becomes the 5th state variable (appended to \(\mathbf{S}\)). The constraint is:
Solving for the shear rate:
Requirements:
\(\eta_s > 0\) (non-zero solvent viscosity) for well-posed ODE
Initial condition: \(\mathbf{S}(0) = \mathbf{I}\), \(\gamma(0) = 0\)
Creep Compliance¶
The creep compliance is:
For a Maxwell model (constant \(\tau_b\)):
Two regimes:
Transient creep: \(J(t) \sim t/G\) (elastic recovery)
Steady-state creep: \(J(t) \sim t/\eta_0\) (viscous flow)
The steady-state creep rate is:
Numerical Solution¶
For Bell or FENE variants, the creep compliance is non-linear and requires solving the 5-component ODE system:
Numerical challenges:
Stiffness: If \(\eta_s \ll G\tau_b\), the ODE is stiff → use implicit solver (Kvaerno3 or Kvaerno5 in Diffrax)
Steady-state detection: Stop integration when \(|\dot{\gamma}(t) - \dot{\gamma}_{ss}| < \epsilon\)
Yielding and Viscosity Bifurcation¶
For TNTBell, if \(\sigma_0\) is below a critical stress \(\sigma_c\), the creep rate may be very slow (yielding behavior).
Effective yield stress (approximate):
For \(\sigma_0 < \sigma_c\), the material creeps very slowly (glassy regime). For \(\sigma_0 > \sigma_c\), it flows readily.
Large-Amplitude Oscillatory Shear (LAOS)¶
Protocol Description¶
The applied strain is oscillatory:
The shear rate is:
This is substituted into the velocity gradient \(\boldsymbol{\kappa}_{xy} = \dot{\gamma}(t)\), and the 4-component ODE is solved over multiple cycles.
Periodic Steady State¶
The transient response (first 2-3 cycles) is discarded. The system reaches a periodic steady state after ~5-10 cycles for most TNT variants.
Stress response in periodic steady state:
where \(T = 2\pi/\omega\) is the period.
Nonlinear Response¶
For small \(\gamma_0\), the response is linear (SAOS). For large \(\gamma_0\), the stress waveform becomes distorted (non-sinusoidal).
Fourier decomposition:
where:
\(n = 1\): Fundamental (linear response)
\(n = 3, 5, \ldots\): Higher harmonics (nonlinearity)
Nonlinear moduli (Cho et al. 2005):
Third harmonic intensity:
Large \(I_3\) indicates strong nonlinearity.
Lissajous Curves¶
The Lissajous curve plots \(\sigma\) vs \(\gamma\) (elastic Lissajous) or \(\sigma\) vs \(\dot{\gamma}\) (viscous Lissajous).
Linear response: Perfect ellipse
Nonlinear response: Distorted loop (rectangular, S-shaped, etc.)
Pipkin Diagram¶
LAOS behavior is often summarized in a Pipkin diagram (\(\gamma_0\) vs \(\omega\)):
Linear regime: \(\gamma_0 < 0.1\), \(I_3/I_1 < 0.01\)
Weak nonlinearity: \(0.1 < \gamma_0 < 1\), higher harmonics emerge
Strong nonlinearity: \(\gamma_0 > 1\), cage-breaking, yielding
Bell Breakage in LAOS¶
For TNTBell, LAOS at large \(\gamma_0\) shows:
Strain thinning: \(G'_1(\gamma_0)\) decreases with \(\gamma_0\)
Intra-cycle softening: \(\tau_b\) decreases during high-strain portions of cycle
Strong 3rd harmonic: Asymmetric stress response
FENE in LAOS¶
FENE stress function gives:
Strain hardening: \(G'_1\) increases at very large \(\gamma_0\) (approaching \(L_{max}\))
Intracycle stiffening: Chains near maximum extension
Integration Strategy¶
Diffrax settings:
Integrate over \(10-20\) cycles
Discard first \(2-3\) cycles (transient)
Extract last \(3-5\) cycles for analysis
Use adaptive stepping (Tsit5 or Dopri5)
\(\text{rtol} = 10^{-6}\), \(\text{atol} = 10^{-8}\)
Harmonic extraction: Apply FFT or trapezoidal integration for Fourier coefficients.
Numerical Methods¶
ODE Integration with Diffrax¶
All transient protocols (STARTUP, CREEP, RELAXATION, LAOS) use Diffrax, a JAX-native ODE solver library.
General structure:
from diffrax import diffeqsolve, Tsit5, ODETerm, SaveAt
def ode_fn(t, state, args):
S, gamma = state # unpack state
S_dot = compute_dS_dt(S, gamma_dot, args)
gamma_dot = compute_dgamma_dt(S, sigma_0, args)
return jnp.concatenate([S_dot, gamma_dot])
solution = diffeqsolve(
ODETerm(ode_fn),
solver=Tsit5(),
t0=0.0, t1=t_end, dt0=0.01,
y0=initial_state,
saveat=SaveAt(ts=t_eval),
args=params,
rtol=1e-6, atol=1e-8
)
Solver choices:
Tsit5: 5th-order Runge-Kutta (explicit, general-purpose)
Dopri5: Dormand-Prince (similar to Tsit5, MATLAB’s ode45)
Kvaerno3/5: Implicit, for stiff problems (creep with small \(\eta_s\))
Adaptive Timestepping¶
Diffrax automatically adjusts \(dt\) based on error estimates:
rtol: Relative tolerance (default \(10^{-6}\))
atol: Absolute tolerance (default \(10^{-8}\))
Dense output: Use SaveAt(ts=t_eval) to evaluate at specific times
without interpolation error.
Multi-Mode Parallelization¶
For StickyRouse and MultiSpecies, each mode \(k\) evolves independently. Use \(\texttt{jax.vmap}\) to solve all modes in parallel:
# Vectorized over N modes
def solve_mode(G_k, tau_k):
return diffeqsolve(...)
results = jax.vmap(solve_mode)(G_modes, tau_modes)
GPU acceleration: All \(N\) modes solved simultaneously on GPU (massive speedup for \(N > 10\)).
Stiffness and Implicit Solvers¶
Stiff problems occur when:
\(\eta_s \ll G\tau_b\) (creep)
Bell breakage with large \(\nu\) (rapid timescale changes)
FENE near \(L_{max}\) (diverging stress)
Solution: Use Kvaerno3 or Kvaerno5 (L-stable implicit methods):
from diffrax import Kvaerno5
solution = diffeqsolve(
ODETerm(ode_fn),
solver=Kvaerno5(),
...
)
Cost: Implicit solvers require Jacobian evaluations → slower per step, but take larger stable steps.
Precompilation and JIT¶
All ODE functions are JIT-compiled via \(\texttt{@jax.jit}\):
@jax.jit
def solve_startup(gamma_dot, params):
return diffeqsolve(...)
First call: Compilation overhead (~10-60 seconds)
Subsequent calls: Near-instant execution
Memory: Compiled functions cached by JAX (beware of memory growth with many parameter sets).
Numerical Stability¶
Common issues:
FENE divergence: Clip \(\text{tr}(\mathbf{S})\) to \(0.99 L_{max}^2\) to prevent division by zero
Negative eigenvalues: \(\mathbf{S}\) should remain positive-definite; project onto SPD cone if needed
Overflow: Use \(\texttt{jnp.clip}\) on \(\tau_b\) for Bell breakage with large \(\nu\)
Validation:
Check mass balance: \(\text{tr}(\mathbf{S}) > 0\)
Check symmetry: \(S_{xy} = S_{yx}\) (automatic in 2D reduction)
Compare to analytical solutions (constant breakage, SAOS)
Variant × Protocol Effect Matrix¶
Summary of the dominant physical effect each variant introduces for each protocol. All variants reduce to the base Tanaka-Edwards (constant breakage) prediction in the linear limit (\(\gamma_0 \ll 1\)).
Protocol |
Constant |
Bell |
FENE |
NonAffine |
StretchCreate |
LoopBridge |
Cates |
MultiSpecies |
|---|---|---|---|---|---|---|---|---|
Flow curve |
Newtonian |
Thinning |
Saturation |
\(N_2 \neq 0\) |
Thickening |
\(f_B\)-dependent |
Non-monotonic |
Multi-rate |
SAOS |
Maxwell |
Maxwell |
Maxwell |
Maxwell |
Maxwell |
Reduced \(G\) |
Cole-Cole |
Multi-mode |
Startup |
Monotonic |
Overshoot |
Stiffening |
Overshoot |
Thickening |
Two timescales |
Large overshoot |
Staged |
Relaxation |
Exponential |
Strain-dep \(\tau\) |
\(f\)-dep decay |
Faster decay |
Slow (hardening) |
Bridge recovery |
Stretched exp |
Multi-exp |
Creep |
Viscous flow |
Yielding |
Saturation |
Faster flow |
Ringing |
\(f_B\) collapse |
Banding |
Staged flow |
LAOS |
Sinusoidal |
Odd harmonics |
Box Lissajous |
\(N_2\) signal |
Hardening |
Asymmetric |
Plateau |
Multi-timescale |
See TNT Knowledge Extraction Guide for guidance on using these signatures to identify the appropriate variant from experimental data.
See Also¶
TNT Tanaka-Edwards (Basic Transient Network) — Handbook - Constant breakage rate (upper-convected Maxwell)
TNT Bell (Force-Dependent Breakage) — Handbook - Force-dependent breakage (shear thinning)
TNT FENE-P (Finite Extensibility) — Handbook - Finite extensibility (strain hardening)
TNT Stretch-Creation (Enhanced Reformation) — Handbook - Combined Bell and FENE
TNT Non-Affine (Gordon-Schowalter) — Handbook - Gordon-Schowalter slip
TNT Sticky Rouse (Multi-Mode Sticker Dynamics) — Handbook - Multi-mode Rouse model
TNT Multi-Species (Multiple Bond Types) — Handbook - Polydisperse network
External References:
Tanaka & Edwards (1992): Original TNT formulation
Inkson et al. (1999): Bell breakage kinetics
Bird et al. (1987): FENE stress function
Cho et al. (2005): LAOS nonlinear analysis
RheoJAX Documentation: ../bayesian_inference, ../optimization
References¶
Tanaka, F., & Edwards, S. F. (1992). Viscoelastic properties of physically crosslinked networks: Transient network theory. Macromolecules, 25(5), 1516-1523. DOI: 10.1021/ma00031a024
Inkson, N. J., McLeish, T. C. B., Harlen, O. G., & Groves, D. J. (1999). Predicting low density polyethylene melt rheology in elongational and shear flows with “pom-pom” constitutive equations. Journal of Rheology, 43(4), 873-896. DOI: 10.1122/1.551036
Bird, R. B., Curtiss, C. F., Armstrong, R. C., & Hassager, O. (1987). Dynamics of Polymeric Liquids, Volume 2: Kinetic Theory (2nd ed.). Wiley. ISBN: 978-0471802440
Phan-Thien, N., & Tanner, R. I. (1977). A new constitutive equation derived from network theory. Journal of Non-Newtonian Fluid Mechanics, 2(4), 353-365. DOI: 10.1016/0377-0257(77)80021-9
Cho, K. S., Hyun, K., Ahn, K. H., & Lee, S. J. (2005). A geometrical interpretation of large amplitude oscillatory shear response. Journal of Rheology, 49(3), 747-758. DOI: 10.1122/1.1895801
Ewoldt, R. H., Hosoi, A. E., & McKinley, G. H. (2008). New measures for characterizing nonlinear viscoelasticity in large amplitude oscillatory shear. Journal of Rheology, 52(6), 1427-1458. DOI: 10.1122/1.2970095
Doi, M., & Edwards, S. F. (1986). The Theory of Polymer Dynamics. Oxford University Press. ISBN: 978-0198519768
Rubinstein, M., & Colby, R. H. (2003). Polymer Physics. Oxford University Press. ISBN: 978-0198520597
Larson, R. G. (1999). The Structure and Rheology of Complex Fluids. Oxford University Press. ISBN: 978-0195121971
Macosko, C. W. (1994). Rheology: Principles, Measurements, and Applications. Wiley-VCH. ISBN: 978-0471185758