Finding Equations for Circular Irrigation System

  • Context: Undergrad 
  • Thread starter Thread starter XodoX
  • Start date Start date
Click For Summary
SUMMARY

This discussion focuses on the mathematical equations necessary for calculating areas related to a circular irrigation system on a rectangular piece of property. The key equations established include the total area of the rectangle, calculated as W * L, and the area of the largest circle that can fit within the rectangle, given by the formula π(Min[W, L]/2)². Additionally, the farmer seeks to determine the acreage of the property, the farmable area, and the non-farmable area. The discussion also touches on the arrangement of multiple circles within the rectangular area.

PREREQUISITES
  • Understanding of basic geometry, specifically area calculations
  • Familiarity with the concept of circular areas and the use of π
  • Knowledge of rectangular dimensions and their properties
  • Basic programming skills for implementing the calculations in code
NEXT STEPS
  • Research the implementation of area calculations in Python using libraries like NumPy
  • Learn about optimization techniques for packing circles within a rectangle
  • Explore agricultural irrigation systems and their efficiency metrics
  • Study the mathematical principles behind the Min function and its applications in geometry
USEFUL FOR

Agricultural engineers, software developers creating irrigation planning tools, and farmers looking to optimize land use and irrigation efficiency will benefit from this discussion.

XodoX
Messages
195
Reaction score
0
Hello guys!

I'm looking for some equations I need for a program I have to create.

In the mid-west many farmers irrigate from a well near
the center of a piece of land using a circular
irrigation system. The farmer plans on farming an
almost square (but it is a rectangle) piece of
property and needs to know some answers for planning.

This program is to get two measurements for a rectangular
piece of property. The measurements will be in feet,
and should be identified with variables named length
width. The program is to calculate the area in square
feet of the rectangle and the largest circle that could
fit into the rectangle.

The farmer wants to know the acreage of:

1. the property
2. the farmable area
3. the non-farmable area

The rectangular area is easy.. side a x b. How do I get the equation for how many circles could fit in the rectangular area?
 
Last edited:
Mathematics news on Phys.org
THis doesn't seem so bad.

Total area = W*L
The biggest circle is of radius Min[W.L]/2
Where the Min function picks the smaller number. THat gives.
Pi(Min[W.L]/2)^2 area of farmable land.
 
And you want to put more circles in? Well you would slam that largest circle up against one side.
 

Similar threads

  • · Replies 33 ·
2
Replies
33
Views
4K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 4 ·
Replies
4
Views
4K
  • · Replies 13 ·
Replies
13
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
2
Views
1K
  • · Replies 19 ·
Replies
19
Views
3K
  • · Replies 7 ·
Replies
7
Views
5K
  • · Replies 13 ·
Replies
13
Views
2K
  • · Replies 13 ·
Replies
13
Views
4K