想給老樹開花?不妨試試以下方案。
一、合理施肥
老樹也需要養分,合理施肥是老樹開花的重要步驟。
1、在春季開始,每月施一次有機肥,可以用腐熟過的堆肥,混入磷酸二銨等,用量大約是10斤每棵/每月;
<!-- 有機肥配方 -->
def organic_fertilizer(dosage: float, tree_num: int, month: int):
fertilizer = ['compost', 'ammonium phosphate']
return {fert: dosage * tree_num / month for fert in fertilizer}
dosage = 10
tree_num = 1
month = 1
print(organic_fertilizer(dosage, tree_num, month)) # {'compost': 10.0, 'ammonium phosphate': 10.0}
2、夏季中後期可以進行追肥,可用余渣復混於水中,再加入高錳酸鉀,噴洒在樹根及葉面即可。
<!-- 追肥配方 -->
def supplementary_fertilizer(dosage: float, tree_num: int, period: str):
fertilizer = ['residue', 'potassium permanganate']
if period == 'summer':
return {fert: dosage * tree_num for fert in fertilizer}
else:
return {}
dosage = 2
tree_num = 1
period = 'summer'
print(supplementary_fertilizer(dosage, tree_num, period)) # {'residue': 2, 'potassium permanganate': 2}
3、秋季施入1次無機肥。可以選用氮、磷、鉀比例為5:1:1的複合肥,用量為7-8公斤每棵;
<!-- 無機肥配方 -->
def inorganic_fertilizer(dosage: float, tree_num: int):
fertilizer = ['compound']
return {fert: dosage * tree_num for fert in fertilizer}
dosage = 8
tree_num = 1
print(inorganic_fertilizer(dosage, tree_num)) # {'compound': 8}
二、及時修剪
刪繁就簡,及時修剪可以使老樹更集中能量開花。
1、夏季、秋季不需要進行大修剪,只需要清除殘枝、病蟲害和葉子
<!-- 清理過季枝葉:summer & autumn -->
class Trimming:
def __init__(self, season: str):
self.season = season
def remove_dross(self, dross: str):
self.dross = dross
if 'leaf' in dross:
print(f'remove {dross} in {self.season}')
else:
print(f'remove {dross} in {self.season} and prune the branches')
summer = Trimming('summer')
autumn = Trimming('autumn')
summer.remove_dross('dead leaf') # remove dead leaf in summer
autumn.remove_dross('dead branches') # remove dead branches in autumn and prune the branches
2、春季進行促進花蕾分化修剪,把上一年的花並不長大的枝條順手整理掉 。
<!-- 促進修剪 -->
class Flowering:
def promote_pruning(self, branch: str):
self.branch = branch
if 'bloom' not in branch:
print(f'pruning {branch} will promote the flowering.')
else:
print(f'the {branch} are blooming, no need to prune.')
spring = Flowering()
spring.promote_pruning('bud bearing') # pruning bud bearing will promote the flowering.
spring.promote_pruning('flowering') # the flowering are blooming, no need to prune.
三、適時噴霧
適時噴霧可以增加空氣濕度,有助於花蕾生長。
1、春季和秋季,早晚可以澆水增加空氣濕度;
<!-- 噴霧方式1 -->
def spray_water(time: str, season: str):
if season in ['spring', 'autumn']:
print(f'watering at {time} will increase the air humidity in {season}')
time = 'morning'
season = 'spring'
spray_water(time, season) # watering at morning will increase the air humidity in spring
2、夏季高溫天氣,中午時分進行噴霧。
<!-- 噴霧方式2 -->
def spray_mist(time: str, season: str, temperature: int):
if season == 'summer' and time == 'noon' and temperature >= 30:
print(f'misting in {time} will cool and moisturize tree in hot summer')
time = 'noon'
season = 'summer'
temperature = 35
spray_mist(time, season, temperature) # misting in noon will cool and moisturize tree in hot summer
四、環境調節
樹生長的環境對花蕾的分化也非常重要。
1、保持夏季盆土濕度,注意避免根部積水;
<!-- 濕度調節 -->
class Soil:
def keep_moist(self, humidity: str):
self.humidity = humidity
if self.humidity == 'wet':
print('pay attention to avoid stagnant water around the roots in summer')
else:
print('please water when the soil is dry')
summer_soil = Soil()
summer_soil.keep_moist('wet') # pay attention to avoid stagnant water around the roots in summer
2、在陽光充足、通風良好、濕度與溫度適宜的條件下,老樹就會順利開花。
<!-- 生態環境 -->
class Ecological_environment:
def fit_conditions(self, sunlight: str, air: str, temperature: str):
self.sunlight = sunlight
self.air = air
self.temperature = temperature
if self.sunlight == 'sufficient' and self.air == 'well' and self.temperature == 'moderate':
print('will bloom when environmental conditions match')
ecological = Ecological_environment()
ecological.fit_conditions('sufficient', 'well', 'moderate') # will bloom when environmental conditions match
原創文章,作者:CZVBF,如若轉載,請註明出處:https://www.506064.com/zh-hk/n/374838.html