We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a45f1dd commit 1ef87caCopy full SHA for 1ef87ca
src/m/materials/paterson.m
@@ -7,6 +7,8 @@
7
% Usage:
8
% rigidity=paterson(temperature)
9
10
+warning('paterson is outdated, please consider using cuffey instead')
11
+
12
if any(temperature<0)
13
error('input temperature should be in Kelvin (positive)');
14
end
src/m/materials/paterson.py
@@ -13,6 +13,8 @@ def paterson(temperature):
rigidity = paterson(temperature)
"""
15
16
+ print('paterson is outdated, please consider using cuffey instead')
17
18
if np.any(temperature < 0.0):
19
raise RuntimeError('input temperature should be in Kelvin (positive)')
20
0 commit comments