summaryrefslogtreecommitdiff
path: root/764/CH7/EX7.19.c/functions7_19.sci
blob: b53d32df5c89b779fcfa5a22e37da42a2293ae6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48

//Function generating the values of Ka, Kb and Kc
function [Ka, Kb, Kc] = fluctuate(s, d, r)
    //Calculate Ka
    //Nomenclature: 
    //1 - Ground
    //2 - Machined or cold drawn
    //3 - Hot-rolled
    //4 - Forged
surface = [1 2 3 4]
Ksurfa = [1.58 4.51 57.7 272] 
Ksurfb = [-0.085 -0.265 -0.718 -0.995]
for j = 1:1:4
    if (s == surface(j))
        a = Ksurfa(j)
        b = Ksurfb(j)
        break
    end
end
//From equation 5.18 on page 157
Ka = a * (Sut^b)
if (Ka > 1) then
    Ka = 1
end

    //Calculate Kb
    //d (mm)
    if (d <= 7.5) then
        Kb = 1
    elseif ((d > 7.5) & (d <= 50))
        Kb = 0.85
    elseif (d > 50)
        Kb = 0.75
    else
        printf('Error in Kb')
    end
    
    //Calculate Kc
    // r (%)
rel = [50 90 95 99 99.9 99.99 99.999]
Krel = [1 0.897 0.868 0.814 0.753 0.702 0.659]
for i = 1:1:7
    if (r == rel(i)) then
        Kc = Krel(i)
        break
    end
end
endfunction