line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Lab::Moose::Instrument::SCPI::Source::Level; |
2
|
|
|
|
|
|
|
$Lab::Moose::Instrument::SCPI::Source::Level::VERSION = '3.900'; |
3
|
|
|
|
|
|
|
#ABSTRACT: Role for the SCPI SOURce:(CURRent|VOLTage):Level commands |
4
|
|
|
|
|
|
|
|
5
|
6
|
|
|
6
|
|
3740
|
use v5.20; |
|
6
|
|
|
|
|
25
|
|
6
|
|
|
|
|
|
|
|
7
|
6
|
|
|
6
|
|
42
|
use Moose::Role; |
|
6
|
|
|
|
|
20
|
|
|
6
|
|
|
|
|
45
|
|
8
|
6
|
|
|
6
|
|
31648
|
use Moose::Util::TypeConstraints 'enum'; |
|
6
|
|
|
|
|
18
|
|
|
6
|
|
|
|
|
81
|
|
9
|
6
|
|
|
6
|
|
2727
|
use Lab::Moose::Instrument::Cache; |
|
6
|
|
|
|
|
16
|
|
|
6
|
|
|
|
|
62
|
|
10
|
6
|
|
|
6
|
|
3522
|
use Lab::Moose::Instrument qw/validated_getter validated_setter/; |
|
6
|
|
|
|
|
23
|
|
|
6
|
|
|
|
|
355
|
|
11
|
6
|
|
|
6
|
|
47
|
use namespace::autoclean; |
|
6
|
|
|
|
|
14
|
|
|
6
|
|
|
|
|
47
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
with 'Lab::Moose::Instrument::SCPI::Source::Function'; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
cache source_level => ( getter => 'source_level_query' ); |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
sub source_level_query { |
19
|
25
|
|
|
25
|
1
|
3556
|
my ( $self, %args ) = validated_getter( \@_ ); |
20
|
|
|
|
|
|
|
|
21
|
25
|
|
|
|
|
14976
|
my $function = $self->cached_source_function(); |
22
|
|
|
|
|
|
|
|
23
|
25
|
|
|
|
|
167
|
return $self->cached_source_level( |
24
|
|
|
|
|
|
|
$self->query( command => "SOUR:$function:LEV?", %args ) ); |
25
|
|
|
|
|
|
|
} |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
sub source_level { |
28
|
206
|
|
|
206
|
1
|
13237
|
my ( $self, $value, %args ) = validated_setter( |
29
|
|
|
|
|
|
|
\@_, |
30
|
|
|
|
|
|
|
value => { isa => 'Num' } |
31
|
|
|
|
|
|
|
); |
32
|
|
|
|
|
|
|
|
33
|
206
|
|
|
|
|
880
|
my $function = $self->cached_source_function(); |
34
|
|
|
|
|
|
|
|
35
|
206
|
|
|
|
|
2257
|
$self->write( |
36
|
|
|
|
|
|
|
command => sprintf( "SOUR:$function:LEV %.15g", $value ), |
37
|
|
|
|
|
|
|
%args |
38
|
|
|
|
|
|
|
); |
39
|
206
|
|
|
|
|
880
|
$self->cached_source_level($value); |
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
1; |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
__END__ |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=pod |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=encoding UTF-8 |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 NAME |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Lab::Moose::Instrument::SCPI::Source::Level - Role for the SCPI SOURce:(CURRent|VOLTage):Level commands |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 VERSION |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
version 3.900 |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 METHODS |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head2 source_level_query |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 source_level |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
$self->source_level(value => '0.001'); |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
Query/Set the output level. |
67
|
|
|
|
|
|
|
The type of output signal is determined with the SCPI::Source::Function role. |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
This software is copyright (c) 2023 by the Lab::Measurement team; in detail: |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
Copyright 2017 Simon Reinhardt |
74
|
|
|
|
|
|
|
2020 Andreas K. Huettel |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
78
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=cut |