| ||||
|
#1
| |||
| |||
| Savitsky Method I'm trying to learn the Savitsky Method as a hobby. I have read the original 1964 paper and the new paper from 2006 wich deals with whisker spray and aerodynamic resistance (http://hudson.dl.stevens-tech.edu/pe...ay%202-28.pdf). I have played with the Dingo's Excel as well. I tried to model my old "racing" boat which is 3.8 m long and has a displacement of about 250 kg (including driver, motor etc.). With 40 hp it reached 48 kn and had a very short and narrow wetted area. I used Dingo Excel, but it gave higher power demands at that speed. In real life I think well over 50 kn would have been possible with a more optimized propeller and much smoother bottom with much sharper edges. The boat was made using an existing boat as a male mold, thus the bottom was far from perfect. It seems that the aerodynamic drag was very much overpredicted (seems to have a Cd of 1.2 inside the Exce)l, but even correcting that didn't really help. Then I realized, that the model assumes the bottom to be wetted for the whole beam at the transom, which can not be the case, since draught is under 5 cm according to the Dingo Excel at 48 kn. A couple of things are not quite clear to me. What should be done at very high Fn, when the chines are completely of the water? Should B be reduced until draught/sin(deadrise) equals B/2? Or should B jump to the spray rail at some point? Both these would need another iteration loop, since draught (and drag, trim etc) depend on B. If B would be in the middle of the bottom (not on chine or spray rail), then the whisker spray resistance would need to be calculated differently. I guess whisker spray resistance is quite important with this boat. What would be a reasonable aerodynamic Cd for a racing boat with a rather long and sharp bow? Certainly 1.2 is not reasonable. Maybe 0.5 or even less? How important are the vertical forces and moments caused by a cleaver propeller? How to calculate them? How should the location and angle of the propeller shaft be given? Giving the actual propeller axis is not adequate, since only about 40% of the propeller touches water. Will aerodynamic lift of the hull be important at these speeds and with a V-bottom? How to approximate the lift coefficient? I'm planning to write my own C-language program for this as I have already done for sailing boats (Delft series based VPP), since I really don't like Excel. Joakim |
|
#2
| ||||
| ||||
| Reasonable Cd for your boat is 0.45/0.5 if the deck is open not more. For an high speed boat of 14/15 m with superstructure, I calculate the wind resistance with a Cd of 0.5. |
|
#3
| |||
| |||
| Joakim, I've been planning to do the same thing myself. I'd suggest going back to Savitsky's original paper and starting from there. Tim B.
__________________ Open Source Marine Charting - openpilot.sourceforge.net Open Source Vessel Dynamics opendynamics.engineering.selfip.org |
|
#4
| |||
| |||
| I have my C-program now quite ready. It includes the original 1964 model, my own aerodynamic model and the whisker spray model from 2006 paper. There are some details missing in the 1964 paper and the results in 2006 paper are a bit confusing. I was able to reproduce the results in 1964 with quite good accuracy, but not exactly (1-5% differences in some variables). The same was true for the 2006 paper results. The trim predicted was within 0.1 degrees, but not exactly the same. Lk and Lc where 1-2% too high with the same trim. The bare hull resistance was within 1%. There were bigger differences (~10%) in the aerodynamic model, since I used a different approach, which takes into account the draught and trim to the frontal area and a lower Cd. The whisker spray resistance was clearly different (up to 100%), but the reason seems to be only in the friction coefficient, which is defined for model scale in the paper. I guess the reason for this is to compare with the (wrong) old full scale prediction and thus the reported whisker spray resistances are wrong in the paper. The detailed comparison with the reported results is very difficult, since there are values missing (e.g. viscosity and density of water) and there seems to be some errors as well (e.g. the reported beam in table 2 is 31.1 ft and LOA 41 ft). Are the porpoising stability curves in the 1964 paper still the most accurate ones or are there better sources? Why is the standard roughness allowance of 0.0004 in Cf used? I included a Cf computed based on the actual roughness of the boat. The actual roughness (in um) equaling delta Cf of 0.0004 varies quite much depending on the the size and speed of the boat, thus I think it is a very poor approximation for planning hulls. Joakim |
|
#5
| |||
| |||
| Cf of .0004 is really just a factor to take into account some typical roughness. For the moment, stick to what savitsky uses, otherwise you'll never get correllation of the results. Are you using floats or doubles in your C code? you may find that using doubles improves the accuracy considerably. Use the "%lf" formatter to read/write them. Do you have a copy of Savitsky's 1964 paper? Tim B.
__________________ Open Source Marine Charting - openpilot.sourceforge.net Open Source Vessel Dynamics opendynamics.engineering.selfip.org |
|
#6
| ||||
| ||||
| Hi Joakim, I can't answer any of your questions I'm afraid. It's been a long time since I've looked at Savitsky closely, but I do remeber that the Centre of Pressure equation, Cp = 0.75 - 1/((5.21Cv^2/Lamda^2)+2.39) should actually read Cp = 0.75 - 1/((5.236Cv^2/Lamda^2)+2.40) where lamda is length/breadth ratio and Cv is the beamwise Froude number. This could be one source of error in your model. |
|
#7
| |||
| |||
| I think Cf correction of 0.0004 is stupid, thus I don't use it and I also had the Cf model already from my VPP. When comparing the results, I can adjust the roughness to give the same Cf, thus it's not a problem. As an example of this: A rather normal roughness value for an antifouling is 50 um. With this roughness the "roughness allowance" at 30 kn would be ~0.0014 for my race boat, ~0.0007 for a 70-footer in Savitsky 2006 paper and ~0.0004 for 1000 foot ship. In order to have 0.0004 "roughness allowance" for my boat the roughness needs to be about 10 um. I think 0.0004 allowance is only reasonable for displacement speeds. I always use doubles, since there's no penalty from them in modern computers. I have the 1964 paper. Reading the paper it seems, that the example results are taken from the figures and thus not computed and not that accurate. In 2006 paper many details are left unmentioned from the example results. The values of a, f, c and VCG are not given. Maybe it is assumed, that a,f and c are zero and thus VCG is unimportant? Joakim |
|
#8
| |||
| |||
| Out of interest, are you developing under Windows or Linux? and which C compiler are you using? Cheers, Tim B.
__________________ Open Source Marine Charting - openpilot.sourceforge.net Open Source Vessel Dynamics opendynamics.engineering.selfip.org |
|
#9
| |||
| |||
| I'm developing on cygwin or Linux with gcc. Just basic C without any graphics or other system dependent stuff. Maybe I add gtk GUI some day, but I'm more used to work with shell based programs. Can easily be compiled to run on W32 without cygwin. Where does the correction to Cp formula come from? Is that the one used in the 2006 paper? Joakim |
|
#10
| ||||
| ||||
| The correction is simply due to having a calculator these days! If you follow through the original working out, you should end up with the Cp equation I posted, not the one in the paper. There is no modification to the underlying theory, just the accuracy of the calculation. |
|
#11
| |||
| |||
| Quote:
Joakim |
|
#12
| ||||
| ||||
| Quote:
I just thought that might be one possible explanation for your slightly different results. |
|
#13
| |||
| |||
| Quote:
It is a bit annoying to get a somewhat different results. There might always be a bad error, that just doesn't show in these examples. Joakim |
|
#14
| ||||
| ||||
| Slightly Different Method I have posted this request in a different thread, but I will repeat it here. There is a paper on the Small Craft CD by SNAME written by Richard A. Royce entitled "A Rational Prismatic Hull Approach for Planing Boat Analysis". Has anyone used this method? By the way, I have debugged a trim tab error on my spreadsheet and reposted it.
__________________ Dingo Tweedie |
|
#15
| |||
| |||
| Hi Dingo thanks for your spreadsheet and update, i have a question about lewandowski "dynamic roll prediction", basically what is? and what are you actually seeing on the results?, where do you use this results or result? thanks |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Savitsky Power Prediction | guest12020101217 | Software | 132 | 02-21-2012 06:39 AM |
| Daniel Savitsky Textbook | jamesflett | Boat Design | 5 | 11-27-2006 02:59 AM |
| Help SAVITSKY power prediction | chocomono | Boat Design | 21 | 02-14-2006 05:53 AM |
| Help with Savitsky Prediction and shaft inclination | fede | Boat Design | 4 | 06-08-2005 07:08 PM |
| Savitsky correction for waterjets? | nemo | Boat Design | 10 | 05-02-2005 08:00 PM |