The AHA Model  Revision: 12809
Reference implementation 04 (HEDG02_04)
the_behaviour::walk_random Type Reference

Walk_random is a single step of a Gaussian random walk. More...

Inheritance diagram for the_behaviour::walk_random:
Collaboration diagram for the_behaviour::walk_random:

Public Member Functions

procedure, public init => walk_random_init_zero
 Initialise the walk_random behaviour component to a zero state. See the_behaviour::walk_random_init_zero(). More...
 
procedure, public do_this => walk_random_do_this
 The "do" procedure component of the behaviour element performs the behaviour without affecting the actor agent (the_agent) and the world (here food_item_eaten) which have intent(in), so it only can change the internal representation of the behaviour (the type to which this procedure is bound to, here the_behaviour::walk_random). See the_behaviour::walk_random_do_this(). More...
 
procedure, public expectancies_calculate => walk_random_motivations_expect
 the_behaviour::walk_random::motivations_expect() (re)calculates motivations from fake expected perceptions following from the procedure walk_random::do_this() => the_behaviour::walk_random_do_this(). See the_behaviour::walk_random_motivations_expect(). More...
 
procedure, public execute => walk_random_do_execute
 Execute this behaviour component "random walk" by this_agent agent. See the_behaviour::walk_random_do_execute(). More...
 
- Public Member Functions inherited from the_behaviour::move
procedure(move_init_root), deferred, public init
 The the_behaviour::move::init() is a deferred function that is overriden by each extension object init method. More...
 
- Public Member Functions inherited from the_behaviour::behaviour_base
procedure(behaviour_init_root), deferred, public init
 Abstract init function that has to be overriden by each object that extends the root behaviour component class. More...
 
procedure, public is_executed => behaviour_root_get_is_executed
 Get the execution status of the behaviour unit. See the_behaviour::behaviour_root_get_is_executed(). More...
 
procedure, public gos_expected => behaviour_root_gos_expectation
 gos_expected is an accessor get-function that returns the final GOS expectation from expectancies_calculate. Once we get this value for all the possible behaviours, we choose what behaviour to execute by minimising gos_expected. See the_behaviour::behaviour_root_gos_expectation(). More...
 
procedure, public attention_transfer => behaviour_root_attention_weights_transfer
 attention_transfer transfers attention weights from the actor agent to this behaviour expectancy objects. See the_behaviour::behaviour_root_attention_weights_transfer(). More...
 

Public Attributes

real(srp) distance_cv
 Coefficient of variation for the Gaussian random walk. More...
 
real(srp) expected_cost_moving
 The body mass cost of movement; depends on the distance. More...
 
real(srp) expected_food_gain
 The expected food gain (for body mass increment) is determined from the past history for the random walk. More...
 
real(srp) expected_food_dir
 The expected direct food perception in the novel target habitat. More...
 
real(srp) expected_pred_dir_risk
 The expected direct predation risk is zero for random walk. More...
 
real(srp) expected_predation_risk
 The expected general predation risk, i.e. the risk depending on the current number of predators in both the perception and memory stack. More...
 
- Public Attributes inherited from the_behaviour::move
real(srp) distance
 Movement is described by its absolute distance. More...
 
- Public Attributes inherited from the_behaviour::behaviour_base
logical is_active
 Logical flag indicating that this behaviour is activated (executed). More...
 
type(motivationexpectancy
 Each behavioural type within the whole repertoire has expectancies that set how each of the GOS motivational components is affected by its execution. More...
 
real(srp) arousal_expected
 An expectation of the arousal level. It is the maximum weighted value among all motivation components. This value is actually minimised – those behaviour which would result in the lowest arousal_expected is finally executed. More...
 

Detailed Description

Walk_random is a single step of a Gaussian random walk.

Definition at line 176 of file m_behav.f90.

Member Function/Subroutine Documentation

◆ init()

procedure, public the_behaviour::walk_random::init

Initialise the walk_random behaviour component to a zero state. See the_behaviour::walk_random_init_zero().

Definition at line 194 of file m_behav.f90.

◆ do_this()

procedure, public the_behaviour::walk_random::do_this

The "do" procedure component of the behaviour element performs the behaviour without affecting the actor agent (the_agent) and the world (here food_item_eaten) which have intent(in), so it only can change the internal representation of the behaviour (the type to which this procedure is bound to, here the_behaviour::walk_random). See the_behaviour::walk_random_do_this().

Definition at line 201 of file m_behav.f90.

◆ expectancies_calculate()

procedure, public the_behaviour::walk_random::expectancies_calculate

the_behaviour::walk_random::motivations_expect() (re)calculates motivations from fake expected perceptions following from the procedure walk_random::do_this() => the_behaviour::walk_random_do_this(). See the_behaviour::walk_random_motivations_expect().

Definition at line 206 of file m_behav.f90.

◆ execute()

procedure, public the_behaviour::walk_random::execute

Execute this behaviour component "random walk" by this_agent agent. See the_behaviour::walk_random_do_execute().

Definition at line 210 of file m_behav.f90.

Member Data Documentation

◆ distance_cv

real(srp) the_behaviour::walk_random::distance_cv

Coefficient of variation for the Gaussian random walk.

Definition at line 178 of file m_behav.f90.

◆ expected_cost_moving

real(srp) the_behaviour::walk_random::expected_cost_moving

The body mass cost of movement; depends on the distance.

Definition at line 180 of file m_behav.f90.

◆ expected_food_gain

real(srp) the_behaviour::walk_random::expected_food_gain

The expected food gain (for body mass increment) is determined from the past history for the random walk.

Definition at line 183 of file m_behav.f90.

◆ expected_food_dir

real(srp) the_behaviour::walk_random::expected_food_dir

The expected direct food perception in the novel target habitat.

Definition at line 185 of file m_behav.f90.

◆ expected_pred_dir_risk

real(srp) the_behaviour::walk_random::expected_pred_dir_risk

The expected direct predation risk is zero for random walk.

Definition at line 187 of file m_behav.f90.

◆ expected_predation_risk

real(srp) the_behaviour::walk_random::expected_predation_risk

The expected general predation risk, i.e. the risk depending on the current number of predators in both the perception and memory stack.

Definition at line 190 of file m_behav.f90.


The documentation for this type was generated from the following file: