You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Next, we specify the matrix models that will make up our friction model. In this case we only specify the single matrix model `m_equ`, which being of the type `RWCMatrixModel` is based on a row-wise coupling.
20
+
Next, we specify the matrix models that will make up our friction model. In this case we only specify the single matrix model `m_equ`, which being of the type [RWCMatrixModel](@ref) is based on a row-wise coupling. Alternative for building a friction model with a pairwise coupling is provided in [the last of section of this working example](@ref fitting-pairwise-coupling).
21
21
```julia
22
22
property =EuclideanMatrix()
23
23
species_friction = [:H]
@@ -119,4 +119,37 @@ The diffusion coefficient matrix $\Sigma$ can also be used to efficiently genera
119
119
R =randf(fm,Σ)
120
120
```
121
121
122
+
## [Friction Model with a Pairwise Coupling](@id fitting-pairwise-coupling)
123
+
Instead of using a row-wise coupling, we can also use a pairwise coupling to construct a friction model. The following code produces a friction model with a pairwise coupling:
0 commit comments