You are on page 1of 42

EAMES POWER PREDICTION METHOD

Kıvanç Ali ANIL

The EAMES method is a resistance estimation method that yields results with very few parameters for
warships. These are: length, width, draft, displacement at the waterline and corellation allowance. Wet surface area
is obtained empirically according to these parameters. The method is valid for warships of 1000-6000 tons.

EAMES metodu savaş gemileri için çok az parametre ile sonuç veren bir direnç tahmin yöntemidir. Bunlar: Su
hattındaki boy, en, draft, deplasman ve korelasyon katsayısıdır. Islak su yüzeyi alanı amprik yolla bu parametrelere
göre elde edilmektedir. Bahse konu yöntem 1000-6000 tonluk savaş gemileri için geçerlidir.

MATLAB CODE FOR EAMES METHOD

The tables in the MATLAB code were obtained by reading the curves in the original article. The code is open
to development.

MATLAB kodundaki tablolar orjinal makaledeki eğrilerden okunarak elde edilmiştir. Kod geliştirilmeye açıktır.

% Kivanc Ali ANIL, 2009


%
clear, clc, close all

RHO = 1025 ; % Seawater Density (SU YOGUNLUGU), kg/m^2


NuSW = 1.1882E-06; % Seawater Viscosity (SU VIZKOZITESI), m^2/sec
GRAV = 9.81; % acceleration of gravity (m/sec^2)
%--------------------------------------------------------------------------
L = 132.15; % m
B = 17.66; % m
T = 5.5; % m
DISP = 6531 ; % Displacement (DEPLASMAN TONAJI), metric ton
VK_dat = [7 11 15 17 19 21 23 24 25 26 27 28 29 30 31 32 33]; % kts
CA = 0.000456;
%--------------------------------------------------------------------------
PE = zeros(1,length(VK_dat));
RT = zeros(1,length(VK_dat));
for i = 1:length(VK_dat)
VK = VK_dat(i);
NABLA = 1000*DISP/RHO; % m^3
RN = .5144444*VK*L/NuSW ; % Reynolds #
FN = .5144444*VK/(GRAV*L)^.5 ; % Froude #
CF = .075./(log10(RN)-2).^2; % Frictional Resistance Coefficient
SS = 1.7*L*T+NABLA/T; % m^3
RF = (CF+CA)*0.5* RHO * SS * (.5144444*VK)^2; % (N)
BT = B/T;
M = L/NABLA^(1/3);
%--------------------------------------------------------------------------
M_tab = 6:.25:9;
FN_tab = .2:.025:1.15;
BT_tab = [3 3.5 4];
%--------------------------------------------------------------------------
BT30_tab = [...
0.0705 0.0696 0.0688 0.0677 0.0667 0.0658 0.0651 0.0642 0.0635 0.0629 0.0618 0.0609 0.0602
0.0731 0.0720 0.0710 0.0700 0.0691 0.0684 0.0672 0.0654 0.0642 0.0639 0.0629 0.0623 0.0614
0.0763 0.0749 0.0735 0.0724 0.0716 0.0707 0.0693 0.0675 0.0664 0.0654 0.0642 0.0635 0.0625
0.0801 0.0784 0.0770 0.0754 0.0742 0.0733 0.0720 0.0702 0.0686 0.0677 0.0663 0.0651 0.0639
0.0842 0.0826 0.0810 0.0794 0.0780 0.0766 0.0752 0.0731 0.0716 0.0702 0.0684 0.0672 0.0656
0.0898 0.0878 0.0859 0.0842 0.0824 0.0807 0.0793 0.0770 0.0753 0.0733 0.0713 0.0695 0.0677
0.0980 0.0954 0.0929 0.0905 0.0882 0.0861 0.0840 0.0819 0.0798 0.0774 0.0747 0.0725 0.0702
0.1108 0.1076 0.1043 0.1006 0.0980 0.0945 0.0919 0.0885 0.0857 0.0824 0.0791 0.0763 0.0734
0.1309 0.1267 0.1228 0.1176 0.1130 0.1064 0.1020 0.0983 0.0941 0.0891 0.0852 0.0810 0.0770
0.1552 0.1489 0.1423 0.1345 0.1280 0.1206 0.1139 0.1080 0.1024 0.0973 0.0913 0.0859 0.0805
0.1757 0.1656 0.1556 0.1445 0.1354 0.1279 0.1199 0.1136 0.1066 0.1006 0.0940 0.0882 0.0822
0.1869 0.1727 0.1610 0.1489 0.1386 0.1295 0.1220 0.1146 0.1071 0.1008 0.0936 0.0880 0.0822
0.1890 0.1738 0.1608 0.1493 0.1384 0.1284 0.1211 0.1127 0.1057 0.0987 0.0915 0.0863 0.0808
0.1867 0.1694 0.1571 0.1458 0.1353 0.1246 0.1176 0.1098 0.1022 0.0954 0.0880 0.0834 0.0780
0.1813 0.1634 0.1514 0.1398 0.1298 0.1199 0.1123 0.1048 0.0982 0.0908 0.0842 0.0800 0.0745
0.1746 0.1571 0.1451 0.1333 0.1237 0.1143 0.1071 0.0999 0.0936 0.0866 0.0805 0.0761 0.0714
0.1666 0.1505 0.1387 0.1269 0.1179 0.1088 0.1017 0.0952 0.0889 0.0828 0.0770 0.0730 0.0680
0.1587 0.1438 0.1320 0.1212 0.1115 0.1032 0.0969 0.0903 0.0849 0.0792 0.0735 0.0698 0.0653
0.1508 0.1370 0.1254 0.1154 0.1057 0.0982 0.0919 0.0859 0.0808 0.0754 0.0703 0.0668 0.0625
0.1423 0.1300 0.1193 0.1094 0.1000 0.0936 0.0873 0.0821 0.0770 0.0719 0.0672 0.0637 0.0595
0.1344 0.1230 0.1130 0.1034 0.0950 0.0891 0.0833 0.0780 0.0734 0.0685 0.0640 0.0604 0.0569
0.1262 0.1160 0.1069 0.0985 0.0906 0.0849 0.0793 0.0740 0.0700 0.0652 0.0612 0.0579 0.0544
0.1185 0.1085 0.1012 0.0932 0.0861 0.0812 0.0754 0.0705 0.0667 0.0625 0.0584 0.0556 0.0523
0.1112 0.1021 0.0955 0.0887 0.0822 0.0770 0.0720 0.0670 0.0632 0.0591 0.0558 0.0534 0.0504
0.1043 0.0962 0.0906 0.0845 0.0784 0.0733 0.0688 0.0639 0.0602 0.0565 0.0535 0.0514 0.0485
0.0983 0.0912 0.0862 0.0808 0.0749 0.0700 0.0660 0.0609 0.0575 0.0542 0.0514 0.0493 0.0465
0.0934 0.0870 0.0824 0.0772 0.0721 0.0675 0.0632 0.0583 0.0551 0.0520 0.0495 0.0478 0.0451
0.0891 0.0835 0.0789 0.0738 0.0691 0.0647 0.0607 0.0560 0.0528 0.0500 0.0478 0.0462 0.0440
0.0856 0.0803 0.0760 0.0714 0.0670 0.0625 0.0584 0.0542 0.0509 0.0483 0.0464 0.0450 0.0430
0.0822 0.0777 0.0730 0.0689 0.0646 0.0602 0.0565 0.0525 0.0494 0.0469 0.0450 0.0437 0.0420
0.0796 0.0752 0.0707 0.0667 0.0625 0.0581 0.0548 0.0511 0.0480 0.0455 0.0437 0.0425 0.0411
0.0777 0.0733 0.0688 0.0647 0.0605 0.0565 0.0534 0.0499 0.0467 0.0444 0.0429 0.0416 0.0404
0.0756 0.0714 0.0668 0.0630 0.0588 0.0549 0.0520 0.0486 0.0455 0.0437 0.0420 0.0408 0.0399
0.0740 0.0700 0.0651 0.0614 0.0574 0.0539 0.0506 0.0474 0.0446 0.0429 0.0413 0.0402 0.0394
0.0726 0.0686 0.0637 0.0600 0.0562 0.0527 0.0493 0.0464 0.0437 0.0423 0.0404 0.0397 0.0387
0.0716 0.0675 0.0626 0.0588 0.0551 0.0516 0.0483 0.0457 0.0429 0.0416 0.0400 0.0394 0.0385
0.0707 0.0665 0.0612 0.0577 0.0541 0.0507 0.0472 0.0450 0.0423 0.0409 0.0397 0.0392 0.0385
0.0705 0.0658 0.0604 0.0567 0.0530 0.0499 0.0467 0.0443 0.0420 0.0406 0.0395 0.0392 0.0387
0.0702 0.0653 0.0600 0.0562 0.0523 0.0492 0.0460 0.0440 0.0415 0.0404 0.0395 0.0392 0.0387];
%--------------------------------------------------------------------------
BT35_tab = [...
0.0720 0.0711 0.0702 0.0695 0.0688 0.0681 0.0674 0.0665 0.0658 0.0651 0.0644 0.0640 0.0634
0.0757 0.0747 0.0737 0.0726 0.0717 0.0710 0.0699 0.0687 0.0675 0.0667 0.0658 0.0650 0.0640
0.0802 0.0791 0.0775 0.0764 0.0752 0.0740 0.0726 0.0713 0.0697 0.0684 0.0672 0.0660 0.0648
0.0861 0.0841 0.0823 0.0807 0.0791 0.0771 0.0757 0.0739 0.0723 0.0707 0.0691 0.0676 0.0659
0.0920 0.0899 0.0876 0.0857 0.0836 0.0811 0.0793 0.0771 0.0749 0.0733 0.0714 0.0695 0.0674
0.0989 0.0965 0.0942 0.0916 0.0891 0.0866 0.0841 0.0817 0.0792 0.0766 0.0744 0.0720 0.0697
0.1078 0.1046 0.1022 0.0985 0.0958 0.0928 0.0898 0.0867 0.0835 0.0807 0.0780 0.0752 0.0725
0.1190 0.1151 0.1115 0.1080 0.1049 0.1010 0.0969 0.0937 0.0892 0.0855 0.0824 0.0793 0.0758
0.1346 0.1292 0.1244 0.1203 0.1155 0.1115 0.1063 0.1014 0.0966 0.0920 0.0879 0.0839 0.0804
0.1599 0.1496 0.1418 0.1355 0.1288 0.1222 0.1160 0.1109 0.1045 0.0987 0.0932 0.0883 0.0829
0.1837 0.1686 0.1575 0.1464 0.1365 0.1290 0.1215 0.1153 0.1085 0.1018 0.0955 0.0895 0.0840
0.1939 0.1779 0.1642 0.1515 0.1408 0.1317 0.1233 0.1162 0.1093 0.1020 0.0955 0.0897 0.0840
0.1964 0.1801 0.1658 0.1522 0.1411 0.1320 0.1227 0.1150 0.1082 0.1008 0.0945 0.0887 0.0835
0.1948 0.1767 0.1631 0.1496 0.1392 0.1299 0.1203 0.1124 0.1053 0.0987 0.0925 0.0869 0.0819
0.1894 0.1705 0.1570 0.1443 0.1345 0.1254 0.1157 0.1085 0.1019 0.0953 0.0895 0.0841 0.0791
0.1813 0.1624 0.1491 0.1385 0.1286 0.1192 0.1103 0.1034 0.0971 0.0910 0.0855 0.0813 0.0762
0.1711 0.1539 0.1415 0.1317 0.1217 0.1125 0.1045 0.0983 0.0920 0.0867 0.0819 0.0778 0.0733
0.1608 0.1462 0.1347 0.1249 0.1153 0.1062 0.0991 0.0932 0.0873 0.0826 0.0780 0.0744 0.0697
0.1511 0.1389 0.1279 0.1181 0.1094 0.1001 0.0941 0.0883 0.0827 0.0785 0.0748 0.0707 0.0671
0.1420 0.1315 0.1208 0.1116 0.1033 0.0945 0.0888 0.0836 0.0785 0.0747 0.0715 0.0679 0.0642
0.1341 0.1248 0.1141 0.1053 0.0975 0.0894 0.0843 0.0794 0.0749 0.0711 0.0682 0.0651 0.0615
0.1264 0.1174 0.1075 0.0995 0.0918 0.0846 0.0801 0.0755 0.0715 0.0679 0.0654 0.0619 0.0590
0.1186 0.1112 0.1016 0.0941 0.0873 0.0808 0.0762 0.0722 0.0684 0.0652 0.0624 0.0596 0.0568
0.1124 0.1049 0.0962 0.0893 0.0833 0.0771 0.0729 0.0695 0.0657 0.0626 0.0601 0.0571 0.0547
0.1063 0.0993 0.0915 0.0853 0.0797 0.0739 0.0697 0.0667 0.0630 0.0605 0.0579 0.0552 0.0527
0.1010 0.0945 0.0875 0.0820 0.0764 0.0711 0.0671 0.0642 0.0608 0.0585 0.0559 0.0534 0.0512
0.0970 0.0903 0.0838 0.0787 0.0735 0.0686 0.0648 0.0620 0.0591 0.0568 0.0542 0.0519 0.0497
0.0932 0.0868 0.0810 0.0761 0.0709 0.0666 0.0626 0.0601 0.0572 0.0551 0.0529 0.0504 0.0484
0.0898 0.0836 0.0784 0.0739 0.0687 0.0644 0.0609 0.0585 0.0559 0.0537 0.0516 0.0492 0.0469
0.0866 0.0811 0.0759 0.0717 0.0670 0.0626 0.0594 0.0569 0.0547 0.0528 0.0505 0.0482 0.0457
0.0841 0.0788 0.0738 0.0700 0.0652 0.0613 0.0580 0.0558 0.0536 0.0516 0.0496 0.0469 0.0446
0.0822 0.0771 0.0723 0.0683 0.0638 0.0598 0.0568 0.0548 0.0525 0.0508 0.0485 0.0460 0.0440
0.0803 0.0752 0.0708 0.0670 0.0627 0.0589 0.0558 0.0539 0.0516 0.0497 0.0477 0.0453 0.0434
0.0786 0.0737 0.0696 0.0660 0.0616 0.0579 0.0549 0.0531 0.0508 0.0489 0.0470 0.0446 0.0427
0.0772 0.0725 0.0683 0.0650 0.0607 0.0571 0.0540 0.0524 0.0499 0.0480 0.0461 0.0441 0.0423
0.0763 0.0715 0.0674 0.0639 0.0599 0.0566 0.0534 0.0516 0.0493 0.0474 0.0455 0.0436 0.0416
0.0752 0.0706 0.0667 0.0631 0.0592 0.0557 0.0528 0.0509 0.0487 0.0470 0.0450 0.0435 0.0416
0.0744 0.0699 0.0659 0.0622 0.0585 0.0552 0.0524 0.0505 0.0482 0.0465 0.0445 0.0430 0.0413
0.0739 0.0693 0.0653 0.0618 0.0580 0.0548 0.0521 0.0499 0.0478 0.0463 0.0441 0.0427 0.0412];
%--------------------------------------------------------------------------
BT40_tab = [...
0.0733 0.0724 0.0715 0.0709 0.0701 0.0693 0.0687 0.0679 0.0672 0.0666 0.0660 0.0655 0.0647
0.0781 0.0765 0.0755 0.0745 0.0732 0.0723 0.0709 0.0699 0.0690 0.0681 0.0673 0.0665 0.0655
0.0843 0.0820 0.0807 0.0789 0.0769 0.0757 0.0741 0.0727 0.0714 0.0701 0.0688 0.0677 0.0664
0.0910 0.0888 0.0867 0.0843 0.0820 0.0799 0.0777 0.0758 0.0740 0.0726 0.0706 0.0691 0.0674
0.0981 0.0947 0.0922 0.0897 0.0866 0.0844 0.0818 0.0794 0.0771 0.0756 0.0729 0.0709 0.0688
0.1069 0.1025 0.0996 0.0966 0.0925 0.0900 0.0867 0.0837 0.0809 0.0787 0.0758 0.0732 0.0709
0.1162 0.1115 0.1072 0.1036 0.0987 0.0958 0.0914 0.0879 0.0848 0.0820 0.0789 0.0756 0.0728
0.1270 0.1215 0.1168 0.1117 0.1064 0.1023 0.0972 0.0932 0.0889 0.0857 0.0824 0.0790 0.0755
0.1409 0.1348 0.1284 0.1221 0.1160 0.1111 0.1053 0.0999 0.0951 0.0908 0.0865 0.0824 0.0789
0.1642 0.1552 0.1459 0.1366 0.1296 0.1217 0.1147 0.1087 0.1022 0.0964 0.0911 0.0859 0.0812
0.1786 0.1672 0.1569 0.1468 0.1374 0.1287 0.1213 0.1136 0.1065 0.0997 0.0938 0.0878 0.0823
0.1860 0.1736 0.1627 0.1524 0.1419 0.1323 0.1244 0.1161 0.1084 0.1008 0.0944 0.0882 0.0824
0.1874 0.1750 0.1641 0.1534 0.1427 0.1334 0.1244 0.1159 0.1080 0.1004 0.0931 0.0873 0.0818
0.1851 0.1731 0.1622 0.1511 0.1404 0.1319 0.1224 0.1138 0.1055 0.0978 0.0909 0.0854 0.0799
0.1802 0.1682 0.1571 0.1456 0.1359 0.1277 0.1177 0.1093 0.1018 0.0944 0.0884 0.0832 0.0782
0.1728 0.1611 0.1503 0.1393 0.1295 0.1217 0.1123 0.1049 0.0977 0.0910 0.0855 0.0811 0.0762
0.1653 0.1543 0.1430 0.1334 0.1243 0.1163 0.1078 0.1008 0.0943 0.0882 0.0828 0.0786 0.0741
0.1562 0.1456 0.1360 0.1271 0.1185 0.1106 0.1026 0.0963 0.0906 0.0848 0.0802 0.0762 0.0719
0.1480 0.1382 0.1292 0.1211 0.1126 0.1049 0.0980 0.0923 0.0871 0.0814 0.0774 0.0733 0.0697
0.1400 0.1304 0.1230 0.1150 0.1073 0.0995 0.0935 0.0883 0.0836 0.0784 0.0745 0.0712 0.0676
0.1327 0.1239 0.1168 0.1091 0.1021 0.0951 0.0896 0.0845 0.0801 0.0757 0.0721 0.0685 0.0654
0.1259 0.1175 0.1107 0.1037 0.0969 0.0909 0.0858 0.0811 0.0771 0.0729 0.0695 0.0661 0.0633
0.1194 0.1103 0.1044 0.0984 0.0924 0.0869 0.0821 0.0777 0.0741 0.0698 0.0666 0.0638 0.0610
0.1125 0.1039 0.0984 0.0932 0.0874 0.0831 0.0781 0.0743 0.0709 0.0668 0.0642 0.0613 0.0588
0.1059 0.0981 0.0930 0.0887 0.0832 0.0792 0.0748 0.0710 0.0679 0.0641 0.0614 0.0590 0.0562
0.1002 0.0935 0.0890 0.0842 0.0795 0.0756 0.0714 0.0682 0.0650 0.0617 0.0592 0.0568 0.0543
0.0952 0.0895 0.0849 0.0797 0.0756 0.0724 0.0684 0.0654 0.0622 0.0599 0.0573 0.0550 0.0528
0.0912 0.0861 0.0815 0.0764 0.0724 0.0694 0.0661 0.0629 0.0600 0.0577 0.0555 0.0532 0.0512
0.0876 0.0827 0.0783 0.0731 0.0693 0.0670 0.0635 0.0609 0.0578 0.0555 0.0536 0.0518 0.0495
0.0849 0.0796 0.0751 0.0705 0.0667 0.0644 0.0614 0.0587 0.0557 0.0536 0.0517 0.0501 0.0480
0.0822 0.0770 0.0729 0.0681 0.0644 0.0620 0.0595 0.0567 0.0539 0.0518 0.0502 0.0487 0.0465
0.0797 0.0746 0.0705 0.0664 0.0623 0.0601 0.0576 0.0551 0.0524 0.0504 0.0489 0.0475 0.0455
0.0774 0.0729 0.0686 0.0641 0.0606 0.0582 0.0560 0.0534 0.0509 0.0491 0.0474 0.0463 0.0448
0.0757 0.0712 0.0669 0.0626 0.0589 0.0568 0.0543 0.0518 0.0495 0.0476 0.0462 0.0451 0.0439
0.0739 0.0697 0.0651 0.0613 0.0576 0.0554 0.0529 0.0507 0.0483 0.0466 0.0454 0.0443 0.0428
0.0728 0.0682 0.0641 0.0598 0.0563 0.0542 0.0519 0.0495 0.0472 0.0457 0.0444 0.0432 0.0418
0.0716 0.0673 0.0629 0.0589 0.0556 0.0530 0.0508 0.0485 0.0462 0.0450 0.0439 0.0427 0.0412
0.0705 0.0664 0.0622 0.0580 0.0545 0.0522 0.0498 0.0477 0.0456 0.0445 0.0432 0.0420 0.0407
0.0701 0.0659 0.0617 0.0576 0.0543 0.0518 0.0493 0.0471 0.0450 0.0438 0.0426 0.0412 0.0397];
%--------------------------------------------------------------------------
BT30 = interp2(M_tab,FN_tab,BT30_tab,M,FN,'spline');
BT35 = interp2(M_tab,FN_tab,BT35_tab,M,FN,'spline');
BT40 = interp2(M_tab,FN_tab,BT40_tab,M,FN,'spline');
BT_res = [BT30 BT35 BT40];
RRCONS = interp1(BT_tab, BT_res, BT, 'linear');
RR = 1000*GRAV*RRCONS*DISP*FN^2; % (N)
RT(i) = RF+RR;
PE(i) = RT(i)*VK*.5144444/1000; % kW
end
plot(VK_dat, PE,'linewidth',3)
grid
xlabel('\fontsize{20}\bf{V (kts)}');
ylabel('\fontsize{20}\bf{P_E (kW)}');

%REFERENCE
[1] Professor Mike Parsons, Fall 2003 NA470 and NA570 Course Notes
[2] M.C.EAMES, Concept Exploration - An Approach to Small Warship Design, 1975
Professor Mike Parsons,
Fall 2003
NA470 and NA570
Course Notes
M.C.EAMES
Concept Exploration - An
Approach to Small
Warship Design
1975

You might also like