Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/24/2021 in all areas

  1. This is for an Offshore Windfarm project. We have to bury an export cable, which transports the electricity from the offshore High Voltage station to the shore. But this is in the North Sea, which has a lot of sand waves, which are moving sand dunes under water. There are burial depth requirements for the export cable, but the moving sand waves (approx. 4m height difference) may cause that the cable is exposed after a couple of years because sand dunes are moving with the current. To prevent that the buried cable gets exposed, the client provides not only a bathymetry of the seabed, but also a non-mobile reference level which is a bathymetry of the part of the seabed that doesn' t move. The burial requirement of the cable is based on this non-mobile reference level (NMRL), which is much deeper than the existing seabed bathymetry. We bury the cable with a Trencher. This trencher is moving over cable (which is first layed on the seabed) and buries the cable (depending on the soil type) with either a big knife or waterjet. The problem is that this trencher has a maximum reach. If the Trench is burying at the top of a sand wave it may not reach the required burial depth. Therefor we first need to pre-sweep ( scrape away with a dredger) the top of all sand waves where the trencher can't reach the burial depth. We try to minimize the pre-sweeping depth to keep it as cheap as possible. There are along the 60km cable route a lot of sand waves...and there are often >2 export cables to bury. So we need to calculate the volume of pre-sweeped sand. Now here my routine steps in. We create in a CAD drawing 2 vertical profiles: 1 of the latest Seabed bathymetry and 1 of the Non-mobile reference level. The X-coord = the KP of the route and the Y-coord = the depth of the seabed or Non-mobile reference level (NMRL). We shift the NMRL line vertically upwards in such a way that at that level the cable trencher can achieve the burial depth requirement. Now the NMRL profile is intersecting the Seabed profile at the sand wave locations. These intersections are the start and end KP's to Pre-weep. However if the distance between a range of intersections (start and end KP's) is to small we remove the inner intersections. The main routine is used to create a list of KP ranges we use in DTM software to create polygons along the route to calculate the pre-sweep volume The Subroutine, removes the KP's where the distance between 2 intersections is smaller than e.g. 5m The 5m input is based on the size of the suction head of the dredger which pre-sweeps the sand waves. If a range of intersections is smaller than e.g 5m, then this location can be omitted because the head is larger than the area to be pre-sweeped Capice?
    1 point
  2. (defun c:lze ( / ot ac ) (vl-load-com) (setq ot (getvar 'CTAB) ac (vlax-get-acad-object)) (foreach l (layoutlist) (setvar 'CTAB l) (vla-ZoomExtents ac)) (setvar 'CTAB ot) (princ) ) Or to avoid Zooming in Viewports: (defun c:lze ( / ot ac doc ) (vl-load-com) (setq ot (getvar 'CTAB) ac (vlax-get-acad-object) doc (vla-get-ActiveDocument ac)) (foreach l (layoutlist) (setvar 'CTAB l) (vla-put-MSpace doc :vlax-false) (vla-ZoomExtents ac) ) (setvar 'CTAB ot) (princ) )
    1 point
×
×
  • Create New...