A method for monitoring the uplift of a column pile in deep foundation pit excavation
By constructing 3D display diagrams of the column piles and diaphragm walls in deep foundation pit engineering using Matlab software, the problems of intuitiveness and comprehensiveness of the column pile uplift monitoring results were solved, and the linkage monitoring of the column piles and diaphragm walls was realized, thereby improving the safety and stability of the project.
Patent Information
- Application Number
- CN202411709777.5
- Authority / Receiving Office
- CN · China
- Patent Type
- Patents(China)
- Current Assignee / Owner
- Filing Date
- 2024-11-27
- Publication Date
- 2025-12-12
- Estimated Expiration
- 2044-11-27
AI Technical Summary
In existing technologies, the monitoring results of column pile uplift in deep foundation pit engineering are presented in the form of static data tables, which lack intuitiveness, comparative ability and comprehensiveness. They cannot effectively show the linkage deformation between the column pile and the underground continuous wall, resulting in incomplete monitoring data and blind spots, which affects the assessment of engineering safety and stability.
A three-dimensional display of the columns and diaphragm walls in the foundation pit was constructed using Matlab software. By setting measuring points, updating the three-dimensional coordinates in real time, meshing, surface fitting, and data visualization, a comprehensive display of the heave of the columns and diaphragm walls was achieved.
It enables a comprehensive and intuitive display of the heave of the column piles and diaphragm walls, quickly identifies problem areas, improves the comprehensiveness and accuracy of monitoring, provides precise decision-making basis, and ensures the overall safety and stability of the foundation pit.
Smart Images

Figure CN119843719B_ABST
Abstract
Description
TECHNICAL FIELD
[0001] The present application relates to the technical field of deep foundation pit engineering construction, and in particular relates to a deep foundation pit excavation column pile heave monitoring method. BACKGROUND
[0002] At present, in the deep foundation pit engineering construction process, the control of column pile heave is a key link to ensure construction safety. For the monitoring of traditional structure column settlement, usually only two data of cumulative value and daily change are provided, and the data is presented in the form of static data report. However, this way cannot directly provide detailed differential settlement information, so that the data presentation method is not intuitive enough, and there is great limitation in timely finding, analyzing and judging potential safety hazards, which is embodied in the following points:
[0003] 1. Single data display form: The existing column pile monitoring data is usually presented in the form of static table, which lacks dynamic and intuitive display. This single data display form makes it difficult for management personnel to quickly and intuitively understand the spatial distribution and change of column piles in the foundation pit, affecting the decision-making efficiency and real-time monitoring.
[0004] 2. Lack of intuitive comparison ability: The position and deformation of column piles in the foundation pit have complex spatial laws, and the traditional table data cannot effectively show these laws. The lack of intuitive comparison ability makes it difficult for management personnel to accurately understand the state change of column piles in different time periods, thereby affecting the assessment of engineering safety and stability.
[0005] 3. Fixed monitoring point limitation: Column pile monitoring usually relies on a small number of fixed monitoring points, which cannot comprehensively cover the overall behavior of column piles in the foundation pit. The use of fixed monitoring points is prone to the emergence of monitoring blind spots, especially in the complex environment inside the foundation pit, which affects the comprehensiveness and accuracy of the monitoring data.
[0006] 4. Cannot realize the linkage monitoring of column piles and underground continuous walls: In the deep foundation pit excavation process, the deformation of column piles is often closely related to the surrounding supporting structures (such as continuous walls). The existing monitoring report form usually only focuses on the settlement and displacement of column piles itself, ignoring the linkage deformation problem with the surrounding structures such as continuous walls. Due to the lack of comprehensive monitoring of the interaction between column piles and continuous walls, it is difficult to effectively show the synchronous or differential deformation of the two in space.
[0007] In view of the deficiencies in the prior art that the monitoring results of column pile heave in deep foundation pit engineering are presented in the form of static data table, the technical personnel in the field have been seeking a solution. SUMMARY
[0008] The present application aims to provide a deep foundation pit excavation column pile heave monitoring method to solve the problem of using traditional static data table to present the column pile heave monitoring results in deep foundation pit engineering.
[0009] To solve the above technical problems, the present application provides a deep foundation pit excavation column pile heave monitoring method, which comprises the following steps:
[0010] S1, constructing a three-dimensional display graph of the heave of the column pile and the underground continuous wall top in the foundation pit based on the Matlab software;
[0011] S2, monitoring the heave of the column pile and the underground continuous wall based on the constructed three-dimensional display graph.
[0012] Optionally, in the deep foundation pit excavation column pile heave monitoring method, step S1 comprises the following sub-steps:
[0013] S11, defining the outer boundary of the foundation pit:
[0014] According to the position and geometric shape of the underground continuous wall in the foundation pit, the planar coordinates of each corner point are set, and the closed plane of the underground continuous wall formed by each corner point is defined as the outer boundary of the foundation pit;
[0015] S12, defining the column pile heave measuring points and the underground continuous wall top heave measuring points, and determining the real-time three-dimensional coordinates of each measuring point:
[0016] According to the engineering planning or monitoring requirements, M column pile heave measuring points and N underground continuous wall top heave measuring points are set;
[0017] According to the position of each measuring point, the x-axis coordinate and the y-axis coordinate of each measuring point are determined;
[0018] According to the monitoring data of each measuring point provided by the monitoring unit every day, the z-axis coordinate of each measuring point is updated in real time;
[0019] S13, data visualization: data visualization of the real-time three-dimensional coordinates of each measuring point;
[0020] S14, foundation pit grid division: determining the grid range based on the outer boundary of the foundation pit determined in S11 and performing grid division;
[0021] S15, surface fitting: using interpolation technology to perform surface fitting on the real-time three-dimensional coordinates of each measuring point determined in S12;
[0022] S16, result display: displaying the result of surface fitting.
[0023] Optionally, in the deep foundation pit excavation column pile heave monitoring method, in S11, the closed plane of the underground continuous wall is represented by a set of continuous coordinate points as follows:
[0024] plane_points = {(x i ,y i ,0) | i = 1, 2, …, n};
[0025] Wherein, plane_points represents the set of coordinate points of the closed plane, (x i ,y i ) represents the plane coordinates of each corner point, and n represents the number of corner points of the underground continuous wall.
[0026] Optionally, in the deep foundation pit excavation column pile heave monitoring method, S14 includes the following steps:
[0027] S141, determine the grid range of the foundation pit area: determine the boundary of the grid based on the minimum x-axis coordinate, maximum x-axis coordinate, minimum y-axis coordinate and maximum y-axis coordinate of the outer boundary of the foundation pit;
[0028] S142, divide the grid according to the set resolution.
[0029] Optionally, in the deep foundation pit excavation column pile heave monitoring method, in S141, the boundary of the grid of the foundation pit area is determined by the formula as follows:
[0030] min_x = min(plane_points(:,1));
[0031] max_x = max(plane_points(:,1));
[0032] min_y = min(plane_points(:,2));
[0033] max_y = max(plane_points(:,2)).
[0034] Optionally, in the deep foundation pit excavation column pile heave monitoring method, in S142, the grid is divided according to the set resolution, including the following steps:
[0035] The division range of the grid is set as:
[0036] x = linspace(min_x, max_x, grid_size);
[0037] y = linspace(min_y, max_y, grid_size);
[0038] wherein, grid_size represents the generated grid size;
[0039] Based on the meshgrid function, a two-dimensional grid coordinate system is generated:
[0040] [X, Y] = meshgrid(x, y);
[0041] wherein, [X, Y] contains the x-axis coordinate and y-axis coordinate of each grid point in the entire foundation pit area. Optionally, in the deep foundation pit excavation column pile heave monitoring method, S13 comprises the following steps:
[0042] S131, three-dimensional scatter plot: based on the scatter3 function of MATLAB, the real-time three-dimensional coordinates of each measuring point are plotted, so that the real-time three-dimensional coordinates of each measuring point are displayed in three-dimensional space;
[0043] S132, color distinction: different colors are given to the column pile heave measuring point and the underground continuous wall top heave measuring point, respectively, so as to distinguish the positions of different measuring points in three-dimensional space and the corresponding heave values through color recognition.
[0044] Optionally, in the deep foundation pit excavation column pile heave monitoring method, S15 comprises the following steps:
[0045] Based on the following formula for surface fitting:
[0046]
[0047] wherein, λ i (x, y) is an interpolation function, z i is the heave value of the known measuring point;
[0048] Based on the griddata function, interpolation is performed according to the existing measuring point data, which is expressed by the following formula:
[0049] Z = griddata(xdata, ydata, zdata, X, Y, 'cubic').
[0050] Optionally, in the deep foundation pit excavation column pile heave monitoring method, S15 further comprises the following steps:
[0051] Based on the contour function, contour lines are superimposed on the three-dimensional surface after surface fitting to show different height levels of heave; wherein, the contour lines are expressed by the following formula:
[0052] f(x, y) = z0;
[0053] wherein, z0 is a certain specific height, and the function value is the contour line corresponding to the height.
[0054] Optionally, in the deep foundation pit excavation column pile heave monitoring method, S16 comprises the following steps:
[0055] Based on the text function, data labeling is performed on each measuring point in the result of the curved surface fitting.
[0056] The deep foundation pit excavation column pile heave monitoring method provided by the present application has the following beneficial effects:
[0057] 1) Integrated information integrated display: The monitoring method of the present application introduces a three-dimensional display method, which can more comprehensively and intuitively display the heave of the column pile and the underground continuous wall, making the monitoring more efficient and accurate.
[0058] 2) Quickly identify problem areas: The three-dimensional display diagram can help project managers quickly identify areas with large or abnormal column pile heave, which may have safety hazards or require special attention. By discovering problems in a timely manner and taking appropriate measures, engineering risks can be effectively reduced.
[0059] 3) Make up for the lack of fixed monitoring points: Through the curved surface fitting method, the spatial distribution of the column pile heave and the underground continuous wall heave in the foundation pit is comprehensively displayed, overcoming the data incompleteness or blind area problem caused by fixed measuring points in traditional monitoring methods, and improving the comprehensiveness and accuracy of monitoring.
[0060] 4) Column pile and underground continuous wall linkage analysis: The three-dimensional display diagram simultaneously displays the column pile heave and the underground continuous wall heave in the foundation pit, realizing linkage monitoring and analysis between the column pile and the underground continuous wall, helping project managers better understand the mutual influence between the two, providing more accurate decision-making basis to ensure the overall safety and stability of the foundation pit. BRIEF DESCRIPTION OF DRAWINGS
[0061] The above and other objects, features and advantages of the present disclosure will become more apparent from the following detailed description of exemplary embodiments thereof, taken in conjunction with the accompanying drawings in which like reference characters designate the same parts throughout the several views.
[0062] Figure 1 is a schematic view of the closed plane of the underground continuous wall in an embodiment of the present application;
[0063] Figure 2 is a schematic view of the position of the column pile heave measuring point and the underground continuous wall top heave measuring point in an embodiment of the present application;
[0064] Figure 3 is a schematic view of the real-time three-dimensional coordinates of the column pile heave measuring point and the underground continuous wall top heave measuring point in an embodiment of the present application;
[0065] Figure 4 is a three-dimensional display diagram of the column pile heave and the underground continuous wall top heave after surface fitting in an embodiment of the present application;
[0066] Figure 5 is a three-dimensional display diagram of the column pile heave and the underground continuous wall top heave superimposed with contour lines in an embodiment of the present application;
[0067] Figure 6 is a three-dimensional display diagram of the column pile heave after linkage with the underground continuous wall in an embodiment of the present application;
[0068] Figure 7 is a three-dimensional display expression process diagram of the column pile heave in each stage of deep foundation pit excavation in an embodiment of the present application;
[0069] Figure 8 is a flow chart of the monitoring method of the column pile heave in deep foundation pit excavation in an embodiment of the present application. DETAILED DESCRIPTION
[0070] The monitoring method of the column pile heave in deep foundation pit excavation according to the present application will be further described below in conjunction with the accompanying drawings and specific embodiments. The advantages and features of the present application will be more apparent according to the following description and claims. It should be noted that the accompanying drawings are very simplified and use non-precise proportions, only for the purpose of facilitating and clarifying the description of the embodiments of the present application.
[0071] The present application will now be further described in conjunction with the accompanying drawings. These drawings are all simplified schematic diagrams, only to schematically illustrate the basic structure of the present application, thus only show the components related to the present application.
[0072] In the description of the invention, it should be understood that the orientations or positional relationships indicated by the terms "center", "longitudinal", "lateral", "length", "width", "thickness", "upper", "lower", "front", "rear", "left", "right", "vertical", "horizontal", "top", "bottom", "inner", "outer", "clockwise", "counterclockwise", etc. are based on the orientations or positional relationships shown in the drawings, and are only for the purpose of facilitating the description of the invention and simplifying the description, and therefore cannot be understood as indicating or implying that the devices or elements referred to must have a particular orientation, be constructed and operated in a particular orientation, and therefore cannot be understood as limiting the invention.
[0073] In addition, the terms "first" and "second" are only for the purpose of description, and cannot be understood as indicating or implying relative importance or implicitly indicating the number of the technical features indicated. Therefore, the features defined with "first" and "second" can explicitly or implicitly include one or more of the features. In the description of the invention, the meaning of "multiple" is two or more, unless otherwise specifically limited.
[0074] In the present application, unless otherwise explicitly specified and limited, the terms "mounting", "connection", "connecting", "fixing" and the like should be interpreted broadly, for example, can be fixedly connected, can be detachably connected, or integrally connected; can be mechanically connected, or electrically connected; can be directly connected, or indirectly connected through an intermediate medium, or can be internal communication of two elements. For those skilled in the art, the specific meaning of the above terms in the present application can be understood according to the specific circumstances.
[0075] Please refer to Figures 1 to 8 , the monitoring method of the deep foundation pit excavation column pile uplift includes the following steps:
[0076] First, please refer to Figures 1 to 7 , execute step S1, construct a three-dimensional display diagram of the column pile and the underground continuous wall top uplift in the foundation pit based on Matlab software.
[0077] Among them, step S1 includes the following sub-steps:
[0078] S11, please refer to Figure 1 , define the outer boundary of the foundation pit: according to the position and geometric shape of the underground continuous wall in the foundation pit, set the plane coordinates of each corner point, and the closed plane of the underground continuous wall composed of each corner point is defined as the outer boundary of the foundation pit; in S11, the closed plane of the underground continuous wall is represented by a set of continuous coordinate points as follows:
[0079] plane_points={(xi,yi,0)∣i=1,2,…,n}; Wherein, plane_points represents the coordinate point set of the closed plane, (xi,yi) represents the plane coordinates of each corner point, and n represents the number of corner points of the underground continuous wall. Specifically, the first point is connected with the last point to form a closed loop, so as to highlight the outline of the foundation pit in the three-dimensional display.
[0080] S12, define the column pile uplift measuring point and the underground continuous wall top uplift measuring point, and determine the real-time three-dimensional coordinates of each measuring point:
[0081] According to the engineering planning or monitoring requirements, set M column pile uplift measuring points and N underground continuous wall top uplift measuring points;
[0082] According to the position of each measuring point, determine the x-axis coordinate and y-axis coordinate of each measuring point;
[0083] According to the monitoring data of each measuring point provided by the monitoring unit every day, update the z-axis coordinate of each measuring point in real time.
[0084] The real-time three-dimensional coordinates of these measuring points serve as the basic data for subsequent interpolation and three-dimensional display, reflecting the uplift state of the column piles and underground continuous walls in the foundation pit.
[0085] S13、please refer to Figure 2 and Figure 3 Data visualization: the real-time three-dimensional coordinates of each measuring point are visualized; S13 includes the following sub-steps:
[0086] S131, three-dimensional scatter plot: based on the scatter3 function of MATLAB, the real-time three-dimensional coordinates of each measuring point are plotted, so that the real-time three-dimensional coordinates (x, y, z) of each measuring point are displayed in three-dimensional space;
[0087] S132、please refer to Figure 2 and Figure 3 Color differentiation: different colors are assigned to column pile uplift measuring points and underground continuous wall top uplift measuring points, respectively, to identify the positions of different measuring points in three-dimensional space and the corresponding uplift values (i.e., corresponding z-axis coordinate values) through color recognition.
[0088] In order to distinguish between different types of measuring points (i.e., whether they belong to column pile uplift measuring points or underground continuous wall top uplift measuring points), different colors are used for identification; in this embodiment, the measuring points of column pile uplift are represented by red color, and the measuring points of underground continuous wall uplift are represented by yellow color. Through color differentiation, the positions of different measuring points and the corresponding uplift values are intuitively displayed.
[0089] S14, foundation pit grid division: based on the outer boundary of the foundation pit (i.e., the outer contour of the foundation pit) determined in S11, the grid range is determined and the grid is divided; S14 includes the following sub-steps:
[0090] S141, determine the grid range of the foundation pit area: determine the boundary of the grid based on the minimum x-axis coordinate, maximum x-axis coordinate, minimum y-axis coordinate and maximum y-axis coordinate of the outer boundary of the foundation pit; in S141, the boundary of the grid of the foundation pit area is determined using the formula as follows:
[0091] min_x = min(plane_points(:,1));
[0092] max_x = max(plane_points(:,1));
[0093] min_y = min(plane_points(:,2));
[0094] max_y = max(plane_points(:,2)).
[0095] These minimum and maximum values determine the grid range, and the grid will be divided within this range.
[0096] S142, divide the grid according to the set resolution. Specifically, dividing the grid according to the set resolution includes the following steps:
[0097] The division range of the grid is set as:
[0098] x = linspace(min_x, max_x, grid_size);
[0099] y = linspace(min_y, max_y, grid_size);
[0100] where grid_size represents the size of the generated grid, i.e. the number of grids;
[0101] Based on the meshgrid function, a two-dimensional grid coordinate system is generated:
[0102] [X, Y] = meshgrid(x, y);
[0103] where [X, Y] contains the x-axis and y-axis coordinates of each grid point in the entire foundation pit area.
[0104] Specifically, in a two-dimensional plane, a regular grid is divided by uniform spacing. The meshgrid function is used to generate a regular grid, and the spacing of the grid points determines the resolution of the fitted surface. Generally, smaller spacing can provide more detailed results, but it will also increase the amount of calculation.
[0105] S15, please refer to Figure 4 Surface fitting: using interpolation technology to fit the real-time three-dimensional coordinates of each measurement point determined in S12.
[0106] In order to generate a smooth three-dimensional surface from discrete measurement points, interpolation technology is used for surface fitting. Specifically, through the existing measurement point data (i.e. the real-time three-dimensional coordinates obtained in S12), a high-order polynomial is constructed to accurately fit the data points and ensure smooth transition between interpolation points. Through this method, a smooth and continuous distribution surface is generated to describe the distribution of the uplift of the column pile and the underground continuous wall in the plane.
[0107] S15 includes the following sub-steps:
[0108] Surface fitting is performed based on the following formula: where λ i (x, y) is the interpolation function, z i is the uplift value of the known measurement point;
[0109] Based on the griddata function, interpolation is performed according to the existing measured point data, and is expressed by the following formula: Z = griddata(xdata, ydata, zdata, X, Y, 'cubic').
[0110] Preferably, refer to Figure 5 S15 further comprises the following steps:
[0111] In MATLAB, based on the contour function, the contour lines are superimposed on the three-dimensional surface after surface fitting to show different height levels of the upheaval; wherein the contour lines are expressed by the following formula: f(x, y) = z0; wherein z0 is a certain height, and the function value is the contour line corresponding to the height.
[0112] S16, refer to Figure 6 Result display: the results of surface fitting are displayed. Specifically, the text function is used to mark the data of each measured point in the surface fitting results.
[0113] In order to improve the readability of the graph, especially for some key data points, the application provides a data labeling function. Specifically, by using the text function in MATLAB, a text label is added to the position of each measurement point to mark its corresponding height value (i.e. z-axis coordinate).
[0114] Then, step S2 is performed to monitor the upheaval of the column pile and the underground continuous wall based on the constructed three-dimensional display graph.
[0115] Based on the constructed three-dimensional display graph, the upheaval distribution of the column pile and the underground continuous wall can be intuitively displayed. This method not only effectively reflects the position and quantity of the upheaval, but also helps project managers quickly identify areas with large and small upheaval amounts, providing important guidance and decision support for safe construction.
[0116] It should be noted that, for the foregoing method embodiments, in order to simply describe, they are all expressed as a series of action combinations, but those skilled in the art should know that the application is not limited by the described action sequence, because according to the application, certain steps can be performed in other order or simultaneously. Secondly, those skilled in the art should know that the embodiments described in the specification all belong to preferred embodiments, and the actions and modules involved are not necessarily required by the application.
[0117] In the above embodiments, the description of each embodiment has its own focus, and the parts not described in detail in a certain embodiment can be referred to the related description of other embodiments.
[0118] The application has the following advantages:
[0119] 1) Comprehensive information integration display: The monitoring method of the present application introduces a three-dimensional display method, which can more comprehensively and intuitively display the heave of column piles and underground continuous walls, making the monitoring more efficient and accurate.
[0120] 2) Quickly identify problem areas: The three-dimensional display graph can help project managers quickly identify areas with large or abnormal column pile heave, which may have safety hazards or require special attention. By discovering problems in a timely manner and taking appropriate measures, engineering risks can be effectively reduced.
[0121] 3) Make up for the lack of fixed monitoring points: Through surface fitting method, the spatial distribution of column pile heave and underground continuous wall heave in the foundation pit is comprehensively displayed, overcoming the problem of incomplete data or blind spots caused by fixed monitoring points in traditional monitoring methods, improving the comprehensiveness and accuracy of monitoring.
[0122] 4) Column pile and underground continuous wall linkage analysis: The three-dimensional display graph simultaneously displays the heave of column piles and underground continuous wall in the foundation pit, realizing the linkage monitoring and analysis between column piles and underground continuous walls, helping project managers better understand the mutual influence between the two, providing more accurate decision-making basis to ensure the overall safety and stability of the foundation pit.
[0123] The above description is only a description of the preferred embodiments of the present application, and is not any limitation on the scope of the present application. Any changes or modifications made by those skilled in the art based on the above disclosure are within the scope of the claims.
Claims
1. A method for monitoring a deep foundation pit excavation column pile heave, characterized in that, The method comprises the following steps: S1, constructing a three-dimensional display diagram of the uplift of the column pile and the top of the underground continuous wall in the foundation pit based on Matlab software; S2, monitoring the uplift of the column pile and the underground continuous wall based on the constructed three-dimensional display diagram; Wherein, step S1 comprises the following sub-steps: S11, defining the outer boundary of the foundation pit: According to the position and geometric shape of the underground continuous wall in the foundation pit, the plane coordinates of each corner point are set, and the closed plane of the underground continuous wall formed by each corner point is defined as the outer boundary of the foundation pit; S12, defining the uplift measuring points of the column pile and the top of the underground continuous wall, and determining the real-time three-dimensional coordinates of each measuring point: According to the engineering planning or monitoring requirements, M column pile uplift measuring points and N underground continuous wall top uplift measuring points are set; According to the position of each measuring point, the x-axis coordinate and y-axis coordinate of each measuring point are determined; According to the monitoring data of each measuring point provided by the monitoring unit every day, the z-axis coordinate of each measuring point is updated in real time; S13, data visualization: data visualization of the real-time three-dimensional coordinates of each measuring point; S14, foundation pit grid division: determining the grid range based on the outer boundary of the foundation pit determined in S11 and performing grid division; S15, surface fitting: using interpolation technology to perform surface fitting on the real-time three-dimensional coordinates of each measuring point determined in S12; S16, result display: displaying the result of surface fitting.
2. The method of claim 1, wherein, In S11, the closed plane of the underground continuous wall is represented by a set of continuous coordinate points as follows: plane_points={(x i ,y i ,0)∣i=1,2,…,n}; Wherein, plane_points represents the coordinate point set of the closed plane, (x i ,y i ) represents the plane coordinates of each corner point, and n represents the number of corner points of the underground continuous wall.
3. The method of claim 2, wherein the method further comprises: S14 comprises the following steps: S141, determining the grid range of the foundation pit area: determining the boundary of the grid based on the minimum x-axis coordinate, maximum x-axis coordinate, minimum y-axis coordinate and maximum y-axis coordinate of the outer boundary of the foundation pit; S142, dividing the grid according to the set resolution.
4. The monitoring method for the heave of deep foundation pit excavation column piles as described in claim 3, characterized in that, In S141, the boundary of the grid of the foundation pit area is expressed by the following formula: min_x=min(plane_points(:,1)); max_x=max(plane_points(:,1)); min_y=min(plane_points(:,2)); max_y=max(plane_points(:,2)).
5. The method of claim 4, wherein the method further comprises: In S142, dividing the grid according to the set resolution comprises the following steps: The division range of the grid is set as: x=linspace(min_x, max_x, grid_size); y=linspace(min_y, max_y, grid_size); Wherein, grid_size represents the size of the generated grid; Based on the meshgrid function, a two-dimensional grid coordinate system is generated: [X,Y]=meshgrid(x,y); Wherein, [X,Y] contains the x-axis coordinate and y-axis coordinate of each grid point in the entire foundation pit area.
6. The method of claim 1, wherein, S13 comprises the following steps: S131, three-dimensional scatter plot: based on the scatter3 function of MATLAB, the real-time three-dimensional coordinates of each measuring point are plotted, so that the real-time three-dimensional coordinates of each measuring point are displayed in three-dimensional space; S132, color distinction: respectively give the column pile uplift measuring point and underground continuous wall top uplift measuring point different colors, to distinguish the position of different measuring points in three-dimensional space and the corresponding uplift value through color.
7. The method of claim 1, wherein, S15 includes the following steps: Based on the following formula for surface fitting: ; where λ i (x, y) is the interpolation function, z i is the bump value of the known measuring point; Based on the griddata function, interpolation is performed according to the existing measuring point data, which is expressed by the following formula: Z=griddata(xdata,ydata,zdata,X,Y,’cubic’).
8. The method of claim 7, wherein the method further comprises: S15 also includes the following steps: Based on the contour function, the contour line is superimposed on the three-dimensional surface after surface fitting to show the different height levels of the uplift; wherein the contour line is expressed by the following formula: f(x,y)=z0; Wherein z0 is a certain height, and the function value is the contour line corresponding to the height.
9. The method of claim 1, wherein, S16 includes the following steps: Based on the text function, data annotation is performed on each measuring point in the surface fitting result.
Citation Information
Patent Citations
BIM-based deformation monitoring method for deep foundation pit
CN105586995A
Step-by-step excavation method for foundation pit group
CN114510759A