نتایج جستجو برای: skidding

تعداد نتایج: 310  

Journal: :Forests 2023

Skidders are very cost-effective extraction machines, and winch-assist systems may extend their operating range to increasingly steep terrain. The use of skidder is relatively new, little information available about operational efficiency potential soil impact. A productivity disturbance study was carried out in Southland (New Zealand) gauge the benefits winch assistance by comparing performanc...

2008
Dejun Yin Yoichi Hori

This paper presents a new control algorithm that prevents electrical vehicle from wheel skidding in presence of uncertainties of tire-road condition. An estimator of the maximum effective torque is realized by wheel velocity and input torque, which is based on a pure kinematic relationship between the wheel and the chassis. In order to enhance the stability of the control system and handing per...

Journal: :Robotica 2001
Herbert G. Tanner Kostas J. Kyriakopoulos

A wheeled mobile manipulator system is modeled using Kane’s dynamic equations. Kane’s equations are constructed with minimum effort, are control oriented and provide both physical insight and fast simulations. The powerful tools of Kane’s approach for incorporating nonholonomic motion constraints and bringing noncontributing forces into evidence are exploited. Both nonholonomic constraints asso...

2015
G. Stover

IN T R O D U C T IO N It is generally agreed that a wet pavement surface presents less resistance to skidding than does the same surface in a dry condition. It is also well known that ice and snow are very slippery; but on the other hand, they are special conditions which do not reflect any skid characteristic of the pavement surface. It is, therefore, the wet surface condition that is critical...

2000
D. M. Dawson

In this paper, we develop a new method for Wheeled Mobile Robot (WMR) fault detection. Specifically, we develop kinematic and dynamic models of the WMR in the presence of faults such as a change in the wheel radius (e.g., deformation, broken spoke, flat tire) or general kinematic disturbances that model slipping or skidding faults. Utilizing the WMR models, we employ a torque filtering techniqu...

2006
Oren Masory Erwan Le Gall Wade Bartlett

Accident reconstructionists often determine pre-collision conditions based on post-collision evidence. Energy-based speed calculations for skidding vehicles are commonly used and have been the basis for numerous theoretical and experimental works. The simplest analysis technique, “skid-to-stop” is fairly well understood, however the more complex circumstance of a spinning trajectory is less wel...

Journal: :caspian journal of environmental sciences 2010
a. najafi

the effects of traffic frequency and skid trail slope on dry bulk density, litter mass and rutting are examined. treatments included a combination of four different traffic frequencies (3, 7, 14, and 20 passes of a rubber skidder) and three levels of slope ( 20%.) the results showed that dry bulk density, rut depth and soil displacement increased with the increase of traffic frequency and slope...

Journal: :European Journal of Forest Research 2021

Abstract Intensive forestry operations may cause soil compaction, plastic disturbances and rutting, which are responsible for undesirable effects on soils, vegetation water bodies. Despite the numerous studies aimed to identify main factors affecting damages, it still remains unclear whether wood extraction methods driving direction (uphill or downhill) affect impacts of forest machines. This r...

Journal: : 2022

The article examines the use of antiskid sensor to gain maximum trailed load.Skidding means slip wheels a vehicle (tram, railway carriage) along bearing surface (road, rails) where linear speed wheel is lower than towards vehicle.
 occurs during braking. It caused by excess braking force over traction with surface. Skidding rail vehicles leads wear-out locked in place their contact and fla...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->