blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e270f3f93243dc5aac9ab24574d7ae8c889ca223 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3636/CH4/EX4.6/Ex4_6.sce | 986565b3c9022e68f57598edc57213ce901fbf1b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 327 | sce | Ex4_6.sce | clc;
clear;
l=1.8 //distance between plates in cm
E=3/2 //in V
t=0.6*10^-3 //time taken by the pulse in s
del_t=236*10^-6 //pulse width in s
//Calculation
vd=l/t //in cm/s
myu_p=vd/E
Dp=(del_t*l)^2/(16*t^3)
mprintf("1)\nHole mobility= %i cm^2/Vs\n",myu_p)
mprintf("2)\nDiffusion coefficient= %2.2f cm^2/s",Dp)
|
7d0eab730d71b2f095228855c8233993672af97e | 449d555969bfd7befe906877abab098c6e63a0e8 | /659/CH10/EX10.3/exm10_3.sce | b64b0a3911c7fd8968586e0237133fd98021d8b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,178 | sce | exm10_3.sce | // Example 10.3
// Write a program to calculate the subject-wise and student-wise totals
//and store them as a part of the structue.
//Defining array of structures
student=[struct('sub1',45,'sub2',67,'sub3',81,'total',0)
struct('sub1',75,'sub2',53,'sub3',69,'total',0)
struct('sub1',57,'sub2',36,'sub3',71,'total',0)
];
total=struct('sub1',0,'sub2',0,'sub3',0,'total',0);
//Calculate the student-wise and subject-wise totals
for i=1:3
student(i).total=student(i).sub1+student(i).sub2+student(i).sub3;
total.sub1=total.sub1+student(i).sub1;
total.sub2=total.sub2+student(i).sub2;
total.sub3=total.sub3+student(i).sub3;
total.total=total.total+student(i).total;
end
//Printing student-wise totals
printf("STUDENT TOTAL\n");
for i=1:3
printf("student(%d) %d\n",i,student(i).total);
end
//Printing subject-wise totals
printf("SUBJECT TOTAL\n");
printf(" %s %d\n","Subject 1",total.sub1);
printf(" %s %d\n","Subject 2",total.sub2);
printf(" %s %d\n","Subject 3",total.sub3);
//Printing grand total
printf("Grand Total = %d",total.total); |
8b7f8ac369c831d6950241fc61c70a23fe768713 | d90572834954fc62cfa8e217134d569c22501303 | /men/newtona.sci | 23fa6e6d403f0d07748d6895db7f825db5341134 | [] | no_license | AdamDomagalsky/semestr5 | 4b5323aa401390c28decb05d91b25615c7f32d65 | cbece915cbbbbeec9da8b45e76abd19cedfab229 | refs/heads/master | 2021-03-24T13:16:46.452469 | 2018-06-12T07:51:40 | 2018-06-12T07:51:40 | 107,386,876 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 185 | sci | newtona.sci | E=10^(-3)
x=poly(0,'x')
f=x^4+x^2+2+3*%i
x0=1
df=derivat(f)
x1= x0-horner(f,x0)/horner(df,x0)
it=1
while abs(x1-x0) > E
x0=x1
x1=x0-horner(f,x0)/horner(df,x0)
it = it + 1
end |
c01c858cbe2fea0508d0a8e820da5dd1e1053d92 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1736/CH1/EX1.10/Ch01Ex10.sce | 183f896cc4cf423c6ef56c15f247fbf09bb28e67 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,513 | sce | Ch01Ex10.sce | // Scilab Code Ex 1.10 : Page-24 (2006)
clc; clear;
function str = structure(r_ratio)
if r_ratio > 0.732 then
str = 'Caesium Chloride';
else if r_ratio < 0.732 & r_ratio > 0.414 then
str = 'Rock Salt';
else if r_ratio < 0.414 then
str = 'Rutile'
end
end
end
endfunction
crystal = cell(6,2); // Declare cells of 6 rows and 2 columns
crystal(1,1).entries = 'I';
crystal(1,2).entries = 2.19; // Ionic radius of I, angstrom
crystal(2,1).entries = 'Cl';
crystal(2,2).entries = 1.81; // Ionic radius of Cl, angstrom
crystal(3,1).entries = 'Na';
crystal(3,2).entries = 0.95; // Ionic radius of Na, angstrom
crystal(4,1).entries = 'Cs';
crystal(4,2).entries = 1.69; // Ionic radius of Cs, angstrom
crystal(5,1).entries = 'Mg';
crystal(5,2).entries = 0.99; // Ionic radius of Mg2+, angstrom
crystal(6,1).entries = 'O';
crystal(6,2).entries = 1.40; // Ionic radius of O2-, angstrom
printf("\nThe crystal structure of %s%s with radius ratio = %6.4f is %s", crystal(3,1).entries, crystal(1,1).entries, crystal(3,2).entries/crystal(1,2).entries, structure(crystal(3,2).entries/crystal(1,2).entries));
printf("\nThe crystal structure of %s%s with radius ratio = %6.4f is %s", crystal(3,1).entries, crystal(2,1).entries, crystal(3,2).entries/crystal(2,2).entries, structure(crystal(3,2).entries/crystal(2,2).entries));
printf("\nThe crystal structure of %s%s with radius ratio = %6.4f is %s", crystal(4,1).entries, crystal(2,1).entries, crystal(4,2).entries/crystal(2,2).entries, structure(crystal(4,2).entries/crystal(2,2).entries));
printf("\nThe crystal structure of %s%s with radius ratio = %6.4f is %s", crystal(4,1).entries, crystal(1,1).entries, crystal(4,2).entries/crystal(1,2).entries, structure(crystal(4,2).entries/crystal(1,2).entries));
printf("\nThe crystal structure of %s%s with radius ratio = %6.4f is %s", crystal(5,1).entries, crystal(6,1).entries, crystal(5,2).entries/crystal(6,2).entries, structure(crystal(5,2).entries/crystal(2,2).entries));
// Result
//The crystal structure of NaI with radius ratio = 0.4338 is Rock Salt
//The crystal structure of NaCl with radius ratio = 0.5249 is Rock Salt
//The crystal structure of CsCl with radius ratio = 0.9337 is Caesium Chloride
//The crystal structure of CsI with radius ratio = 0.7717 is Caesium Chloride
//The crystal structure of MgO with radius ratio = 0.7071 is Rock Salt
|
79a7fe98dd7ce85c8c579983239204894218efb8 | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /Minecraft PvE Training.sce | 935e191193924dec2bd5d55b4019b8976ddd172d | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 67,558 | sce | Minecraft PvE Training.sce | Name=Minecraft PvE Training
PlayerCharacters=crafter
BotCharacters=BlockBot.bot
IsChallenge=true
Timelimit=600.0
PlayerProfile=crafter
AddedBots=BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot;BlockBot.bot
PlayerMaxLives=0
BotMaxLives=1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1
PlayerTeam=2
BotTeams=1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
MapName=minecraft.map
MapScale=3.8125
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=0.0
ScorePerDamage=0.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=10.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=true
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Minecraft
WeaponHeroTag=Steve, fists
DifficultyTag=5
AuthorsTag=Bozott
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=tree punching
GameVersion=1.0.7.2
ScorePerDistance=0.0
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Bot Profile]
Name=BlockBot
DodgeProfileNames=
DodgeProfileWeights=
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=block
SeeThroughWalls=false
NoDodging=true
NoAiming=true
[Character Profile]
Name=crafter
MaxHealth=300.0
WeaponProfileNames=;;fists;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=900.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=block
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=60.0
MaxRespawnDelay=60.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=0.0
MaxCrouchSpeed=500.0
Acceleration=0.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=0.0
Gravity=0.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cuboid
MainBBHeight=80.0
MainBBRadius=40.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=50.0
ProjBBRadius=25.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.001
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Weapon Profile]
Name=fists
Type=Hitscan
ShotsPerClick=1
DamagePerShot=25.0
KnockbackFactor=0.0
TimeBetweenShots=0.5
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=500.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.1
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=false
SpreadStationaryVelocity=1000000.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=1
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=103.0
ADSFOVScale=Clamped Horizontal
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=1.0,1.0,0.0,0.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=0.0,0.1,0.0,0.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-192.000000 64.000000 -160.000000
-160.000000 64.000000 -160.000000
-160.000000 64.000000 -448.000000
-192.000000 64.000000 -448.000000
-192.000000 32.000000 -160.000000
-160.000000 32.000000 -160.000000
-160.000000 32.000000 -448.000000
-192.000000 32.000000 -448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-352.000000 64.000000 -160.000000
-192.000000 64.000000 -160.000000
-192.000000 64.000000 -192.000000
-352.000000 64.000000 -192.000000
-352.000000 32.000000 -160.000000
-192.000000 32.000000 -160.000000
-192.000000 32.000000 -192.000000
-352.000000 32.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 64.000000 32.000000
-352.000000 64.000000 32.000000
-352.000000 64.000000 0.000000
-512.000000 64.000000 0.000000
-512.000000 32.000000 32.000000
-352.000000 32.000000 32.000000
-352.000000 32.000000 0.000000
-512.000000 32.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 64.000000 -416.000000
-192.000000 64.000000 -416.000000
-192.000000 64.000000 -448.000000
-512.000000 64.000000 -448.000000
-512.000000 32.000000 -416.000000
-192.000000 32.000000 -416.000000
-192.000000 32.000000 -448.000000
-512.000000 32.000000 -448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 64.000000 0.000000
-480.000000 64.000000 0.000000
-480.000000 64.000000 -416.000000
-512.000000 64.000000 -416.000000
-512.000000 32.000000 0.000000
-480.000000 32.000000 0.000000
-480.000000 32.000000 -416.000000
-512.000000 32.000000 -416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-352.000000 128.000000 -96.000000
-320.000000 128.000000 -96.000000
-320.000000 128.000000 -160.000000
-352.000000 128.000000 -160.000000
-352.000000 32.000000 -96.000000
-320.000000 32.000000 -96.000000
-320.000000 32.000000 -160.000000
-352.000000 32.000000 -160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-352.000000 128.000000 32.000000
-320.000000 128.000000 32.000000
-320.000000 128.000000 -32.000000
-352.000000 128.000000 -32.000000
-352.000000 32.000000 32.000000
-320.000000 32.000000 32.000000
-320.000000 32.000000 -32.000000
-352.000000 32.000000 -32.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-416.000000 96.000000 32.000000
-352.000000 96.000000 32.000000
-352.000000 96.000000 0.000000
-416.000000 96.000000 0.000000
-416.000000 64.000000 32.000000
-352.000000 64.000000 32.000000
-352.000000 64.000000 0.000000
-416.000000 64.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 96.000000 32.000000
-448.000000 96.000000 32.000000
-448.000000 96.000000 0.000000
-512.000000 96.000000 0.000000
-512.000000 64.000000 32.000000
-448.000000 64.000000 32.000000
-448.000000 64.000000 0.000000
-512.000000 64.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-352.000000 128.000000 -160.000000
-288.000000 128.000000 -160.000000
-288.000000 128.000000 -192.000000
-352.000000 128.000000 -192.000000
-352.000000 64.000000 -160.000000
-288.000000 64.000000 -160.000000
-288.000000 64.000000 -192.000000
-352.000000 64.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-224.000000 128.000000 -160.000000
-160.000000 128.000000 -160.000000
-160.000000 128.000000 -192.000000
-224.000000 128.000000 -192.000000
-224.000000 64.000000 -160.000000
-160.000000 64.000000 -160.000000
-160.000000 64.000000 -192.000000
-224.000000 64.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-192.000000 128.000000 -192.000000
-160.000000 128.000000 -192.000000
-160.000000 128.000000 -256.000000
-192.000000 128.000000 -256.000000
-192.000000 64.000000 -192.000000
-160.000000 64.000000 -192.000000
-160.000000 64.000000 -256.000000
-192.000000 64.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-192.000000 128.000000 -320.000000
-160.000000 128.000000 -320.000000
-160.000000 128.000000 -448.000000
-192.000000 128.000000 -448.000000
-192.000000 64.000000 -320.000000
-160.000000 64.000000 -320.000000
-160.000000 64.000000 -448.000000
-192.000000 64.000000 -448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 128.000000 -416.000000
-192.000000 128.000000 -416.000000
-192.000000 128.000000 -448.000000
-256.000000 128.000000 -448.000000
-256.000000 64.000000 -416.000000
-192.000000 64.000000 -416.000000
-192.000000 64.000000 -448.000000
-256.000000 64.000000 -448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 128.000000 -416.000000
-320.000000 128.000000 -416.000000
-320.000000 128.000000 -448.000000
-512.000000 128.000000 -448.000000
-512.000000 64.000000 -416.000000
-320.000000 64.000000 -416.000000
-320.000000 64.000000 -448.000000
-512.000000 64.000000 -448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 128.000000 -320.000000
-480.000000 128.000000 -320.000000
-480.000000 128.000000 -416.000000
-512.000000 128.000000 -416.000000
-512.000000 64.000000 -320.000000
-480.000000 64.000000 -320.000000
-480.000000 64.000000 -416.000000
-512.000000 64.000000 -416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 128.000000 0.000000
-480.000000 128.000000 0.000000
-480.000000 128.000000 -256.000000
-512.000000 128.000000 -256.000000
-512.000000 64.000000 0.000000
-480.000000 64.000000 0.000000
-480.000000 64.000000 -256.000000
-512.000000 64.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 128.000000 32.000000
-352.000000 128.000000 32.000000
-352.000000 128.000000 0.000000
-512.000000 128.000000 0.000000
-512.000000 96.000000 32.000000
-352.000000 96.000000 32.000000
-352.000000 96.000000 0.000000
-512.000000 96.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-384.000000 128.000000 -160.000000
-352.000000 128.000000 -160.000000
-352.000000 128.000000 -192.000000
-384.000000 128.000000 -192.000000
-384.000000 32.000000 -160.000000
-352.000000 32.000000 -160.000000
-352.000000 32.000000 -192.000000
-384.000000 32.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-480.000000 128.000000 -160.000000
-448.000000 128.000000 -160.000000
-448.000000 128.000000 -192.000000
-480.000000 128.000000 -192.000000
-480.000000 32.000000 -160.000000
-448.000000 32.000000 -160.000000
-448.000000 32.000000 -192.000000
-480.000000 32.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-480.000000 160.000000 -160.000000
-352.000000 160.000000 -160.000000
-352.000000 160.000000 -192.000000
-480.000000 160.000000 -192.000000
-480.000000 128.000000 -160.000000
-352.000000 128.000000 -160.000000
-352.000000 128.000000 -192.000000
-480.000000 128.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-352.000000 160.000000 32.000000
-320.000000 160.000000 32.000000
-320.000000 160.000000 -192.000000
-352.000000 160.000000 -192.000000
-352.000000 128.000000 32.000000
-320.000000 128.000000 32.000000
-320.000000 128.000000 -192.000000
-352.000000 128.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 160.000000 32.000000
-352.000000 160.000000 32.000000
-352.000000 160.000000 0.000000
-512.000000 160.000000 0.000000
-512.000000 128.000000 32.000000
-352.000000 128.000000 32.000000
-352.000000 128.000000 0.000000
-512.000000 128.000000 0.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 160.000000 0.000000
-480.000000 160.000000 0.000000
-480.000000 160.000000 -448.000000
-512.000000 160.000000 -448.000000
-512.000000 128.000000 0.000000
-480.000000 128.000000 0.000000
-480.000000 128.000000 -448.000000
-512.000000 128.000000 -448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-480.000000 160.000000 -416.000000
-160.000000 160.000000 -416.000000
-160.000000 160.000000 -448.000000
-480.000000 160.000000 -448.000000
-480.000000 128.000000 -416.000000
-160.000000 128.000000 -416.000000
-160.000000 128.000000 -448.000000
-480.000000 128.000000 -448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-192.000000 160.000000 -160.000000
-160.000000 160.000000 -160.000000
-160.000000 160.000000 -416.000000
-192.000000 160.000000 -416.000000
-192.000000 128.000000 -160.000000
-160.000000 128.000000 -160.000000
-160.000000 128.000000 -416.000000
-192.000000 128.000000 -416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-320.000000 160.000000 -160.000000
-192.000000 160.000000 -160.000000
-192.000000 160.000000 -192.000000
-320.000000 160.000000 -192.000000
-320.000000 128.000000 -160.000000
-192.000000 128.000000 -160.000000
-192.000000 128.000000 -192.000000
-320.000000 128.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 192.000000 32.000000
-320.000000 192.000000 32.000000
-320.000000 192.000000 -160.000000
-512.000000 192.000000 -160.000000
-512.000000 160.000000 32.000000
-320.000000 160.000000 32.000000
-320.000000 160.000000 -160.000000
-512.000000 160.000000 -160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-512.000000 192.000000 -160.000000
-160.000000 192.000000 -160.000000
-160.000000 192.000000 -448.000000
-512.000000 192.000000 -448.000000
-512.000000 160.000000 -160.000000
-160.000000 160.000000 -160.000000
-160.000000 160.000000 -448.000000
-512.000000 160.000000 -448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-480.000000 224.000000 -192.000000
-192.000000 224.000000 -192.000000
-192.000000 224.000000 -416.000000
-480.000000 224.000000 -416.000000
-480.000000 192.000000 -192.000000
-192.000000 192.000000 -192.000000
-192.000000 192.000000 -416.000000
-480.000000 192.000000 -416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-480.000000 224.000000 0.000000
-352.000000 224.000000 0.000000
-352.000000 224.000000 -192.000000
-480.000000 224.000000 -192.000000
-480.000000 192.000000 0.000000
-352.000000 192.000000 0.000000
-352.000000 192.000000 -192.000000
-480.000000 192.000000 -192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-448.000000 256.000000 -224.000000
-224.000000 256.000000 -224.000000
-224.000000 256.000000 -384.000000
-448.000000 256.000000 -384.000000
-448.000000 224.000000 -224.000000
-224.000000 224.000000 -224.000000
-224.000000 224.000000 -384.000000
-448.000000 224.000000 -384.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-448.000000 256.000000 -32.000000
-384.000000 256.000000 -32.000000
-384.000000 256.000000 -224.000000
-448.000000 256.000000 -224.000000
-448.000000 224.000000 -32.000000
-384.000000 224.000000 -32.000000
-384.000000 224.000000 -224.000000
-448.000000 224.000000 -224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 32.000000 384.000000
256.000000 32.000000 384.000000
256.000000 32.000000 -736.000000
-768.000000 32.000000 -736.000000
-768.000000 0.000000 384.000000
256.000000 0.000000 384.000000
256.000000 0.000000 -736.000000
-768.000000 0.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
256.000000 32.000000 32.000000
288.000000 32.000000 32.000000
288.000000 32.000000 -736.000000
256.000000 32.000000 -736.000000
256.000000 0.000000 32.000000
288.000000 0.000000 32.000000
288.000000 0.000000 -736.000000
256.000000 0.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
288.000000 32.000000 -64.000000
352.000000 32.000000 -64.000000
352.000000 32.000000 -736.000000
288.000000 32.000000 -736.000000
288.000000 0.000000 -64.000000
352.000000 0.000000 -64.000000
352.000000 0.000000 -736.000000
288.000000 0.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
352.000000 32.000000 -192.000000
416.000000 32.000000 -192.000000
416.000000 32.000000 -736.000000
352.000000 32.000000 -736.000000
352.000000 0.000000 -192.000000
416.000000 0.000000 -192.000000
416.000000 0.000000 -736.000000
352.000000 0.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
416.000000 32.000000 -416.000000
480.000000 32.000000 -416.000000
480.000000 32.000000 -736.000000
416.000000 32.000000 -736.000000
416.000000 0.000000 -416.000000
480.000000 0.000000 -416.000000
480.000000 0.000000 -736.000000
416.000000 0.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
480.000000 32.000000 -544.000000
512.000000 32.000000 -544.000000
512.000000 32.000000 -736.000000
480.000000 32.000000 -736.000000
480.000000 0.000000 -544.000000
512.000000 0.000000 -544.000000
512.000000 0.000000 -736.000000
480.000000 0.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
512.000000 32.000000 -672.000000
576.000000 32.000000 -672.000000
576.000000 32.000000 -736.000000
512.000000 32.000000 -736.000000
512.000000 0.000000 -672.000000
576.000000 0.000000 -672.000000
576.000000 0.000000 -736.000000
512.000000 0.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 32.000000 416.000000
192.000000 32.000000 416.000000
192.000000 32.000000 384.000000
-768.000000 32.000000 384.000000
-768.000000 0.000000 416.000000
192.000000 0.000000 416.000000
192.000000 0.000000 384.000000
-768.000000 0.000000 384.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 32.000000 480.000000
-96.000000 32.000000 480.000000
-96.000000 32.000000 384.000000
-768.000000 32.000000 384.000000
-768.000000 0.000000 480.000000
-96.000000 0.000000 480.000000
-96.000000 0.000000 384.000000
-768.000000 0.000000 384.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 32.000000 544.000000
-352.000000 32.000000 544.000000
-352.000000 32.000000 480.000000
-768.000000 32.000000 480.000000
-768.000000 0.000000 544.000000
-352.000000 0.000000 544.000000
-352.000000 0.000000 480.000000
-768.000000 0.000000 480.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 32.000000 608.000000
-480.000000 32.000000 608.000000
-480.000000 32.000000 544.000000
-768.000000 32.000000 544.000000
-768.000000 0.000000 608.000000
-480.000000 0.000000 608.000000
-480.000000 0.000000 544.000000
-768.000000 0.000000 544.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 32.000000 640.000000
-576.000000 32.000000 640.000000
-576.000000 32.000000 608.000000
-768.000000 32.000000 608.000000
-768.000000 0.000000 640.000000
-576.000000 0.000000 640.000000
-576.000000 0.000000 608.000000
-768.000000 0.000000 608.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-736.000000 64.000000 -608.000000
320.000000 64.000000 -608.000000
320.000000 64.000000 -736.000000
-736.000000 64.000000 -736.000000
-736.000000 32.000000 -608.000000
320.000000 32.000000 -608.000000
320.000000 32.000000 -736.000000
-736.000000 32.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 64.000000 544.000000
-640.000000 64.000000 544.000000
-640.000000 64.000000 -736.000000
-768.000000 64.000000 -736.000000
-768.000000 32.000000 544.000000
-640.000000 32.000000 544.000000
-640.000000 32.000000 -736.000000
-768.000000 32.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 128.000000 -640.000000
256.000000 128.000000 -640.000000
256.000000 128.000000 -736.000000
-768.000000 128.000000 -736.000000
-768.000000 64.000000 -640.000000
256.000000 64.000000 -640.000000
256.000000 64.000000 -736.000000
-768.000000 64.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 128.000000 512.000000
-672.000000 128.000000 512.000000
-672.000000 128.000000 -640.000000
-768.000000 128.000000 -640.000000
-768.000000 64.000000 512.000000
-672.000000 64.000000 512.000000
-672.000000 64.000000 -640.000000
-768.000000 64.000000 -640.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 224.000000 -672.000000
192.000000 224.000000 -672.000000
192.000000 224.000000 -736.000000
-768.000000 224.000000 -736.000000
-768.000000 128.000000 -672.000000
192.000000 128.000000 -672.000000
192.000000 128.000000 -736.000000
-768.000000 128.000000 -736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-768.000000 224.000000 448.000000
-704.000000 224.000000 448.000000
-704.000000 224.000000 -672.000000
-768.000000 224.000000 -672.000000
-768.000000 128.000000 448.000000
-704.000000 128.000000 448.000000
-704.000000 128.000000 -672.000000
-768.000000 128.000000 -672.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-640.000000 64.000000 -64.000000
-608.000000 64.000000 -64.000000
-608.000000 64.000000 -608.000000
-640.000000 64.000000 -608.000000
-640.000000 32.000000 -64.000000
-608.000000 32.000000 -64.000000
-608.000000 32.000000 -608.000000
-640.000000 32.000000 -608.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-608.000000 64.000000 -512.000000
-192.000000 64.000000 -512.000000
-192.000000 64.000000 -608.000000
-608.000000 64.000000 -608.000000
-608.000000 32.000000 -512.000000
-192.000000 32.000000 -512.000000
-192.000000 32.000000 -608.000000
-608.000000 32.000000 -608.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-672.000000 128.000000 -576.000000
-288.000000 128.000000 -576.000000
-288.000000 128.000000 -640.000000
-672.000000 128.000000 -640.000000
-672.000000 64.000000 -576.000000
-288.000000 64.000000 -576.000000
-288.000000 64.000000 -640.000000
-672.000000 64.000000 -640.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-672.000000 128.000000 -320.000000
-640.000000 128.000000 -320.000000
-640.000000 128.000000 -576.000000
-672.000000 128.000000 -576.000000
-672.000000 64.000000 -320.000000
-640.000000 64.000000 -320.000000
-640.000000 64.000000 -576.000000
-672.000000 64.000000 -576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-704.000000 224.000000 -608.000000
-416.000000 224.000000 -608.000000
-416.000000 224.000000 -672.000000
-704.000000 224.000000 -672.000000
-704.000000 128.000000 -608.000000
-416.000000 128.000000 -608.000000
-416.000000 128.000000 -672.000000
-704.000000 128.000000 -672.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
0.000000 64.000000 -128.000000
160.000000 64.000000 -128.000000
160.000000 64.000000 -512.000000
0.000000 64.000000 -512.000000
0.000000 32.000000 -128.000000
160.000000 32.000000 -128.000000
160.000000 32.000000 -512.000000
0.000000 32.000000 -512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
160.000000 64.000000 -192.000000
256.000000 64.000000 -192.000000
256.000000 64.000000 -480.000000
160.000000 64.000000 -480.000000
160.000000 32.000000 -192.000000
256.000000 32.000000 -192.000000
256.000000 32.000000 -480.000000
160.000000 32.000000 -480.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
64.000000 96.000000 -224.000000
160.000000 96.000000 -224.000000
160.000000 96.000000 -448.000000
64.000000 96.000000 -448.000000
64.000000 64.000000 -224.000000
160.000000 64.000000 -224.000000
160.000000 64.000000 -448.000000
64.000000 64.000000 -448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
160.000000 96.000000 -288.000000
192.000000 96.000000 -288.000000
192.000000 96.000000 -416.000000
160.000000 96.000000 -416.000000
160.000000 64.000000 -288.000000
192.000000 64.000000 -288.000000
192.000000 64.000000 -416.000000
160.000000 64.000000 -416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-544.000000 64.000000 512.000000
-416.000000 64.000000 512.000000
-416.000000 64.000000 192.000000
-544.000000 64.000000 192.000000
-544.000000 32.000000 512.000000
-416.000000 32.000000 512.000000
-416.000000 32.000000 192.000000
-544.000000 32.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-416.000000 64.000000 352.000000
-192.000000 64.000000 352.000000
-192.000000 64.000000 96.000000
-416.000000 64.000000 96.000000
-416.000000 32.000000 352.000000
-192.000000 32.000000 352.000000
-192.000000 32.000000 96.000000
-416.000000 32.000000 96.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-416.000000 64.000000 416.000000
-224.000000 64.000000 416.000000
-224.000000 64.000000 352.000000
-416.000000 64.000000 352.000000
-416.000000 32.000000 416.000000
-224.000000 32.000000 416.000000
-224.000000 32.000000 352.000000
-416.000000 32.000000 352.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-384.000000 96.000000 352.000000
-288.000000 96.000000 352.000000
-288.000000 96.000000 160.000000
-384.000000 96.000000 160.000000
-384.000000 64.000000 352.000000
-288.000000 64.000000 352.000000
-288.000000 64.000000 160.000000
-384.000000 64.000000 160.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-480.000000 96.000000 416.000000
-416.000000 96.000000 416.000000
-416.000000 96.000000 256.000000
-480.000000 96.000000 256.000000
-480.000000 64.000000 416.000000
-416.000000 64.000000 416.000000
-416.000000 64.000000 256.000000
-480.000000 64.000000 256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-416.000000 96.000000 384.000000
-384.000000 96.000000 384.000000
-384.000000 96.000000 224.000000
-416.000000 96.000000 224.000000
-416.000000 64.000000 384.000000
-384.000000 64.000000 384.000000
-384.000000 64.000000 224.000000
-416.000000 64.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-384.000000 128.000000 320.000000
-352.000000 128.000000 320.000000
-352.000000 128.000000 288.000000
-384.000000 128.000000 288.000000
-384.000000 96.000000 320.000000
-352.000000 96.000000 320.000000
-352.000000 96.000000 288.000000
-384.000000 96.000000 288.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
160.000000 64.000000 320.000000
224.000000 64.000000 320.000000
224.000000 64.000000 128.000000
160.000000 64.000000 128.000000
160.000000 32.000000 320.000000
224.000000 32.000000 320.000000
224.000000 32.000000 128.000000
160.000000 32.000000 128.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
128.000000 64.000000 352.000000
160.000000 64.000000 352.000000
160.000000 64.000000 192.000000
128.000000 64.000000 192.000000
128.000000 32.000000 352.000000
160.000000 32.000000 352.000000
160.000000 32.000000 192.000000
128.000000 32.000000 192.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type PlayerSpawn
Vector3 position -352.000000 32.000000 -320.000000
Vector3 angles 45.000000 0.000000 0.000000
Bool8 teamA 0
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Effect
Vector3 position 0.000000 256.000000 0.000000
String64 effectName internal/misc/reflectionprobe
entity
type Target
Vector3 position 320.000000 256.000000 320.000000
Vector3 angles -135.000000 30.000000 0.000000
String32 name end
entity
type PlayerSpawn
Vector3 position -32.000000 32.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 64.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 96.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 128.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 160.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 192.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -64.000000 192.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 192.000000 224.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 0.000000 192.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 192.000000 160.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 160.000000 160.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 0.000000 160.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 160.000000 224.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -64.000000 160.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -64.000000 160.000000 160.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -64.000000 160.000000 224.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -64.000000 128.000000 224.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 128.000000 224.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 0.000000 128.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 128.000000 160.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -64.000000 128.000000 160.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -64.000000 128.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -96.000000 128.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -96.000000 128.000000 160.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -96.000000 128.000000 224.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 0.000000 128.000000 224.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 0.000000 128.000000 256.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 128.000000 256.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -64.000000 128.000000 256.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 0.000000 128.000000 160.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 32.000000 128.000000 160.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 32.000000 128.000000 224.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 32.000000 128.000000 192.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 0.000000 128.000000 128.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -32.000000 128.000000 128.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -64.000000 128.000000 128.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 160.000000 192.000000 -352.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 192.000000 -352.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 96.000000 192.000000 -352.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 96.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 128.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 192.000000 192.000000 -256.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 192.000000 192.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 192.000000 192.000000 -320.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 160.000000 192.000000 -320.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 160.000000 224.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 224.000000 -320.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 160.000000 256.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 256.000000 -320.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 160.000000 192.000000 -256.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 160.000000 192.000000 -224.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 192.000000 -224.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 96.000000 192.000000 -224.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 96.000000 256.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 224.000000 -256.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 256.000000 -256.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 64.000000 192.000000 -256.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 64.000000 192.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 64.000000 192.000000 -320.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 96.000000 224.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 160.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 192.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 224.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 256.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 96.000000 192.000000 -256.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 96.000000 192.000000 -320.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 160.000000 224.000000 -320.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 96.000000 224.000000 -256.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 96.000000 192.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 192.000000 -256.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 160.000000 192.000000 -288.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 128.000000 192.000000 -320.000000
Bool8 teamB 0
|
15b82ce8cda77172aec51b6ff6c60aafcbc1c4dc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1397/CH10/EX10.1/10_1.sce | d7e873ef171748073cfe4140f7a699beda84e780 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 393 | sce | 10_1.sce | //clc();
clear;
//To determine the specific heat per Kmol and highest lattice frequency
T=20; //specific heat
Td=1850; //numerical temperature
K=1.38*10^-23;
N=6.02*10^26;
R=K*N;
a=%pi^4;
b=12*a*R*T^3;
Cv=b/(5*Td^3);
printf("specific heat in Joule/kmol-k is");
disp(Cv);
h=6.626*10^-34;
Vd=(K*Td)/h;
printf("highest lattice frquency in sec -1 is");
disp(Vd);
|
1022d2613d7ead000ccdc8a4c1f07bb05cbe0315 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3012/CH7/EX7.5/Ex7_5.sce | e6639a76e17c3f2e7e2f01cbbb28e77b4af039f6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,529 | sce | Ex7_5.sce | // Given:-
p1 = 3.0 // entry pressure in Mpa
p2 = 0.5 // exit pressure in Mpa
T1 = 320.0 // entry temperature in degree celcius
T0 = 25.0 // in degree celcius
p0 = 1.0 // in atm
// From table A-4
h1 = 3043.4 // in kj/kg
s1 = 6.6245 // in kj/kg.k
h2 = h1 // from reduction of the steady-state mass and energy rate balances
s2 = 7.4223 // Interpolating at a pressure of 0.5 MPa with h2 = h1, units in kj/kg.k
// From table A-2
h0 = 104.89 // in kj/kg
s0 = 0.3674 // in kj/kg.k
// Calculations
ef1 = h1-h0-(T0+273)*(s1-s0) // flow exergy at the inlet
ef2 = h2-h0-(T0+273)*(s2-s0) // flow exergy at the exit
// From the steady-state form of the exergy rate balance
Ed = ef1-ef2 // the exergy destruction per unit of mass flowing is
// Results
printf( ' The specific flow exergy at the inlet is %.2f kJ/kg.',ef1)
printf( ' The specific flow exergy at the exit is %.2f kJ/kg.',ef2)
printf( ' The exergy destruction per unit of mass flowing is %.2f kJ/kg.',Ed)
|
46629a0c6f665f8e2d19c90f6e9b767c2ca6a786 | e7607c4e9e4b6dde6632b4ec7b0e2d5fce49b455 | /04.sce | a53320bf12d7569d1bf46d5086508e24b204c3c0 | [] | no_license | sbednarz/scilab2 | e9ae532ac7d0f128dfb9ab818099c848ebc121e4 | fd71642815991339eb854aec8700be4685542e27 | refs/heads/master | 2021-06-12T12:20:00.919646 | 2017-04-05T13:09:10 | 2017-04-05T13:09:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 350 | sce | 04.sce | // dysocjacja słabego kwasu
// K = x**2/(A0-x)
function y = model(x)
K = 1e-4
A0 = 0.1
y = K - x**2/(A0 - x)
endfunction
guess = 1e-5
[x,v,i] = fsolve(guess, model)
disp('wynik:')
disp(x) // wynik
disp(v) // jak blisko zera
disp(i) // 1 to OK
// policzyć A0 dla ...
// A <=> B + C + D
// K = ...
// K=.. A0=..
// A + B <=> C + D
|
80c5471683212fbf1958d3d495c5e278f58dabb5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /905/CH8/EX8.3/8_3.sce | 63c1bbaceac7a4894689064163c3c8c29b5e8d57 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,215 | sce | 8_3.sce | clear;
clc;
// Illustration 8.2
// Page: 482
printf('Illustration 8.3 - Page: 482\n\n');
// solution
// A - water vapor B - air
//*****Data*****
T = 328; // [dry bulb temperature, K]
P_total = 1; // [atm]
H = 30; // [relative humidity, %]
//*****//
P_vapA = 15.73; // [vapor pressure of water, kPa]
P_total = P_total*101.325; // [kPa]
M_A = 18; // [gram/mole]
M_B = 29; // [gram/mole]
P_A = (H/100)*P_vapA;// [partial pressure of A,kPa]
printf('Illustration 8.3 (a)\n\n');
// At dew point partial pressure is equal to vapor pressure
// Using Antonnie equation we can find dew point temperature
printf("Dew point temperature is 304.5 K\n")
// From equation 8.1
Y_s = P_A/(P_total-P_A)*(M_A/M_B);
printf("Absolute humidity of air-water mixture at 328 K is %f kg H2O/kg dry air\n\n",Y_s);
printf('Illustration 8.3 (b)\n\n');
//soluton (b)
T_ref = 273; // [K]
C_A = 1.884; // [kJ/kg.K]
C_B = 1.005; // [kJ/kg.K]
lambda = 2502.3; // [Latent heat of Vaporization at 273 K, kJ/kg]
// From equation 8.3
H_s = C_B*(T-T_ref) + Y_s*(C_A*(T-T_ref) + lambda);
printf("Enthalpy per unit mass of dry air of a saturated mixture relative to 273 K is %f kJ/kg dry air\n",H_s); |
4bdb6e3a036db083079444074a533f9518da62d3 | d167200e784b8019615f6b37b5a46b91ec43b98d | /macros/align.sci | 3f18999e55573a57d4937ce3c2a902b7bb3685fe | [] | no_license | AshishMantosh/FOSSEE-Image-Processing-Toolbox | ee9c1a00f97627f372fae1d7d851c4905ac9d83e | e4fbe1891e13e4dc9b62513f0aef2b101638f084 | refs/heads/master | 2021-01-01T19:05:15.966438 | 2017-07-27T07:16:11 | 2017-07-27T07:16:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,568 | sci | align.sci | // Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author: Ashish Manatosh Barik
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
//
function [outImg1, outImg2, outImg3, varargout] = align(maxBits, excludeRange, cut, num, srcImg1, srcImg2, srcImg3, varargin)
// This function aligns the set of input images for HDR image creation.
//
// Calling Sequence
// [out1, out2, out3] = align(maxBits, excludeRange, cut, num, srcImg_1, srcImg_2, srcImg_3)
// [out1, out2, out3, out4] = align(maxBits, excludeRange, cut, num, srcImg1, srcImg_2, srcImg_3, srcImg_4)
// [out1, out2, out3, out4, out5] = align(maxBits, excludeRange, cut, num, srcImg_1, srcImg_2, srcImg_3, srcImg_4, srcImg_5)
//
// Parameters
// maxBits : Logarithm to the base 2 of maximal shift in each dimension. Values of 5 and 6 are usually good enough (31 and 63 pixels shift respectively). Value should not exceed 6. It is of Double type.
// excludeRange : Range for exclusion bitmap that is constructed to suppress noise around the median value. It is of Double type.
// cut : If true, cuts images. Otherwise fills the new regions with zeros. It is of Boolean type.
// num : Number of images given as input source images(3 - 5). It is of double type.
// srcImg_i : Hypermat of image_i.
//
// Description
// This function uses AlignMTB algorithm which converts images to median threshold bitmaps (1 for pixels brighter than median luminance and 0 otherwise) and than aligns the resulting bitmaps using bit operations.
//
// Examples
// a = imread("/images/m1.jpeg");
// b = imread("/images/m2.jpeg");
// c = imread("/images/m3.jpeg");
// num = 3;
// maxBits= 6;
// excludeRange = 4;
// cut = %t;
// [x, y, z] = align(maxBits, excludeRange, cut, num, a, b, c);
//
// Examples
// a = imread("/images/t1.jpeg");
// b = imread("/images/t2.jpeg");
// c = imread("/images/t3.jpeg");
// d = imread("/images/t4.jpeg");
// num = 4;
// maxBits= 6;
// excludeRange = 4;
// cut = %f;
// [x, y, z, p] = align(maxBits, excludeRange, cut, num, a, b, c, d);
//
// Examples
// // error cause maxBits value is greater than 6
// a = imread("/images/m1.jpeg");
// b = imread("/images/m2.jpeg");
// c = imread("/images/m3.jpeg");
// d = imread("/images/m4.jpeg");
// num = 4;
// maxBits= 7;
// excludeRange = 4;
// cut = %t;
// [x, y, z, p] = align(maxBits, excludeRange, cut, num, a, b, c, d);
//
// Examples
// a = imread("/images/m1.jpeg");
// b = imread("/images/m2.jpeg");
// c = imread("/images/m3.jpeg");
// d = imread("/images/m4.jpeg");
// e = imread("/images/m5.jpeg");
// num = 5;
// maxBits= 6;
// excludeRange = 4;
// cut = %t;
// [x, y, z, p, q] = align(maxBits, excludeRange, cut, num, a, b, c, d, e);
//
// Examples
// // cut is set false here (if true cuts images, otherwise fills the new regions with zeros. )
// a = imread("/images/t1.jpeg");
// b = imread("/images/t2.jpeg");
// c = imread("/images/t3.jpeg");
// num = 3;
// maxBits= 1;
// excludeRange = 4;
// cut = %t;
// [x, y, z] = align(maxBits, excludeRange, cut, num, a, b, c);
//
// Examples
// // aligns the images for the making of 1 HDR image
// a = imread("/images/m1.jpeg");
// b = imread("/images/m2.jpeg");
// c = imread("/images/m3.jpeg");
// num = 3;
// maxBits= 5;
// excludeRange = 4;
// cut = %t;
//[x, y, z] = align(maxBits, excludeRange, cut, num, a, b, c);
//
// Examples
// // aligns the images for the making of 1 HDR image
// a = imread("/images/t1.jpeg");
// b = imread("/images/t2.jpeg");
// c = imread("/images/t3.jpeg");
// num = 3;
// maxBits= 5;
// excludeRange = 4;
// cut = %t;
// [x, y, z] = align(maxBits, excludeRange, cut, num, a, b, c);
//
// Examples
// // aligns the images for the making of 1 HDR image
// a = imread("/images/m1.jpeg");
// b = imread("/images/m2.jpeg");
// c = imread("/images/m3.jpeg");
// num = 3;
// maxBits= 5;
// excludeRange = 3;
// cut = %f;
// [x, y, z] = align(maxBits, excludeRange, cut, num, a, b, c);
//
// Examples
// // maxBits = 6, leads to noticeable pixel shift
// a = imread("/images/t1.jpeg");
// b = imread("/images/t2.jpeg");
// c = imread("/images/t3.jpeg");
// d = imread("/images/t4.jpeg");
// num = 4;
// maxBits= 5;
// excludeRange = 5;
// cut = %t;
// [x, y, z, p] = align(maxBits, excludeRange, cut, num, a, b, c, d);
//
// Examples
// // maxBits = 6, leads to noticeable pixel shift
// a = imread("/images/t1.jpeg");
// b = imread("/images/t2.jpeg");
// c = imread("/images/t3.jpeg");
// num = 3;
// maxBits= 5;
// excludeRange = 6;
// cut = %f;
// [x, y, z, p] = align(maxBits, excludeRange, cut, num, a, b, c, d);
//
// Authors
// Ashish Manatosh Barik, NIT Rourkela
//
srcMat1 = mattolist(srcImg1)
srcMat2 = mattolist(srcImg2)
srcMat3 = mattolist(srcImg3)
[lhs, rhs] = argn(0)
select rhs
case 7 then
[out1, out2, out3] = raw_align(maxBits, excludeRange, cut, num, srcMat1, srcMat2, srcMat3)
channels1 = size(out1)
channels2 = size(out2)
channels3 = size(out3)
for i = 1:channels1
outImg1(:, :, i) = (out1(i))
end
for j = 1:channels2
outImg2(:, :, j) = (out2(j))
end
for k = 1:channels3
outImg3(:, :, k) = (out3(k))
end
case 8 then
srcMat4 = mattolist(varargin(1))
[out1, out2, out3, out4] = raw_align(maxBits, excludeRange, cut, num, srcMat1, srcMat2, srcMat3, srcMat4)
channels1 = size(out1)
channels2 = size(out2)
channels3 = size(out3)
channels4 = size(out4)
for i = 1:channels1
outImg1(:, :, i) = (out1(i))
end
for j = 1:channels2
outImg2(:, :, j) = (out2(j))
end
for k = 1:channels3
outImg3(:, :, k) = (out3(k))
end
for l = 1:channels4
outImg4(:, :, l) = (out4(l))
end
varargout(1) = outImg4
case 9 then
srcMat4 = mattolist(varargin(1))
srcMat5 = mattolist(varargin(2))
[out1, out2, out3, out4, out5] = raw_align(maxBits, excludeRange, cut, num, srcMat1, srcMat2, srcMat3, srcMat4, srcMat5)
channels1 = size(out1)
channels2 = size(out2)
channels3 = size(out3)
channels4 = size(out4)
channels5 = size(out5)
for i = 1:channels1
outImg1(:, :, i) = (out1(i))
end
for j = 1:channels2
outImg2(:, :, j) = (out2(j))
end
for k = 1:channels3
outImg3(:, :, k) = (out3(k))
end
for l = 1:channels4
outImg4(:, :, l) = (out4(l))
end
varargout(1) = outImg4
for m = 1:channels5
outImg5(:, :, m) = (out5(m))
end
varargout(2) = outImg5
case 10 then
srcMat4 = mattolist(varargin(1))
srcMat5 = mattolist(varargin(2))
srcMat6 = mattolist(varargin(3))
[out1, out2, out3, out4, out5, out6] = raw_align(maxBits, excludeRange, cut, num, srcMat1, srcMat2, srcMat3, srcMat4, srcMat5, srcMat6)
channels1 = size(out1)
channels2 = size(out2)
channels3 = size(out3)
channels4 = size(out4)
channels5 = size(out5)
channels6 - size(out6)
for i = 1:channels1
outImg1(:, :, i) = (out1(i))
end
for j = 1:channels2
outImg2(:, :, j) = (out2(j))
end
for k = 1:channels3
outImg3(:, :, k) = (out3(k))
end
for l = 1:channels4
outImg4(:, :, l) = (out4(l))
end
varargout(1) = outImg4
for m = 1:channels5
outImg5(:, :, m) = (out5(m))
end
varargout(2) = outImg5
for n = 1:channels6
outImg6(:, :, n) = (out6(n))
end
varargout(3) = outImg6
end
endfunction
|
42bc203c7839777d95a0cd9f1aa39df77d5c2d05 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1859/CH5/EX5.11/exa_5_11.sce | 5a95b8d2e923656378835905a061bba4c6226fc0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 306 | sce | exa_5_11.sce | // Exa 5.11
clc;
clear;
close;
// Given data
Vmax= 255;// in volt
Vx= 180;// in volt
f=10;// in kHz
f=f*10^3;// in Hz
t= (Vmax-Vx)/(2*%pi*f*Vmax);// time taken to read the unknown voltage in second
t=t*10^6;// in micro second
disp(t,"Time taken to read the unknown voltage in micro second");
|
36fb45fedad945b7295f449137226a44d02c4840 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3751/CH16/EX16.10/Ex16_10.sce | 5539e21dcf0b155b3adde8c46ab3f96af7837849 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,489 | sce | Ex16_10.sce | //Fluid Systems - By Shiv Kumar
//Chapter 16- Hydraulic Power and Its Transmissions
//Example 16.10
//To Find (i)The Weight of Loaded Cylinder and energy stored by the Cylinder (ii)Ther Power supplied by the Accumulator (iii)The Diameter of ram of an ordinary Accumulator.
clc
clear
//Given Data:-
D=180; // mm
d=150; //mm
L=1.25; //Stroke length, m
p=100; //Pressure of Water, bar
//Computations:-
D=D/1000; //m
d=d/1000; //m
p=p*10^5; //N/m^2
A=(%pi/4)*(D^2-d^2); //Annular area of Ram, m^2
//(i)
W=p*A/1000; //Weight of Loaded Cylinder, kN
Energy=W*L; //Energy stored in the Accumulator, kNm
//(ii)
t=90; //Time taken by ram to complete the stroke, seconds
P=W*L/t; //kW
//(iii)
D=(W*1000/(p*%pi/4))^(1/2)*1000; //mm
//Results:-
printf("(i)Weight of Loaded Cylinder, W=%.2f kN\n",W) //The answer vary due to round off error
printf(" Energy stored in the Accumulator=%.3f kNm\n",Energy) //The answer vary due to round off error
printf("(ii)Power Supplied by the Accumulator=%.3f kW\n",P) //The answer vary due to round off error
printf("(iii)Ram Diameter (In case of Ordinary Accumulator) = %.2f mm\n",D) //The answer vary due to round off error
|
6fbd58a70a5cea418567a579120167dc570b5fa3 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/coff.man.tst | f45aef7e5090be7bea9a727f2941ccf251e7433b | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 63 | tst | coff.man.tst | clear;lines(0);
M=[1,2;0,3];
[N,d]=coff(M)
N/d
inv(%s*eye()-M)
|
84655851289d43f5624a6428af38308081723427 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH2/EX2.8/ex2_8.sce | 8cc0b2cdcb199e0ae0169b520daab02f2fb55175 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 401 | sce | ex2_8.sce | // Exa 2.8
clc;
clear;
close;
format('v',7)
// Given data
R1 = 4;// in ohm
R2 = 24;// in ohm
R_L = 16;// in ohm
V1 = 20;// in V
V2 = 30;// in V
// V1-R1*I-R2*I-V2 = 0;
I= (V1-V2)/(R1+R2)
// V1-R1*I-Vth = 0;
Vth = V1-R1*I;// in V
Rth = (R1*R2)/(R1+R2);// in ohm
// current through 16 ohm resistor
I_L = Vth/(Rth+R_L);// in A
disp(I_L,"The current through 16 ohm resistor in A is");
|
5b94181471a91de5a42e35f0d0f9baa1f5155c8f | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/Data/UserMenu_Standard/02_Space travel/01_Models/03_Voyager/Voyager.SCI | 1553a1e6e19cc0be77bb1c53a0bec2f96508e2c8 | [
"LicenseRef-scancode-khronos",
"MIT"
] | permissive | pvaut/Z-Flux | 870e254bf340047ed2a52d888bc6f5e09357a8a0 | 096d53d45237fb22f58304b82b1a90659ae7f6af | refs/heads/master | 2023-06-28T08:24:56.526409 | 2023-03-01T12:44:08 | 2023-03-01T12:44:08 | 7,296,248 | 1 | 1 | null | 2023-06-13T13:04:58 | 2012-12-23T15:40:26 | C | UTF-8 | Scilab | false | false | 328 | sci | Voyager.SCI | codeblock readtextfile(ScriptDir+"\_TOOLS.sci");
codeblock readtextfile(ScriptDir+"\_SSYS.sci");
codeblock readtextfile(ScriptDir+"\space\models\_animatemodel.sci");
tr=transformation;
#tr.rotate(vector(1,0,0),-0.5*Pi);
#tr.translate(vector(-4,-2,0));
animatemodel(datadir+"\Models\voyager","voyager","3DS",tr,0.03,true);
|
d154f8e2ee152e071a7ba312b8b92c37e246e1de | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Electrical_And_Electronic_Principles_And_Technology_J._Bird_1529.zip/Electrical_And_Electronic_Principles_And_Technology_J._Bird_1529/CH15/EX15.19/15_19.sce | 87ab79acc26185be23dee1af1bdf5d3a63299f00 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 492 | sce | 15_19.sce | errcatch(-1,"stop");mode(2);//Chapter 15, Problem 19
;
I=100e-6;
V=2e-3; //supply voltage
f=200e3; //frequency
L=50e-6; //inductance in henry
R=V/I; //resistance in ohm
C=1/((2*%pi*f)^2*L); //capacitance in farad
printf("(a) Circuit resistance, R = %d ohm\n\n",R);
printf("(b) Circuit capacitance, C = %.1f nF\n\n",C*10^9);
exit();
|
e1d80d957d0d098be4271acdd92a5d8e6715db73 | 449d555969bfd7befe906877abab098c6e63a0e8 | /147/CH3/EX3.2/Example3_2.sce | 6bc54c7d689230911c64ee458f7eaf9f9b14530c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 300 | sce | Example3_2.sce | //V = Vmax*sin(omega*t) i = imax*sin(omega*t-phi)
close();
clear;
clc;
Vmax = 155.6;
omega = 377;//Deg
imax = 7.07;
phi = 36.87;
f = omega/(2*%pi);
T = 1/f;
phase_angle = phi*%pi/180;
mprintf('frequency f = %0.0f Hz\nT = %0.4f s \nphase angle betwwen v and i = %0.2f rad',f,T,phase_angle); |
923045f054d9a210cc6cf837df9ffbaff4a7f61c | 6d1f05d2074f1d6f18d3d473f2dbd867c94fc7ee | /giarratano/SOURCE/TESTING/example.tst | 8ad6d824383131a2edf308fe6cd1606319d15ee9 | [] | no_license | arranger1044/icse-1516 | c40d2c86892cd90c14042a95581cbb0e238190fb | ee4bafb57bb549ef40e29b8edf8cdad038e97162 | refs/heads/master | 2020-12-24T19:04:01.588095 | 2016-05-31T07:46:47 | 2016-05-31T07:46:47 | 56,578,768 | 14 | 5 | null | null | null | null | UTF-8 | Scilab | false | false | 2,638 | tst | example.tst | (set-sequence-operator-recognition FALSE)
(set-dynamic-constraint-checking FALSE)
(set-strategy depth)
(unwatch all)
(watch rules)
; mab.clp test
(clear)
(open "example.rsl" example "w")
(load "compline.clp")
(load "mab.clp")
(reset)
(progn (dribble-on "mab.out") (run) (dribble-off))
(printout example "mab.clp differences are as follows:" crlf)
(compare-files mab.exp mab.out example)
; dilemma1.clp test
(clear)
(load "compline.clp")
(load "dilemma1.clp")
(reset)
(progn (dribble-on "dilemma1.out") (run) (dribble-off))
(printout example "dilemma1.clp differences are as follows:" crlf)
(compare-files dilemma1.exp dilemma1.out example)
; dilemma2.clp test
(clear)
(load "compline.clp")
(load "dilemma2.clp")
(reset)
(watch deffunctions)
(progn (dribble-on "dilemma2.out") (run) (dribble-off))
(unwatch deffunctions)
(printout example "dilemma2.clp differences are as follows:" crlf)
(compare-files dilemma2.exp dilemma2.out example)
; wordgame.clp test
(clear)
(load "compline.clp")
(load "wordgame.clp")
(reset)
(progn (dribble-on "wordgame.out") (run) (dribble-off))
(printout example "wordgame.clp differences are as follows:" crlf)
(compare-files wordgame.exp wordgame.out example)
; zebra.clp test
(clear)
(load "compline.clp")
(load "zebra.clp")
(reset)
(progn (dribble-on "zebra.out") (run) (dribble-off))
(printout example "zebra.clp differences are as follows:" crlf)
(compare-files zebra.exp zebra.out example)
; electronic.clp test
(clear)
(set-strategy mea)
(load "compline.clp")
(load "electrnc.clp")
(load "circuit3.clp")
(reset)
(progn (dribble-on "electrnc.out") (run) (dribble-off))
(printout example "electronic.clp differences are as follows:" crlf)
(compare-files electrnc.exp electrnc.out example)
; object monkeys & bananas test
(set-strategy depth)
(watch rules)
(clear)
(setgen 1)
(load "compline.clp")
(load "mabobj.clp")
(reset)
(progn (dribble-on "mabobj.out") (run) (dribble-off))
(printout example "mabobj.clp differences are as follows:" crlf)
(compare-files mabobj.exp mabobj.out example)
; object farmer's dilemma example
(clear)
(setgen 1)
(load "compline.clp")
(load "objfarm.clp")
(reset)
(progn (dribble-on "objfarm.out") (run) (dribble-off))
(printout example "objfarm.clp differences are as follows:" crlf)
(compare-files objfarm.exp objfarm.out example)
; object wordgame example
(clear)
(setgen 1)
(load "compline.clp")
(load "wrdgmobj.clp")
(reset)
(progn (dribble-on "wrdgmobj.out") (run) (dribble-off))
(printout example "wrdgmobj.clp differences are as follows:" crlf)
(compare-files wrdgmobj.exp wrdgmobj.out example)
; close result file
(unwatch all)
(set-strategy depth)
(close example)
|
2d88c8f84d9c6c619ff95a4aebe4be19038b5404 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1727/CH1/EX1.3/1_3.sce | d0fbe7497eb45f6edd9939bcdd1df2ff5822f579 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 350 | sce | 1_3.sce | clc
clear
//Initialization of variables
vis=2.5/10 //N s/m^2
D=15 //cm
N=180
dy=0.0001 //m
l=0.15 //m
b=0.25 //m
r=0.152 //m
//calculations
dv=%pi *D*N/60/100
Tau=vis*dv/dy
Tor=Tau*%pi*l*b*r/2
P=Tor*2*%pi*N/60
//results
printf("Power required = %d W",P)
disp("The answer is a bit different due to rounding off error in textbook.")
|
6ab02169b599c3fe5fdca79b9f72953d0bed8349 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH43/EX43.8/Example43_8.sce | 4e609fd39c7abcb1ebde0154e262f092a0f529d8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,116 | sce | Example43_8.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART IV : UTILIZATION AND TRACTION
// CHAPTER 5: ELECTRIC TRACTION-SPEED TIME CURVES AND MECHANICS OF TRAIN MOVEMENT
// EXAMPLE : 5.8 :
// Page number 782-783
clear ; clc ; close ; // Clear the work space and console
// Given data
V_a = 42.0 // Average speed of train(kmph)
D = 1400.0/1000 // Distance(km)
alpha = 1.7 // Acceleration(km phps)
beta = 3.3 // Retardation(km phps)
r = 50.0 // Tractive resistance(N/tonne)
I = 10.0 // Rotational inertia(%)
// Calculations
T = D*3600/V_a // Time for run(sec)
k = (alpha+beta)/(alpha*beta) // Constant
V_m = (T/k)-((T/k)**2-(7200*D/k))**0.5 // Maximum speed over the run(kmph)
t_1 = V_m/alpha // Time of acceleration(sec)
t_3 = V_m/beta // Time(sec)
t_2 = T-(t_1+t_3) // Time(sec)
D_1 = D-(V_a*t_1/(2*3600)) // Distance(km)
We_W = (100+I)/100 // W_e/W
energy = (0.0107*V_m**2*We_W/D)+(0.278*r*D_1/D) // Energy consumption(Wh per tonne-km)
a = gca() ;
a.thickness = 2 // sets thickness of plot
plot([0,t_1,t_1,(t_1+t_2),(t_1+t_2),(t_1+t_2+t_3)],[0,V_m,V_m,V_m,V_m,0]) // Plotting speed-time curve
plot([t_1,t_1],[0,V_m],'r--')
plot([t_1+t_2,t_1+t_2],[0,V_m],'r--')
a.x_label.text = 'Time(seconds)' // labels x-axis
a.y_label.text = 'Speed (km/h)' // labels y-axis
xtitle("Fig E5.1 . Speed-time curve for the run")
xset('thickness',2) // sets thickness of axes
// Results
disp("PART IV - EXAMPLE : 5.8 : SOLUTION :-")
printf("\nSpeed-time curve for the run is shown in Figure E5.1")
printf("\nEnergy consumption at the axles of train = %.1f Wh per tonne-km", energy)
|
c6040944aa60afd6a57685d1682807264b8e0dfe | 449d555969bfd7befe906877abab098c6e63a0e8 | /3886/CH13/EX13.1/13_1.sce | 43f13dc2acb49e1c1f2e764be5f126399b3dda8a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 390 | sce | 13_1.sce | //Pilot and his bomber
//refer fig.13.3
h=2000 //m
u=(600*1000)/(60*60) //m/sec
//initial velocity in vertical direction
//gravitational acceleration=9.81 m/sec^2
//if t is the time of flight
t=sqrt((2000*2)/(9.81)) //sec
//during this period horizontal distance travelled by the bomb must be (d)
d=u*t //m
printf("Bomb should be released at %.2f m from the target",d)
|
7e007b7686c9b2d8d88ce1b29539051f61c47b34 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3041/CH11/EX11.3/Ex11_3.sce | 0e1dd8aaad94a798c12d6ef6a245861f285fc97f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 626 | sce | Ex11_3.sce |
//Variable declaration
T1=1200. //temperature(k)
T2=1000. //temperature(k)
Ww=1.2*10**5 //work function(eV)
k=8.62
Ie1=200 //emission current density
T3=1500. //temperature(k)
//Calculations
Ie2=Ie1*(T2/T1)**2*exp(-(Ww/k)*((1/T2)-(1/T1))) //current density(mA/cm^2) at 1000k
Ie3=Ie1*(T3/T1)**2*exp(-(Ww/k)*((1/T3)-(1/T1))) //current density(mA/cm^2) at 1000k
//Results
printf ("current density at 1000 k is %.2f mA/cm^2",Ie2)
printf ("current density at 1500 k is %.2f mA/cm^2",Ie3)
|
7373772ded323304d83f5615a6a7826de4383ba4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2159/CH12/EX12.4/124.sce | c453eecf242d45c00287f384cb51781b4da154dc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 246 | sce | 124.sce | // problem 12.4
H=150
Q=6
N=400/60
D1=1.2
x1=20
x2=90
B1=0.1
u1=3.142*D1*N
Vf1=Q/(3.142*D1*B1)
Vw1=Vf1/tand(x1)
Vw2=0
w=9810
g=9.81
P=w*Q*Vw1*u1/(g*1000)
disp(P,Vw2,Vw1,"whirl component at inlet and outlet,power developed in Kw")
|
c88c48f7909bf90eb46357636a06d640456b9a04 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1373/CH3/EX3.5/Chapter3_Example5.sce | a9e09651efa2815bf85025092b769680c0bfa330 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 642 | sce | Chapter3_Example5.sce | //Chapter-3, Example 3.5, Page 55
//=============================================================================
clc
clear
//INPUT DATA
L=0.2;//Thickness of the wall in m
T=[1000,200];//Surface temperatures in degree C
ko=0.813;//Value of thermal conductivity at T=0 in W/m.K
b=0.0007158;//Temperature coefficient of thermal conductivity in 1/K
//CALCULATIONS
km=ko*(1+((b*(T(1)+T(2)))/2));//Constant thermal conductivity in W/m.K
q=((km*(T(1)-T(2)))/L);//Rate of heat flow in W/m^2
//OUTPUT
mprintf('Rate of heat flow is %3.0f W/m^2',q)
//=================================END OF PROGRAM==============================
|
b6f0ff5e730e3ae25e7619341a9399df2f95c687 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1991/CH8/EX8.10/10.sce | 57968e49396717683912d2a7030fd421aa3c4343 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 270 | sce | 10.sce | clc
clear
//input
v=15*10^3 //voltage
p=80*10^3 //power
r=430 //resistence
v1=150*10^3//stepped value
//calculation
i=p/v//cable current
i1=p/v1//stepped up cable current
k=i*i/(i1*i1)//ratio of power loss
//output
printf("the ratio of power loss is %d",k)
|
ab9bc320df35ee468140a3de9d0d63d98bd89831 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2204/CH5/EX5.2/ex5_2.sce | d2ce1d782fbaba37758d14c1b3554a6b6fd87c2a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 320 | sce | ex5_2.sce | // Exa 5.2
clc;
clear;
close;
// Given data
R1 = 10;// in k ohm
R_F = R1;// in k ohm
disp(R_F,"The value of R_F in kΩ is");
C = 0.001;// in µF
C = C *10^-6;// in F
f_c = 10;// in kHz
f_c = f_c * 10^3;// in Hz
R = 1/(2*%pi*f_c*C);// in ohm
R = R * 10^-3;// in k ohm
disp(R,"The value of R in kΩ is");
|
f9cf990a5b6caa35b6c0a0a13eae54167fdee098 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH4/EX4.6/exe4_6.sce | a774a1ac9fbf719bfe41894bef385641057874b9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 358 | sce | exe4_6.sce | // Example 4.6: drain resisitance
clc, clear
//Given DATA
Vdd=10;//in volt
ID=0.4;//in mA
mu_nCox=20;//in uA/V^2
W=100;//in um
L=10;//in um
Vt=2;//in Volt
//Formula : ID=mu_n*Cox*W*(VGS-Vt)^2/(2*L)
VGS=sqrt(2*L*ID/(mu_nCox*10^-3*W))+(Vt);//in Volt
Vd=VGS;//
R=(Vdd-Vd)/ID;// resistance in killo ohms
disp(R,"drain resistance in killo ohms is")
|
27b5933a90fad6a952ea50307e2046487543b697 | 1485852dd59aafc286600126cf832a32e10f117f | /tests/seamlessClone/test2.sce | d2b5edca9c68de5f8b78ee1744e6c4a0fa7146b1 | [] | no_license | rg77/Scilab-Image-Processing-And-Computer-Vision-Toolbox | dec9fbbce32cfd1eab3c45ccb29c89aaa1384758 | 8adb116da3a9c29a32e5e0727105aff571e5b374 | refs/heads/master | 2020-12-02T16:14:45.282650 | 2017-07-07T10:12:04 | 2017-07-07T10:12:04 | 96,524,257 | 0 | 0 | null | 2017-07-07T09:43:50 | 2017-07-07T09:43:50 | null | UTF-8 | Scilab | false | false | 250 | sce | test2.sce | //using a complete white mask
dst = imread("../images/color3.jpg");
src = imread("../images/cartoon.jpg");
[rows cols] = size(src)
mask = zeros(rows,cols);
mask(50:100,1:cols) = 255;
output = seamlessClone(src,dst,mask,[75 120], 1 );
imshow(output);
|
2c59ec8c5a7fadbad07fccc90326317cf57f3f30 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2135/CH6/EX6.2/Exa_6_2.sce | 65326f232452b209276e40d273d8cdd7821fd58e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 374 | sce | Exa_6_2.sce | //Exa 6.2
clc;
clear;
close;
format('v',8);
//Given Data :
p=5;//bar
x=0.98;
ts=151.84;//degree C
hf=652.8;//KJ/Kg
hfg=2098;//KJ/Kg
vg=0.373;//m^3/Kg
disp(ts,"Temperature of steam in degree C : ");
h=hf+x*hfg;//KJ/Kg
disp(h,"Enthalpy of steam in KJ/Kg : ");
v=x*vg;//m^3/Kg
disp(v,"Specific volume in m^3/Kg ; ");
//Steam table is used to get some data.
|
55b50a4545391c6c3eaa44ac8fc6858787e5c975 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH1/EX1.36/ch1_ex_36.sce | 2b032eb5b501bf9ec55e37e319b204aa70c07413 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 996 | sce | ch1_ex_36.sce | //CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
//Example 36
disp("CHAPTER 1");
disp("EXAMPLE 36");
//VARIABLE INITIALIZATION
I=10; //current source in Amperes
v=10; //voltage source in Volts
r1=4; //top resistance in Ohms
r2=4; //right resistance in Ohms
r3=4; //bottom resistance in Ohms
r4=6; //left resistance in Ohms
r5=1; //in Ohms
//SOLUTION
//(1)v1+(12/5)In=30........eq (1)
//(2)v1+(-4)In=10..........eq (2)
A=[1 12/5;2 -4];
b=[30;10];
x=inv(A)*b;
v1=x(1,:); //to access the 1st element of 2X1 matrix
In=x(2,:); //to access the 2nd element of 2X1 matrix
req1=(r1*r4)/(r1+r4);
req2=(r2*r3)/(r2+r3);
rn=req1+req2;
I1=(rn*In)/(rn+r5);
disp(sprintf("By Norton Theorem, the current through 1Ω resistor is %f A",I1));
//END
|
98cf928095d18bc7443e480b53b6c85db69f154f | 726961a3412b6d2fda7c781172773be5e27ac97a | /jflap-grades/tests/q02d.tst | fff5da50e5238677f097648295912126feedcd16 | [] | no_license | ailton07/jflap-grades-19-2 | 0546deb482e7f8e003591351191fa649d62fd405 | ff58118d31aa30a0f56cae8e5f0186d44c1b72a8 | refs/heads/master | 2020-09-16T12:49:31.560841 | 2019-11-25T01:03:19 | 2019-11-25T01:03:19 | 223,774,968 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 78 | tst | q02d.tst | 0
0.20
bbaaab 1
baaa 1
abbbbb 1
aabbab 1
aaaa 0
bbbaaaa 0
bbaabba 0
aaabbbb 0
|
21cceb358faa3897f3a1cd6f393e486627f16b07 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH21/EX21.6/21Ex6.sce | b7f3b82d3fcf90a457b547396b053a07c899d37f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 224 | sce | 21Ex6.sce | //chapter 21 Ex 6
clc;
clear;
close;
a1=1008; t1=2; a2=1164; t2=1.5;
sInterestDiff=a2-a1;
sInterest2=sInterestDiff*t1/t2;
p=a1-sInterest2;
rNew=(sInterest2/(p*t1))*100;
printf("The new rate is %d percent",rNew);
|
ea171495e5a97532171031ebc24f332237e3485a | ea619b33cae5a486fb22da8bdcfe0bc7d81c3032 | /test/testcases/directed/rred2.tst | 558c18e7da0946f80ca3fc92ebd72bbbb19babb3 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | alexvonduar/optimized-routines | 714ab0a7b8d7d28fc689b0bae1e7a885fd461a69 | f59c54e97e2023a5981679b14637d8ee2abe2d2d | refs/heads/master | 2020-03-08T14:07:45.302916 | 2018-11-27T09:34:42 | 2018-11-27T09:34:42 | 128,176,402 | 0 | 0 | Apache-2.0 | 2018-11-27T09:34:43 | 2018-04-05T08:05:10 | C | UTF-8 | Scilab | false | false | 42,499 | tst | rred2.tst | ; rred2.tst
;
; Copyright (c) 1999-2018, Arm Limited.
; SPDX-License-Identifier: MIT
func=rred op1=4139eb71.48f354d6 result=3c8d0afa.32c646ca.18a res2=00000001 errno=0
func=rred op1=414344ba.16f4f99a result=3cc23686.da4d2965.916 res2=00000003 errno=0
func=rred op1=414a4327.087660e3 result=bccb599f.84bc5cab.fb1 res2=00000003 errno=0
func=rred op1=41569815.aff42738 result=3cc5d7e6.20a5f23e.d47 res2=00000001 errno=0
func=rred op1=415d3ecc.e1f28274 result=bcad49a4.1d0b3b67.209 res2=00000003 errno=0
func=rred op1=416841c3.7c73be07 result=3ccd1aa4.ad5783f1.5aa res2=00000001 errno=0
func=rred op1=416b951f.1572eba5 result=bc3f54f5.227a4e83.fbf res2=00000003 errno=0
func=rred op1=4174456b.dcf64b08 result=3caccc50.4881522d.10a res2=00000003 errno=0
func=rred op1=4175ef19.a975e1d7 result=bcc5f73b.15c86c8d.587 res2=00000001 errno=0
func=rred op1=41817269.26f7c621 result=bcadc6f7.f19524a1.308 res2=00000001 errno=0
func=rred op1=418e6821.cb71708c result=3cc5993c.3660fda1.cc8 res2=00000001 errno=0
func=rred op1=419683c4.1e3558e3 result=bcaec19f.9aa8f715.506 res2=00000001 errno=0
func=rred op1=419956c6.d433ddca result=3cd1ffb2.2d50d35c.2a6 res2=00000003 errno=0
func=rred op1=41a90c71.99d42244 result=bcb05b77.76684dfe.c81 res2=00000001 errno=0
func=rred op1=41ae1dcc.9111b506 result=3ca8e1b1.a432085c.912 res2=00000003 errno=0
func=rred op1=41b19793.c427a3e4 result=3cc49e94.8d4d2b2d.aca res2=00000001 errno=0
func=rred op1=41bdd377.56b1f980 result=bcf27d06.01dabc96.3a5 res2=00000000 errno=0
func=rred op1=41bdf8a1.f3e1d743 result=bce0eeea.e7979c10.714 res2=00000001 errno=0
func=rred op1=41be1dcc.9111b506 result=3cb8e1b1.a432085c.912 res2=00000002 errno=0
func=rred op1=41c2c955.335f19b3 result=bcc88933.319c74fe.2c2 res2=00000003 errno=0
func=rred op1=41c55202.aefde314 result=3ca10c74.5b9374bb.922 res2=00000003 errno=0
func=rred op1=41cb951f.1572eba5 result=bc9f54f5.227a4e83.fbf res2=00000000 errno=0
func=rred op1=41ce1dcc.9111b506 result=3cc8e1b1.a432085c.912 res2=00000000 errno=0
func=rred op1=41d0ec1d.bdf3fa1b result=bcb830b4.bf06e19f.c71 res2=00000001 errno=0
func=rred op1=41d55202.aefde314 result=3cb10c74.5b9374bb.922 res2=00000002 errno=0
func=rred op1=41db951f.1572eba5 result=bcaf54f5.227a4e83.fbf res2=00000000 errno=0
func=rred op1=41dffb04.067cd49e result=3cb992ae.895d2f19.5b4 res2=00000001 errno=0
func=rred op1=41e55202.aefde314 result=3cc10c74.5b9374bb.922 res2=00000000 errno=0
func=rred op1=41e6409e.69b372e0 result=bcc3ed97.a8220470.e28 res2=00000001 errno=0
func=rred op1=41eaa683.5abd5bd9 result=3cc54f91.727851ea.76b res2=00000003 errno=0
func=rred op1=41eb951f.1572eba5 result=bcbf54f5.227a4e83.fbf res2=00000000 errno=0
func=rred op1=41f55202.aefde314 result=3cd10c74.5b9374bb.922 res2=00000000 errno=0
func=rred op1=41f5c950.8c58aafa result=bc97091a.64747daa.82d res2=00000001 errno=0
func=rred op1=41fb1dd1.381823bf result=3ca6945b.84ecaaa1.e2f res2=00000003 errno=0
func=rred op1=41fb951f.1572eba5 result=bccf54f5.227a4e83.fbf res2=00000000 errno=0
func=rred op1=42003928.f1ebce42 result=3cbc56a2.1e09ca0c.83a res2=00000001 errno=0
func=rred op1=4205c950.8c58aafa result=bca7091a.64747daa.82d res2=00000002 errno=0
func=rred op1=420b1dd1.381823bf result=3cb6945b.84ecaaa1.e2f res2=00000002 errno=0
func=rred op1=420b5978.26c587b2 result=bcc9afde.413f23db.833 res2=00000003 errno=0
func=rred op1=4215c950.8c58aafa result=bcb7091a.64747daa.82d res2=00000000 errno=0
func=rred op1=42189164.598f1956 result=bccf7224.da5c4346.23f res2=00000001 errno=0
func=rred op1=421b1dd1.381823bf result=3cc6945b.84ecaaa1.e2f res2=00000000 errno=0
func=rred op1=421de5e5.054e921b result=3c95361e.e6553188.036 res2=00000001 errno=0
func=rred op1=42246546.a5bd73cc result=bc98dc15.e293c9cd.023 res2=00000003 errno=0
func=rred op1=4225c950.8c58aafa result=bcc7091a.64747daa.82d res2=00000000 errno=0
func=rred op1=422c81db.1eb35aed result=3cc93b1f.61b750d2.e36 res2=00000001 errno=0
func=rred op1=422de5e5.054e921b result=3ca5361e.e6553188.036 res2=00000002 errno=0
func=rred op1=4233b341.b26fd835 result=3cbb6d24.5efa23fb.43f res2=00000001 errno=0
func=rred op1=42346546.a5bd73cc result=bca8dc15.e293c9cd.023 res2=00000002 errno=0
func=rred op1=423de5e5.054e921b result=3cb5361e.e6553188.036 res2=00000000 errno=0
func=rred op1=423e97e9.f89c2db2 result=bcb2a510.69eed759.c1a res2=00000001 errno=0
func=rred op1=42446546.a5bd73cc result=bcb8dc15.e293c9cd.023 res2=00000000 errno=0
func=rred op1=4248cc93.5bdf3528 result=3cc851a1.a2a7aac1.a3b res2=00000001 errno=0
func=rred op1=42497e98.4f2cd0bf result=bcbf131b.5b38bc40.42b res2=00000003 errno=0
func=rred op1=424de5e5.054e921b result=3cc5361e.e6553188.036 res2=00000000 errno=0
func=rred op1=425231a0.4aac931e result=bcdecde1.3b42acba.937 res2=00000003 errno=0
func=rred op1=42546546.a5bd73cc result=bcc8dc15.e293c9cd.023 res2=00000000 errno=0
func=rred op1=425bb23e.aa3db16d result=3ca6b244.e2e34d9f.884 res2=00000003 errno=0
func=rred op1=425de5e5.054e921b result=3cd5361e.e6553188.036 res2=00000000 errno=0
func=rred op1=426065c8.29d68730 result=bc714e87.fd83e16b.cf2 res2=00000001 errno=0
func=rred op1=42646546.a5bd73cc result=bcd8dc15.e293c9cd.023 res2=00000000 errno=0
func=rred op1=426bb23e.aa3db16d result=3cb6b244.e2e34d9f.884 res2=00000002 errno=0
func=rred op1=426ccc11.d7c621c4 result=3cd80c67.82b19b3b.f47 res2=00000003 errno=0
func=rred op1=427065c8.29d68730 result=bc814e87.fd83e16b.cf2 res2=00000002 errno=0
func=rred op1=42737f5a.95526dd5 result=3cc73cb9.22cf6caa.e6c res2=00000003 errno=0
func=rred op1=427898ac.3ec1cac8 result=bc89f5cb.fc45d221.b6a res2=00000003 errno=0
func=rred op1=427bb23e.aa3db16d result=3cc6b244.e2e34d9f.884 res2=00000000 errno=0
func=rred op1=428065c8.29d68730 result=bc914e87.fd83e16b.cf2 res2=00000000 errno=0
func=rred op1=42847f3a.344c28fc result=bc95a229.fce4d9c6.c2e res2=00000001 errno=0
func=rred op1=428bb23e.aa3db16d result=3cd6b244.e2e34d9f.884 res2=00000000 errno=0
func=rred op1=428fcbb0.b4b35339 result=3cd66d0a.c2ed3e19.d90 res2=00000001 errno=0
func=rred op1=429065c8.29d68730 result=bca14e87.fd83e16b.cf2 res2=00000000 errno=0
func=rred op1=42927281.2f115816 result=bca37858.fd345d99.490 res2=00000001 errno=0
func=rred op1=429dbef7.af788253 result=3ce68fa7.d2e845dc.b0a res2=00000001 errno=0
func=rred op1=429fcbb0.b4b35339 result=3ce66d0a.c2ed3e19.d90 res2=00000002 errno=0
func=rred op1=42a065c8.29d68730 result=bcb14e87.fd83e16b.cf2 res2=00000000 errno=0
func=rred op1=42a16c24.ac73efa3 result=bcb26370.7d5c1f82.8c1 res2=00000001 errno=0
func=rred op1=42aec554.3215eac6 result=3cf67e59.4aeac1fb.44d res2=00000003 errno=0
func=rred op1=42afcbb0.b4b35339 result=3cf66d0a.c2ed3e19.d90 res2=00000000 errno=0
func=rred op1=42b06289.b804b08a result=bcfaaf5e.3a50b293.610 res2=00000003 errno=0
func=rred op1=42b065c8.29d68730 result=bcc14e87.fd83e16b.cf2 res2=00000000 errno=0
func=rred op1=42bfc872.42e17c93 result=3cf45488.4b3a45cd.caf res2=00000003 errno=0
func=rred op1=42bfcbb0.b4b35339 result=3d066d0a.c2ed3e19.d90 res2=00000000 errno=0
func=rred op1=42c06428.f0ed9bdd result=bcfcd92f.3a012ec0.dae res2=00000003 errno=0
func=rred op1=42c065c8.29d68730 result=bcd14e87.fd83e16b.cf2 res2=00000000 errno=0
func=rred op1=42cfc6d3.09f89140 result=3cf02383.5bd45535.aec res2=00000001 errno=0
func=rred op1=42cfc872.42e17c93 result=3d045488.4b3a45cd.caf res2=00000002 errno=0
func=rred op1=42d065c8.29d68730 result=bce14e87.fd83e16b.cf2 res2=00000000 errno=0
func=rred op1=42d0e826.ceb0c5c0 result=bd00b905.acac1b50.bef res2=00000003 errno=0
func=rred op1=42df42d5.2c35675d result=3ce00d67.39fd0716.4b7 res2=00000001 errno=0
func=rred op1=42dfc6d3.09f89140 result=3d002383.5bd45535.aec res2=00000002 errno=0
func=rred op1=42e065c8.29d68730 result=bcf14e87.fd83e16b.cf2 res2=00000000 errno=0
func=rred op1=42e64ac3.e719da9a result=3cafd98b.c01dfeeb.32e res2=00000001 errno=0
func=rred op1=42e75120.69b7430d result=bc761c21.d74e1f63.5ab res2=00000001 errno=0
func=rred op1=42ef42d5.2c35675d result=3cf00d67.39fd0716.4b7 res2=00000002 errno=0
func=rred op1=42f04530.809ff78c result=bce3a491.40e2f9d8.0fb res2=00000001 errno=0
func=rred op1=42f64ac3.e719da9a result=3cbfd98b.c01dfeeb.32e res2=00000002 errno=0
func=rred op1=42f75120.69b7430d result=bc861c21.d74e1f63.5ab res2=00000002 errno=0
func=rred op1=42ff636c.d56bf701 result=3cdd401c.658f2104.023 res2=00000003 errno=0
func=rred op1=43013b41.2ea2182d result=3caa5283.4a4a7712.5c3 res2=00000003 errno=0
func=rred op1=43064ac3.e719da9a result=3ccfd98b.c01dfeeb.32e res2=00000000 errno=0
func=rred op1=43075120.69b7430d result=bc961c21.d74e1f63.5ab res2=00000000 errno=0
func=rred op1=430d66ff.a4cc6ded result=bcb83752.90cc4b3a.db7 res2=00000001 errno=0
func=rred op1=43113b41.2ea2182d result=3cba5283.4a4a7712.5c3 res2=00000002 errno=0
func=rred op1=43144630.cc2cad9d result=3c9e88e4.bd46cec1.5da res2=00000003 errno=0
func=rred op1=43175120.69b7430d result=bca61c21.d74e1f63.5ab res2=00000000 errno=0
func=rred op1=431a5c10.0741d87d result=bcbdbe5b.069fd313.b22 res2=00000001 errno=0
func=rred op1=4322c0b8.fd6762e5 result=3cc0fa5e.3cce1561.59c res2=00000001 errno=0
func=rred op1=43244630.cc2cad9d result=3cae88e4.bd46cec1.5da res2=00000002 errno=0
func=rred op1=4325cba8.9af1f855 result=bc8b5ebd.e2aae00a.af8 res2=00000003 errno=0
func=rred op1=43275120.69b7430d result=bcb61c21.d74e1f63.5ab res2=00000000 errno=0
func=rred op1=43344630.cc2cad9d result=3cbe88e4.bd46cec1.5da res2=00000000 errno=0
func=rred op1=433508ec.b38f52f9 result=3ca7b135.449c16be.b1c res2=00000001 errno=0
func=rred op1=4335cba8.9af1f855 result=bc9b5ebd.e2aae00a.af8 res2=00000002 errno=0
func=rred op1=43368e64.82549db1 result=bcb987f9.93a37b64.b0a res2=00000003 errno=0
func=rred op1=43456a4a.a740a5a7 result=3c9403ac.a68d4d72.b40 res2=00000003 errno=0
func=rred op1=43462d06.8ea34b03 result=bcc02fd4.862719b3.ae4 res2=00000001 errno=0
func=rred op1=4355399b.ad67fc50 result=3cbcb220.6e3f6a1b.5ec res2=00000001 errno=0
func=rred op1=43559af9.a1194efe result=bca15ce7.8f643951.558 res2=00000003 errno=0
func=rred op1=436020a0.243f2d03 result=bd107cfa.a6b87368.66d res2=00000003 errno=0
func=rred op1=436fd669.841bfa78 result=3cd58598.52af8f94.871 res2=00000003 errno=0
func=rred op1=43701be3.bbe6a693 result=3ca6aa71.bdb66194.129 res2=00000003 errno=0
func=rred op1=437ae960.8c734e12 result=bc981eba.c224221d.30f res2=00000001 errno=0
func=rred op1=4388422d.16c64e88 result=bcc460be.e7a8bd94.fba res2=00000001 errno=0
func=rred op1=438d9094.02204d9c result=3cb0a2c3.0d2d590c.c65 res2=00000003 errno=0
func=rred op1=439995c6.d19cce4d result=bcca686d.9831c61c.47e res2=00000003 errno=0
func=rred op1=439c3cfa.4749cdd7 result=3c924d96.b06d1ff8.b77 res2=00000001 errno=0
func=rred op1=43a4d8d5.46c1ba70 result=bc9defde.d3db2441.aa6 res2=00000003 errno=0
func=rred op1=43a62c6f.01983a35 result=3cc8f424.93c40593.298 res2=00000001 errno=0
func=rred op1=43b1d08f.a3e8f09f result=3cb9c98e.6563e909.221 res2=00000001 errno=0
func=rred op1=43bf453f.ea2297a8 result=bcb673e7.1ee45b31.3fd res2=00000001 errno=0
func=rred op1=43c706c4.f5995f3b result=3cc60b92.8ae88480.ecc res2=00000001 errno=0
func=rred op1=43ca0f0a.9872290c result=bcc2b5eb.4468f6a9.0a8 res2=00000003 errno=0
func=rred op1=43d23dba.9de98322 result=bcca31e2.f95fbfb9.752 res2=00000001 errno=0
func=rred op1=43ded814.f0220525 result=3cd06e98.c32f6db4.9cc res2=00000003 errno=0
func=rred op1=43e0f02d.497d677b result=bcd852e5.0c220d75.5a7 res2=00000003 errno=0
func=rred op1=43ed8a87.9bb5e97e result=3ce15e17.b9ce46d6.aa2 res2=00000003 errno=0
func=rred op1=43fa7f3b.c5a7ed9e result=3c90e54c.54604e37.48c res2=00000001 errno=0
func=rred op1=43fbccc9.1a140945 result=bca57d38.a9aafd26.060 res2=00000003 errno=0
func=rred op1=44012845.e01849c4 result=bcd56592.599e564d.cb4 res2=00000001 errno=0
func=rred op1=440fed89.adf33e83 result=3ce80966.46cd6286.6ea res2=00000003 errno=0
func=rred op1=441338a6.2a07e463 result=3cc54dec.0991af75.908 res2=00000003 errno=0
func=rred op1=44148633.7e74000a result=bcb143e5.9492e998.33d res2=00000003 errno=0
func=rred op1=44203c22.066ded99 result=3cc9873f.1ea9c303.62b res2=00000001 errno=0
func=rred op1=442782b7.a20df6d4 result=bc57a650.0ca6d83a.c16 res2=00000003 errno=0
func=rred op1=44360475.9040fb6f result=bcc17332.34ac3748.a95 res2=00000001 errno=0
func=rred op1=443900f9.b3daf239 result=3cc0b5ff.b4470086.d34 res2=00000003 errno=0
func=rred op1=4441a209.b98a791f result=bc71bcbc.097d222c.111 res2=00000001 errno=0
func=rred op1=444ee1a7.9c5e6fee result=3cd09e59.643a59ae.988 res2=00000001 errno=0
func=rred op1=4453d33f.a4e5ba47 result=bcd1ba25.24d22bd1.599 res2=00000003 errno=0
func=rred op1=445b322f.9f363361 result=3cd03fc0.2407be4d.ad8 res2=00000001 errno=0
func=rred op1=4462baa4.af3819b3 result=bcd2480b.051e14e2.ba2 res2=00000001 errno=0
func=rred op1=446c4aca.94e3d3f5 result=3ccea682.071273b6.c3e res2=00000003 errno=0
func=rred op1=44722e57.34614969 result=bcd363d6.c5b5e705.7b3 res2=00000001 errno=0
func=rred op1=447cd718.0fbaa43f result=3ccaf485.851861ed.95a res2=00000003 errno=0
func=rred op1=4481e830.76f5e144 result=bcd59b6e.46e58b4a.fd5 res2=00000001 errno=0
func=rred op1=448d1d3e.cd260c64 result=3cc3908c.81243e5b.393 res2=00000003 errno=0
func=rred op1=4494b574.0c81ec0c result=bcdb8502.4a0f4159.adb res2=00000001 errno=0
func=rred op1=449a4ffb.379a019c result=3caef591.eb4348f7.621 res2=00000003 errno=0
func=rred op1=44a308ab.84507e83 result=bca0570e.2e0a677e.20b res2=00000003 errno=0
func=rred op1=44abb69d.02600700 result=3cd76f3e.be8ca77a.258 res2=00000001 errno=0
func=rred op1=44b3bbfc.69b38135 result=3cc7382d.707276b9.899 res2=00000001 errno=0
func=rred op1=44b99caa.5236feea result=bc6b88a7.0d18604d.f4e res2=00000001 errno=0
func=rred op1=44c36253.f701ffdc result=3cbe194c.b2da85f4.f27 res2=00000003 errno=0
func=rred op1=44cfd700.ad6bfdf8 result=bcc0c530.ca3ec8ff.588 res2=00000001 errno=0
func=rred op1=44d67f7f.249c7f63 result=3cbc60c2.4208fff0.132 res2=00000001 errno=0
func=rred op1=44dcb9d5.7fd17e71 result=bcc1a176.02a78c01.c83 res2=00000003 errno=0
func=rred op1=44e4c415.54767ef3 result=bcc27dbb.3b104f04.37d res2=00000001 errno=0
func=rred op1=44ee753f.4ff77ee1 result=3cb73722.ef946de1.754 res2=00000003 errno=0
func=rred op1=44f0c935.3ec8ff34 result=bcc43645.abe1d509.172 res2=00000001 errno=0
func=rred op1=44f5a1ca.3c897f2b result=3cb3c60e.0df161d7.b6a res2=00000003 errno=0
func=rred op1=4501380f.b2d27f50 result=3ca9c7c8.95569388.72d res2=00000003 errno=0
func=rred op1=450e0664.dbedfec5 result=bc6c0de7.7c1ccc58.206 res2=00000003 errno=0
func=rred op1=45156a5d.0284bf1d result=bcad4985.84da2d13.76e res2=00000003 errno=0
func=rred op1=4519d417.8c3bbef8 result=3cc355d6.7000eea6.562 res2=00000001 errno=0
func=rred op1=45258613.9f871f24 result=3cd01cdd.5d561c35.47c res2=00000003 errno=0
func=rred op1=4529b860.ef395ef1 result=bcb065a1.3a2ee34f.3d7 res2=00000001 errno=0
func=rred op1=45335f11.a92ccf3a result=3cdd00c1.a80165f9.813 res2=00000003 errno=0
func=rred op1=453bdf62.e593aedb result=bcb3e75e.29b27cda.418 res2=00000001 errno=0
func=rred op1=4540248e.b7a5575b result=3ce82b4c.0c012a4f.eba res2=00000001 errno=0
func=rred op1=454f19e5.d71b26ba result=bc7230f7.3631c67d.6c6 res2=00000003 errno=0
func=rred op1=4550a073.e6babb52 result=3cb8a4b9.21f37720.9c1 res2=00000001 errno=0
func=rred op1=455f95cb.06308ab1 result=bcf6c562.684e566a.dcc res2=00000001 errno=0
func=rred op1=4566c9ab.e3bdc911 result=bcbd30f6.ef7fe8bf.f72 res2=00000003 errno=0
func=rred op1=4567dd2c.deeaf106 result=3cb65e9a.3b2d3e50.ee8 res2=00000003 errno=0
func=rred op1=45732b4f.67a5ae37 result=bcbf7715.d646218f.a4b res2=00000001 errno=0
func=rred op1=457b7b89.5b030be0 result=3cb1d25c.6da0ccb1.936 res2=00000003 errno=0
func=rred op1=45815c21.2999a0ca result=bcc201a9.d1e94997.7fe res2=00000001 errno=0
func=rred op1=458d4ab7.990f194d result=3ca173c1.a50fd2e5.ba7 res2=00000003 errno=0
func=rred op1=45949ca7.044248e8 result=3ccabb8a.a471330a.5d2 res2=00000001 errno=0
func=rred op1=45966bd5.424e5655 result=bc57a6b2.243e72f6.3c8 res2=00000003 errno=0
func=rred op1=45a2fc64.16edf4d9 result=bcb28f91.fec2c049.455 res2=00000003 errno=0
func=rred op1=45a9db46.6daeb7d1 result=3cb11526.dc7ed919.e18 res2=00000001 errno=0
func=rred op1=45b4b41c.ac9e2597 result=bcb34cc7.8fe4b3e0.f73 res2=00000001 errno=0
func=rred op1=45b8238d.d7fe8713 result=3cb057f1.4b5ce582.2fa res2=00000003 errno=0
func=rred op1=45c58ff8.f7763df6 result=bcb4c732.b2289b10.5b0 res2=00000001 errno=0
func=rred op1=45c747b1.8d266eb4 result=3cadbb0c.5231fca5.97b res2=00000003 errno=0
func=rred op1=45d0cb02.87a3c994 result=3cec973b.699452d4.b6a res2=00000003 errno=0
func=rred op1=45df7c19.28594492 result=bcd87e94.3c6edaa5.0df res2=00000001 errno=0
func=rred op1=45e099e8.df04baa8 result=bcbab0df.3b3837cd.ea2 res2=00000001 errno=0
func=rred op1=45ec3dc1.a597f202 result=3c885168.b7ce26bd.6cd res2=00000003 errno=0
func=rred op1=45f3f0cd.361594ae result=3cc0629c.b495e0be.a2a res2=00000001 errno=0
func=rred op1=45feb8c9.b1d0b3a9 result=bcc92bc8.afbb5562.135 res2=00000001 errno=0
func=rred op1=4602455b.0a8d27ab result=bcb49c85.0d44ae1e.8ef res2=00000003 errno=0
func=rred op1=46081747.6dd6c358 result=3cc36cc9.cb8fa596.504 res2=00000003 errno=0
func=rred op1=461a2a84.89b75aad result=3cc98123.f9832f45.ab7 res2=00000003 errno=0
func=rred op1=461e50fe.c1788957 result=bc82fbb4.1b508883.ea8 res2=00000001 errno=0
func=rred op1=462637ef.ca22412c result=3ca3927b.b0fa049c.723 res2=00000001 errno=0
func=rred op1=46284b2c.e602d881 result=bcc5cc40.4ef9b6a6.cd9 res2=00000003 errno=0
func=rred op1=46333506.dc6768c1 result=bcb34717.e6254690.2e5 res2=00000003 errno=0
func=rred op1=46393ad8.b7dd1997 result=3ccd3607.a40ca7e4.895 res2=00000001 errno=0
func=rred op1=4640a9f3.d799b0e1 result=3cbd5bb9.897706ea.ab4 res2=00000003 errno=0
func=rred op1=4648c302.ceeff90c result=bcbcc4f1.f3cd8ad2.239 res2=00000003 errno=0
func=rred op1=4651ef7d.5a008cd1 result=bca264ec.85a70c6b.62d res2=00000001 errno=0
func=rred op1=46577d79.4c891d1c result=3ca4c00a.dc4cfccd.819 res2=00000003 errno=0
func=rred op1=46614cb8.98cd1ed9 result=3cc8c27e.680d43cf.d29 res2=00000003 errno=0
func=rred op1=466dae3a.00451b5f result=bca009ce.2f011c09.440 res2=00000001 errno=0
func=rred op1=46719e1a.f966d5d5 result=3cbf2010.4a737b34.426 res2=00000001 errno=0
func=rred op1=4677cedb.ad22d418 result=bcba69d3.9d279a70.04d res2=00000003 errno=0
func=rred op1=4681c6cc.29b3b153 result=bc96a723.036a768a.0cd res2=00000001 errno=0
func=rred op1=4687a62a.7cd5f89a result=3cae2c84.36e4be55.fcc res2=00000003 errno=0
func=rred op1=4697ba83.14fc6659 result=bcc2deb2.8f6e6ada.859 res2=00000001 errno=0
func=rred op1=469d99e1.681eada0 result=3c8e1584.cde91f2f.bfd res2=00000001 errno=0
func=rred op1=46a4c0a7.9f580bd6 result=bcc8887b.5049087d.08d res2=00000003 errno=0
func=rred op1=46aaa005.f27a531d result=3cc0f79a.6850f11d.fa6 res2=00000003 errno=0
func=rred op1=46b63369.0e170238 result=3ca69023.9a6ed763.cfd res2=00000003 errno=0
func=rred op1=46b92d44.83bb5cbb result=bcc4c5ca.b68be497.10d res2=00000001 errno=0
func=rred op1=46c2802c.e1132c84 result=3cb2cd73.00b1b37d.d7e res2=00000001 errno=0
func=rred op1=46cce080.b0bf326f result=bcd3d51e.901c9b9d.92d res2=00000003 errno=0
func=rred op1=46d0a68e.ca9141aa result=3cc0ec1a.b3d3218a.dbe res2=00000001 errno=0
func=rred op1=46deba1e.c7411d49 result=bce35cc8.7ce4f720.d3d res2=00000003 errno=0
func=rred op1=46e1935d.d5d23717 result=3cd1dcc6.da426a84.59e res2=00000003 errno=0
func=rred op1=46efa6ed.d28212b6 result=bcf3209d.734924e2.745 res2=00000003 errno=0
func=rred op1=46f08cd7.a0a0848c result=3d01ca31.09f250f8.489 res2=00000003 errno=0
func=rred op1=46ff8d36.a8915598 result=bce645cc.592e7133.8ac res2=00000001 errno=0
func=rred op1=4709f380.d013367b result=bca97010.b9e2bc2b.6e6 res2=00000001 errno=0
func=rred op1=470ae04f.db542be8 result=3c8295d0.50198c11.45b res2=00000001 errno=0
func=rred op1=47103695.0f6cf63b result=3cd724d2.1cefa3c4.5a0 res2=00000001 errno=0
func=rred op1=471ffd30.63b5a107 result=bcf07c97.d1f28842.744 res2=00000003 errno=0
func=rred op1=47233b6c.d93e2b81 result=bcca996d.bee454ec.82c res2=00000003 errno=0
func=rred op1=4724283b.e47f20ee result=3c9be0b8.78265219.e89 res2=00000003 errno=0
func=rred op1=4730cc31.e9149b71 result=3ca73b44.641fef15.972 res2=00000001 errno=0
func=rred op1=473d4f8a.cb7dbbf8 result=bcd8db62.3761efca.e43 res2=00000001 errno=0
func=rred op1=4742f09e.6c6a58e6 result=3ce23c82.34b8f3aa.d7e res2=00000003 errno=0
func=rred op1=474f73f7.4ed3796d result=bcd30c91.1e59f405.7e6 res2=00000003 errno=0
func=rred op1=47503063.2d0a376d result=3ce48f3c.3ebc252d.009 res2=00000003 errno=0
func=rred op1=475ed828.92c91569 result=bcc13097.e2972a77.8e6 res2=00000001 errno=0
func=rred op1=47647623.428452f0 result=bc9a01dd.34200b54.d0a res2=00000001 errno=0
func=rred op1=4767d22d.3deed86d result=3ca82ab2.06231278.232 res2=00000001 errno=0
func=rred op1=4770f325.98173472 result=3cd0f5b2.7cd78b5b.f8b res2=00000001 errno=0
func=rred op1=477eb134.e3c67c68 result=bcb38165.e718087f.9c7 res2=00000003 errno=0
func=rred op1=478993ac.132567ac result=bcc0412a.40940715.026 res2=00000001 errno=0
func=rred op1=478cefb6.0e8fed29 result=3cc4ea76.5f9f110d.891 res2=00000001 errno=0
func=rred op1=4791e75e.da33c892 result=bcc6c1a1.8d9c09ea.369 res2=00000003 errno=0
func=rred op1=479f7e7a.76e07787 result=3cd34a58.8c5d1058.3c0 res2=00000003 errno=0
func=rred op1=47a09ffc.a60b8363 result=bcd52183.ba5a0934.e98 res2=00000001 errno=0
func=rred op1=47ae3718.42b83258 result=3ce41a67.75fe10b2.e28 res2=00000001 errno=0
func=rred op1=47be7426.933f5760 result=3c932031.dcc10668.c29 res2=00000001 errno=0
func=rred op1=47bfbb88.c7679c8f result=bca071c4.45bf8820.6f5 res2=00000003 errno=0
func=rred op1=47c08175.7dc7f0df result=bcb539d0.bcefc9ba.a00 res2=00000001 errno=0
func=rred op1=47cf9d01.9f240a0b result=3cf2c6ca.6a2f1417.388 res2=00000003 errno=0
func=rred op1=47d6d71c.ee6f8188 result=3cacb04a.cb21899d.23d res2=00000003 errno=0
func=rred op1=47d81e7f.2297c6b7 result=bcc2d5ca.8157a8ed.87a res2=00000003 errno=0
func=rred op1=47e30898.1c07969c result=3cb7e83e.53f14802.f33 res2=00000001 errno=0
func=rred op1=47ebed03.f4ffb1a3 result=bcd1a3c7.638b9886.fb8 res2=00000003 errno=0
func=rred op1=47f12155.b2d3a126 result=3cc58438.18592735.dae res2=00000001 errno=0
func=rred op1=47fdd446.5e33a719 result=bce10ac5.d4a59053.b57 res2=00000003 errno=0
func=rred op1=48002db4.7e39a66b result=3cd45234.fa8d16cf.4eb res2=00000001 errno=0
func=rred op1=480ec7e7.92cda1d4 result=bcf0be45.0d328c3a.126 res2=00000003 errno=0
func=rred op1=481003d3.fe728131 result=3d023bbc.3c6ccd6b.0d8 res2=00000003 errno=0
func=rred op1=481f91a8.47a07755 result=bcda54aa.3fb00349.ac1 res2=00000001 errno=0
func=rred op1=482504ca.c51f1eaf result=bc40cb60.4d34f341.25c res2=00000003 errno=0
func=rred op1=4825f86b.f9b9196a result=3cb2fe9b.1c269c82.404 res2=00000003 errno=0
func=rred op1=4830b1fd.38786d17 result=3cef101e.2ea65d2d.6be res2=00000003 errno=0
func=rred op1=483f0d5f.8d61b0a9 result=bcb384f6.1e90441c.497 res2=00000001 errno=0
func=rred op1=48400080.60fdd5b2 result=3cb2bb6d.9af1c8b5.3ba res2=00000001 errno=0
func=rred op1=484a0915.294067ac result=bcb3c823.9fc517e9.4e0 res2=00000003 errno=0
func=rred op1=485208d4.f8c17cd3 result=bccd25da.6d3dfc43.ebe res2=00000001 errno=0
func=rred op1=485d050a.f59e0988 result=3cb1aeb7.961e7981.295 res2=00000001 errno=0
func=rred op1=486682c5.ab4def9d result=3ccb92c9.66010575.d05 res2=00000003 errno=0
func=rred op1=486b8710.0f6f389a result=bcb5e18f.a96bb651.72c res2=00000003 errno=0
func=rred op1=487445cd.5207b638 result=bcceb8eb.747af312.077 res2=00000001 errno=0
func=rred op1=487c460d.8286a111 result=3caaf7bf.05a27961.bfb res2=00000001 errno=0
func=rred op1=48816429.666b5d7e result=bcba1467.bcb8f321.bc3 res2=00000003 errno=0
func=rred op1=4888a56c.23d2dfe0 result=3ca2920e.df07ffc1.2cd res2=00000001 errno=0
func=rred op1=489393f8.cf50f252 result=3cd400f9.71ff7979.4ee res2=00000001 errno=0
func=rred op1=489db6df.7854cd6e result=bcc56fe4.04f6f331.710 res2=00000003 errno=0
func=rred op1=48a27c11.1ade27e8 result=3cbbdb16.4e8bffa1.c34 res2=00000003 errno=0
func=rred op1=48ab2e25.ce13d6a7 result=bcb84db9.2ae5e6a1.b52 res2=00000001 errno=0
func=rred op1=48b590be.9f5883e4 result=3cd03fcd.0326ffc9.073 res2=00000003 errno=0
func=rred op1=48be42d3.528e32a3 result=bcc3a935.7323e6b1.69f res2=00000003 errno=0
func=rred op1=48c0f1ba.58a0f9ea result=3cd988d4.72aaffa9.9da res2=00000003 errno=0
func=rred op1=48cfcd2a.14cb60a1 result=bcd156f3.9742e6b9.445 res2=00000003 errno=0
func=rred op1=48d02c8e.f78262eb result=3ce85fb3.84ba7fad.8ad res2=00000001 errno=0
func=rred op1=48df07fe.b3acc9a2 result=bce28014.853366b5.572 res2=00000001 errno=0
func=rred op1=48e4e82f.01ac85ca result=bcb2023c.10633762.7f2 res2=00000003 errno=0
func=rred op1=48e5ad5a.62cb1cc9 result=3c61fa59.d4990bd5.b60 res2=00000001 errno=0
func=rred op1=48f09d72.89cafadd result=3cf171eb.1e01cc4b.04e res2=00000003 errno=0
func=rred op1=48ff5c46.8282c8af result=bccb035a.1894d313.bec res2=00000001 errno=0
func=rred op1=490010b8.f1d0afd7 result=bcb0e296.7319a6a5.23c res2=00000001 errno=0
func=rred op1=490b49fb.d3c589bb result=3cb5612c.e83fe99a.914 res2=00000003 errno=0
func=rred op1=4912df09.aa4de650 result=bcad4696.710d0a54.da1 res2=00000001 errno=0
func=rred op1=49187bab.1b485342 result=3cb7a078.22d30b15.480 res2=00000003 errno=0
func=rred op1=4921da76.fe9e9693 result=3cd909ff.b6618ae5.2c8 res2=00000003 errno=0
func=rred op1=492f1cdf.37f20ff1 result=bc969879.38e7fcfe.480 res2=00000001 errno=0
func=rred op1=493796cc.14e15fe4 result=bcd24c1e.06a82675.084 res2=00000001 errno=0
func=rred op1=493a651c.cd5e965d result=3c8ab874.e094355a.481 res2=00000001 errno=0
func=rred op1=4948093b.9814d993 result=3cb55168.70ab9280.ff0 res2=00000001 errno=0
func=rred op1=494cc0fe.02a85327 result=bc9fd4b8.0185df4f.6c0 res2=00000003 errno=0
func=rred op1=4959372c.32b9b7f8 result=3cbbff85.a8d09fd7.911 res2=00000003 errno=0
func=rred op1=495b930d.680374c2 result=bc74710c.83c6a7d4.8f7 res2=00000001 errno=0
func=rred op1=49602567.e94b772b result=bccdea1e.d52b3f93.7e8 res2=00000001 errno=0
func=rred op1=496fed0f.46de3bfb result=3ceccbf0.25f66265.deb res2=00000003 errno=0
func=rred op1=49741751.c0b0285f result=3cb97164.1857cadc.ff2 res2=00000001 errno=0
func=rred op1=49754542.5b5506c4 result=bcc08de4.64e124e6.5a7 res2=00000001 errno=0
func=rred op1=49886c27.e1ac3dc3 result=bcc31c05.f559f9e0.ec6 res2=00000001 errno=0
func=rred op1=498eb9f2.ee5aabc1 result=3cb1c6ff.66ed4bed.495 res2=00000003 errno=0
func=rred op1=49931ad7.4ad6fc12 result=bcc5aa27.85d2cedb.7e5 res2=00000001 errno=0
func=rred op1=499641bc.d12e3311 result=3ca95578.8bf743f0.4b0 res2=00000003 errno=0
func=rred op1=49a205a1.c297f6b9 result=3c8391b0.20c2706e.ee3 res2=00000003 errno=0
func=rred op1=49afcf28.7699b11a result=bcb1fed6.7fae59c6.b1b res2=00000003 errno=0
func=rred op1=49b423af.49e314e5 result=3cbbc7ae.900f91fe.28c res2=00000001 errno=0
func=rred op1=49bdb11a.ef4e92ee result=bccd7077.c39dd4b7.e84 res2=00000003 errno=0
func=rred op1=49c0f69a.fef267a3 result=bcaa34d4.eefb7b55.ec4 res2=00000001 errno=0
func=rred op1=49c314a8.863d85cf result=3cc0560d.4c20170c.f22 res2=00000003 errno=0
func=rred op1=49d17e1e.60c52f2e result=bc8a8c93.38e42b9b.f82 res2=00000001 errno=0
func=rred op1=49d28d25.246abe44 result=3cc53a79.5450b328.adb res2=00000003 errno=0
func=rred op1=49ea3d2d.9127c6c5 result=bca3e96e.6aab20b4.fa1 res2=00000003 errno=0
func=rred op1=49eac4b0.f2fa8e50 result=3cc1e8e6.ed342db5.2eb res2=00000001 errno=0
func=rred op1=49f599e4.480d1734 result=bccf2f30.89a64383.2ac res2=00000003 errno=0
func=rred op1=49fee076.da427656 result=3cb68b84.3df6459c.615 res2=00000001 errno=0
func=rred op1=4a038c01.54692331 result=bcd2e92a.abefa735.146 res2=00000003 errno=0
func=rred op1=4a082f4a.9d83d2c2 result=3ca28a75.43085f9c.ca8 res2=00000001 errno=0
func=rred op1=4a14d6b4.7f2480f8 result=bcb14758.975ffbcd.92d res2=00000001 errno=0
func=rred op1=4a1b87e0.bbe3248c result=3ccb2e21.8eb85d83.93f res2=00000003 errno=0
func=rred op1=4a2682ff.8e5429dd result=3c7431ca.ba863cf3.7b4 res2=00000003 errno=0
func=rred op1=4a2f420e.beb6c174 result=bcc9eb04.e30ff9b4.5c4 res2=00000003 errno=0
func=rred op1=4a314d52.6e8b099f result=3cb3cd91.eeb0c36c.024 res2=00000001 errno=0
func=rred op1=4a3bb8ac.ae1d4a1b result=bcad823e.801e685e.46e res2=00000003 errno=0
func=rred op1=4a43e828.fe6f99be result=3cb653cb.46018b0a.71a res2=00000003 errno=0
func=rred op1=4a491dd6.1e38b9fc result=bca875cb.d17cd921.681 res2=00000001 errno=0
func=rred op1=4a51c498.2ee57d3c result=bcd45612.118f96f1.bfe res2=00000001 errno=0
func=rred op1=4a5ddc3d.7da7669d result=3cd0bed8.74812847.d53 res2=00000001 errno=0
func=rred op1=4a62d660.96aa8b7d result=bcc25858.dd1da2d9.0e1 res2=00000003 errno=0
func=rred op1=4a6cca75.15e2585c result=3c9fdb93.471f418b.1cd res2=00000001 errno=0
func=rred op1=4a74acb0.127f5aad result=bcb07ee6.ffb508be.a0d res2=00000003 errno=0
func=rred op1=4a7ea0c4.91b7278c result=3cd23411.861448da.c97 res2=00000003 errno=0
func=rred op1=4a8597d7.d069c245 result=3cb7e4ae.75577128.55a res2=00000003 errno=0
func=rred op1=4a8bdf4d.57f7f0c4 result=bcb906e9.2da2411a.7a8 res2=00000003 errno=0
func=rred op1=4a952243.f1748e79 result=bca2323f.142540a9.d82 res2=00000001 errno=0
func=rred op1=4a9c54e1.36ed2490 result=3c9b52a8.65f401c2.897 res2=00000003 errno=0
func=rred op1=4aa55d0d.e0ef285f result=3cc3581e.b04e20fd.df9 res2=00000003 errno=0
func=rred op1=4aac1a17.47728aaa result=bcc59c94.20e3c0e2.295 res2=00000001 errno=0
func=rred op1=4ab53fa8.e931db6c result=3cb47dfe.4c770151.e71 res2=00000001 errno=0
func=rred op1=4abc377c.3f2fd79d result=bcbd8fd4.0ecd80e3.0de res2=00000003 errno=0
func=rred op1=4ac1b50c.c25436da result=3cc113a9.3fb88119.95e res2=00000003 errno=0
func=rred op1=4acfc218.660d7c2f result=bcca257f.020f00aa.bcb res2=00000001 errno=0
func=rred op1=4ad37a5a.d5c30923 result=3cd2c8d3.c617c135.be8 res2=00000001 errno=0
func=rred op1=4addfcca.529ea9e6 result=bcdbdaa9.886e40c6.e54 res2=00000003 errno=0
func=rred op1=4aed28d5.c4c5e73b result=bc810024.4f47e08b.78e res2=00000003 errno=0
func=rred op1=4aeeee23.d834b984 result=3ca7129f.5222099f.ab4 res2=00000001 errno=0
func=rred op1=4af13c5f.ff892f0b result=3cc36dfc.07828349.2f9 res2=00000001 errno=0
func=rred op1=4afe7577.1569b1b5 result=bcea697f.934c202c.ea9 res2=00000003 errno=0
func=rred op1=4b056d4c.ceb8b8da result=bcb40961.d0b4f515.921 res2=00000003 errno=0
func=rred op1=4b07329a.e2278b23 result=3cc14df7.7d998737.c07 res2=00000003 errno=0
func=rred op1=4b12722f.5d698ace result=3c8849ec.0b68a450.c98 res2=00000001 errno=0
func=rred op1=4b18686a.4007e6e6 result=bcd4cbb1.31103a38.186 res2=00000003 errno=0
func=rred op1=4b23efbe.161121d4 result=bcc284c3.0ffe6ad0.857 res2=00000003 errno=0
func=rred op1=4b2bab47.0c1e5035 result=3ca23771.088e7b3c.972 res2=00000003 errno=0
func=rred op1=4b31b368.0115bf4b result=3ccba07b.9445a86e.d11 res2=00000003 errno=0
func=rred op1=4b3c6a0e.68721bb8 result=bcb8e490.1a488378.a63 res2=00000003 errno=0
func=rred op1=4b46af57.869a07c0 result=3cd25e1a.0c467306.8e5 res2=00000001 errno=0
func=rred op1=4b476e1e.e2edd343 result=bca97f34.292862a0.82d res2=00000003 errno=0
func=rred op1=4b50539b.48d14c55 result=bc635481.dbfbe4fb.940 res2=00000003 errno=0
func=rred op1=4b598cb2.f78611bc result=3cb7af47.fc88c528.ece res2=00000003 errno=0
func=rred op1=4b63e0dd.15df8fcc result=bcba19d8.380841c8.5f7 res2=00000001 errno=0
func=rred op1=4b6d19f4.c4945533 result=3cb679ff.dec906d9.33a res2=00000001 errno=0
func=rred op1=4b76b6c8.06b2d0c4 result=3cb544b7.c1094889.7a6 res2=00000003 errno=0
func=rred op1=4b7a4409.d3c1143b result=bcbc8468.7387be67.d1f res2=00000001 errno=0
func=rred op1=4b854bd2.8e493048 result=bcbeeef8.af073b07.447 res2=00000001 errno=0
func=rred op1=4b8baeff.4c2ab4b7 result=3cb06f97.4a0a4f4a.956 res2=00000003 errno=0
func=rred op1=4b96014d.4a7e0086 result=3ca734ed.a616ac17.60d res2=00000003 errno=0
func=rred op1=4b9af984.8ff5e479 result=bcc44c9c.ce8296c2.873 res2=00000001 errno=0
func=rred op1=4ba0ae58.a6ebb474 result=3ccb11f3.2a8ef38f.52a res2=00000001 errno=0
func=rred op1=4bab5441.ee104c98 result=bc9ee82c.23c23bbf.8e6 res2=00000003 errno=0
func=rred op1=4bb8aac7.9c47268f result=3caef5c5.3a4c3a4e.fa7 res2=00000001 errno=0
func=rred op1=4bbdfdbc.3fd972a1 result=bcc73187.60742c73.85d res2=00000003 errno=0
func=rred op1=4bc47f31.728c3972 result=bcb72e21.1ad1accf.aad res2=00000001 errno=0
func=rred op1=4bcf7fd8.17cb39b5 result=3cb73bba.315bab5f.16e res2=00000001 errno=0
func=rred op1=4bd114a9.34ca2fdf result=bcc3511b.96596557.b90 res2=00000003 errno=0
func=rred op1=4bdc154f.da093022 result=3ccb18bf.b5d3f2d7.08a res2=00000003 errno=0
func=rred op1=4be84a40.a64ab4ca result=3c9f54f4.d812303a.ef0 res2=00000001 errno=0
func=rred op1=4bebb4c8.e40cbe5d result=bc9e7b63.6f724744.2dc res2=00000003 errno=0
func=rred op1=4bf2fa30.cea96d8b result=bccafd8d.88bff5b8.308 res2=00000001 errno=0
func=rred op1=4bfd9a50.7debfc09 result=3cd55403.fa6486ea.d40 res2=00000003 errno=0
func=rred op1=4c00826c.5dd702ce result=3ccb33f1.e2e7eff5.e0d res2=00000003 errno=0
func=rred op1=4c03ecf4.9b990c61 result=bc9da1d2.06d25e4d.6c7 res2=00000003 errno=0
func=rred op1=4c10090a.775f3363 result=3ca0840b.d4a90114.38d res2=00000001 errno=0
func=rred op1=4c17d0de.bfd2e55f result=bcc2f1eb.f8936f6b.c47 res2=00000003 errno=0
func=rred op1=4c21faff.897c1fe2 result=bc9a3b8c.6452ba72.673 res2=00000003 errno=0
func=rred op1=4c2e201f.dca17a47 result=3ccc0d83.4b87d8ec.a22 res2=00000003 errno=0
func=rred op1=4c39068a.3c1d4354 result=3cba7934.903d538b.d7e res2=00000003 errno=0
func=rred op1=4c3af87f.4e3a2fd3 result=bcb3aca9.4b3e0bd5.cd6 res2=00000001 errno=0
func=rred op1=4c4772b9.f4e99e1a result=bcd3bc13.5638b21c.299 res2=00000001 errno=0
func=rred op1=4c4e7e44.a78ac18c result=3c4ed415.f54c8cb8.572 res2=00000003 errno=0
func=rred op1=4c583ca2.188370b7 result=bcb9fde4.38682158.f68 res2=00000003 errno=0
func=rred op1=4c5bc267.71d40270 result=3cca9808.a632a018.903 res2=00000001 errno=0
func=rred op1=4c66deb3.7da81129 result=3c671f10.77f9698a.416 res2=00000001 errno=0
func=rred op1=4c6fdc33.4266211a result=bcc9df10.2272d4cc.3e3 res2=00000001 errno=0
func=rred op1=4c762fbc.303a6162 result=3ccb1358.fe07d24b.719 res2=00000001 errno=0
func=rred op1=4c7f2d3b.f4f87153 result=bcc963bf.ca9da299.5cd res2=00000001 errno=0
func=rred op1=4c82b76f.41ffe114 result=3ccb8ea9.55dd047e.52f res2=00000001 errno=0
func=rred op1=4c8b05f7.b950413e result=bcc8aac7.46ddd74d.0ac res2=00000003 errno=0
func=rred op1=4c90fb48.cae2a0ed result=3ccc854a.058768e4.15a res2=00000001 errno=0
func=rred op1=4c9cc21e.306d8165 result=bcc6bd85.e7890e81.855 res2=00000003 errno=0
func=rred op1=4ca3ecfe.2445590b result=3ccf692c.14869615.5dd res2=00000001 errno=0
func=rred op1=4ca9d068.d70ac947 result=bcc3d9a3.d889e150.3d2 res2=00000003 errno=0
func=rred op1=4cb565d8.d0f6b51a result=3cd29878.1942783b.f71 res2=00000001 errno=0
func=rred op1=4cbff71f.543c1d9b result=bcb46eb9.f7c3eaad.43d res2=00000003 errno=0
func=rred op1=4cc3cb58.3f0f66ff result=bca97368.f4e18efe.5c0 res2=00000003 errno=0
func=rred op1=4ccb6ae9.68f21762 result=3c8582b4.01abf6e7.ec9 res2=00000003 errno=0
func=rred op1=4cd55505.de5bbc14 result=3cc0c236.3ac105ca.aa6 res2=00000003 errno=0
func=rred op1=4cd9e13b.c9a5c24d result=bccacb94.34fc4e6c.dad res2=00000001 errno=0
func=rred op1=4ce85ff7.a3a6e9bb result=3cc3728c.baf684a7.a7f res2=00000001 errno=0
func=rred op1=4cee75db.2e3d4509 result=bcb16265.74411267.634 res2=00000003 errno=0
func=rred op1=4cf30ab6.2c0ffab6 result=3cc622e3.3b2c0384.a58 res2=00000003 errno=0
func=rred op1=4cf615a7.f15b285d result=bca80370.e7ac295a.d04 res2=00000001 errno=0
func=rred op1=4d01e58e.52ea1a07 result=bc7405e7.30019397.1d4 res2=00000001 errno=0
func=rred op1=4d0f9b03.076325b8 result=3cb44255.8eabddae.7ac res2=00000001 errno=0
func=rred op1=4d13fd9b.2222a132 result=bcb943cf.5aac4294.421 res2=00000003 errno=0
func=rred op1=4d1d82f6.382a9e8d result=3ccfa3de.c901e5bf.2a0 res2=00000001 errno=0
func=rred op1=4d29cc4f.14c2e375 result=3cae81b7.8556f191.66f res2=00000001 errno=0
func=rred op1=4d2be45b.e3fb6aa0 result=bcbe4549.26aca77a.096 res2=00000003 errno=0
func=rred op1=4d35d8ee.b3d67ebe result=3ca47ec3.ed5627c5.d85 res2=00000001 errno=0
func=rred op1=4d3fd7bc.44e7cf57 result=bcc4241e.5f56b8a2.cc0 res2=00000003 errno=0
func=rred op1=4d42d338.1bc408cd result=3cd6d22e.0c56a2a7.35d res2=00000001 errno=0
func=rred op1=4d4cd205.acd55966 result=bca38d0a.72acff68.623 res2=00000001 errno=0
func=rred op1=4d556219.cf69875b result=bcd19445.e1abf3aa.10f res2=00000003 errno=0
func=rred op1=4d59557a.3055ec12 result=3ca5707d.67ff5023.4e7 res2=00000003 errno=0
func=rred op1=4d679734.72163568 result=3cc9dae3.4755fbce.abf res2=00000003 errno=0
func=rred op1=4d6b13bf.ee95a2bc result=bca1a997.7d5aaead.75e res2=00000001 errno=0
func=rred op1=4d7a349d.0f75c767 result=3ca93763.52a3f199.271 res2=00000003 errno=0
func=rred op1=4d7bf2e2.cdb57e11 result=bcc7f770.5203ab13.bfa res2=00000001 errno=0
func=rred op1=4d836fad.13d05eb8 result=3cc10617.88a8a477.f10 res2=00000001 errno=0
func=rred op1=4d844ecf.f2f03a0d result=bcba7e63.3c080604.30d res2=00000003 errno=0
func=rred op1=4d907cc6.858d980b result=3cb06297.93f69a42.6c1 res2=00000003 errno=0
func=rred op1=4d9741b6.813300ba result=bc746ffe.964146b0.9c5 res2=00000001 errno=0
func=rred op1=4da265cb.3c3ee90c result=bcc24d17.720cb8e2.fac res2=00000001 errno=0
func=rred op1=4dac1da1.c6271868 result=3cbf7e2f.3e892019.ce7 res2=00000003 errno=0
func=rred op1=4db4d3c0.deb8f4e3 result=bcc39417.5b70cd4e.048 res2=00000003 errno=0
func=rred op1=4db9afac.23ad0c91 result=3cbcf02f.6bc0f743.bae res2=00000001 errno=0
func=rred op1=4dc03a4e.0fa93aa0 result=bcc4db17.44d4e1b9.0e5 res2=00000001 errno=0
func=rred op1=4dce491e.f2bcc6d4 result=3cb5462f.f3687cc1.804 res2=00000003 errno=0
func=rred op1=4dd3be02.486e1dad result=bcc9f716.ea653365.356 res2=00000001 errno=0
func=rred op1=4ddac56a.b9f7e3c7 result=3ca61c61.508fb2d2.644 res2=00000003 errno=0
func=rred op1=4de33322.fd48b212 result=3c6ac62b.a4e6c21c.7f8 res2=00000003 errno=0
func=rred op1=4deed3fe.3de2326f result=bcb399cd.391a109f.b85 res2=00000003 errno=0
func=rred op1=4df53a6c.bf3dd966 result=bcc404e5.e7adaba8.2a5 res2=00000003 errno=0
func=rred op1=4dfcccb4.7bed0b1b result=3c8414a0.bbad1195.5fa res2=00000001 errno=0
func=rred op1=4e022f7e.1c4e1e68 result=3cc68779.ff234dda.d64 res2=00000003 errno=0
func=rred op1=4e0dd059.5ce79ec5 result=bcc25883.2d5f3f86.626 res2=00000003 errno=0
func=rred op1=4e12b150.8ccb683d result=3cc833dc.b971b9fc.9e4 res2=00000003 errno=0
func=rred op1=4e1d4e86.ec6a54f0 result=bcbfabde.2bd33aa7.6cd res2=00000001 errno=0
func=rred op1=4e27bf02.845c39ac result=3ccd3904.e85cfe61.f62 res2=00000003 errno=0
func=rred op1=4e2840d4.f4d98381 result=bcb8fa53.42998a20.4cf res2=00000001 errno=0
func=rred op1=4e357912.c0d275df result=3cd1f547.e8cb5774.8b0 res2=00000003 errno=0
func=rred op1=4e3a86c4.b863474e result=bc9396ca.1bb1e22b.b53 res2=00000001 errno=0
func=rred op1=4e46dcf3.dad5fcb0 result=3cb5e079.1dfa4991.923 res2=00000001 errno=0
func=rred op1=4e4e3095.95f091ec result=bcc4bba1.9cd615de.a3b res2=00000003 errno=0
func=rred op1=4e58b1dc.499ca1ff result=3ca82a28.2042b0f7.6f3 res2=00000003 errno=0
func=rred op1=4e5c5bad.2729ec9d result=bcc9a154.23c28e69.910 res2=00000001 errno=0
func=rred op1=4e62fa9f.52e722d3 result=3c824d78.12433b2e.e82 res2=00000001 errno=0
func=rred op1=4e64cf87.c1adc822 result=bcce8706.aaaf06f4.7e5 res2=00000003 errno=0
func=rred op1=4e701f00.d78c633d result=bcb14d1b.19697ac5.d83 res2=00000001 errno=0
func=rred op1=4e75d63d.ce41e269 result=3cba73d7.228b185d.4c3 res2=00000003 errno=0
func=rred op1=4e818cd0.1539c308 result=bca9737a.29b157f4.3c4 res2=00000003 errno=0
func=rred op1=4e84686e.9094829e result=3cbf0735.271be729.064 res2=00000001 errno=0
func=rred op1=4e9a5338.1fd6a48c result=bcc3169b.9f4501f7.2d3 res2=00000001 errno=0
func=rred op1=4e9bc107.5d840457 result=3c964eeb.f5aa3cd3.27f res2=00000003 errno=0
func=rred op1=4ea5f004.1a8833ca result=bccfd058.b41dadf1.4b6 res2=00000003 errno=0
func=rred op1=4ea75dd3.58359395 result=3cb7e133.0fadca63.b21 res2=00000003 errno=0
func=rred op1=4eb3be6a.17e0fb69 result=bcdca1e9.6ee782f2.c3d res2=00000003 errno=0
func=rred op1=4ebdf2a1.602b3cb8 result=3ca32a5d.c1a321b2.139 res2=00000003 errno=0
func=rred op1=4ec12aea.b2bcd6bd result=bcafbc96.91bf8e36.650 res2=00000001 errno=0
func=rred op1=4ecfc256.005588ce result=3ce6ae8d.33939848.90e res2=00000001 errno=0
func=rred op1=4ed675f9.08206d8a result=3cbcbf8c.a274b28b.1d6 res2=00000001 errno=0
func=rred op1=4ed8a793.0ac7a5eb result=bcb62767.b0edfd5d.5b3 res2=00000001 errno=0
func=rred op1=4ee2b7a4.dc1b05f3 result=3cc7f4f5.320bea1e.987 res2=00000003 errno=0
func=rred op1=4eec65e7.36cd0d82 result=bcc15cd0.408534f0.d65 res2=00000001 errno=0
func=rred op1=4ef1f147.c76bee58 result=bcaf1e85.7ece905f.320 res2=00000003 errno=0
func=rred op1=4ef5af9b.f37155ef result=3c8cd8d8.11decc13.d49 res2=00000001 errno=0
func=rred op1=4f00754c.3bc0c65a result=3cce8d1a.23929f4c.5aa res2=00000003 errno=0
func=rred op1=4f0ea83f.d7274d1b result=bca0b219.75df2a55.47b res2=00000001 errno=0
func=rred op1=4f11334a.01965a59 result=3cbdfbae.c856ae39.835 res2=00000001 errno=0
func=rred op1=4f1a2bed.e54c5185 result=bc722d6b.677e225a.eb6 res2=00000003 errno=0
func=rred op1=4f27edc4.ec5ed3ba result=3caa932a.a4ef07c8.772 res2=00000003 errno=0
func=rred op1=4f2c6a16.de39cf50 result=bcb1d4f0.2c570c7a.f67 res2=00000001 errno=0
func=rred op1=4f307334.680a6573 result=bcc879ba.d592ce6d.144 res2=00000003 errno=0
func=rred op1=4f3f6855.70b34201 result=3cd98672.bd40eb1a.c5b res2=00000001 errno=0
func=rred op1=4f431168.2dbdddb1 result=3ca17c74.f12ff69b.017 res2=00000003 errno=0
func=rred op1=413d10a4.f0adcc4f result=3fe87fe6.30304a38.943 res2=00000000 error=0
func=rred op1=413dba61.a2c03b33 result=3fe0b7a6.a6a685cf.8d6 res2=00000003 error=0
func=rred op1=c13a34ec.768d711d result=3fe5b7b8.a1db2f4c.b12 res2=00000003 error=0
func=rred op1=c13cb161.35c98a0f result=3fd67e4f.059466c9.c6f res2=00000001 error=0
func=rred op1=c13c38d1.7027b607 result=bfdd0737.0b906a40.52b res2=00000002 error=0
func=rred op1=c13ef602.452f3f79 result=3fe36561.56e3f603.3f7 res2=00000001 error=0
func=rred op1=c13d6289.355ffec1 result=3fd89d90.7d0bce31.6f3 res2=00000001 error=0
func=rred op1=413a0a72.b8d35b21 result=3fca0190.f80f3eb6.40a res2=00000002 error=0
func=rred op1=413cb6dc.3281c1d3 result=bfb5dc53.6f66760b.40a res2=00000000 error=0
func=rred op1=c13b2097.5e434fcb result=bfe4dc84.b351e6a4.9f6 res2=00000000 error=0
func=rred op1=c139f416.e781b5a7 result=bfd7826d.074f358e.b0d res2=00000002 error=0
|
e0a1e21f94fb0cf048489199a0e5588878ba886d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH3/EX3.2/Ex3_2.sce | 614bbafda6edccd3232eb8ed005a8a075fe5a7b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 512 | sce | Ex3_2.sce | //EX3_2 PG-3.15
clc
disp("Refer to the figure-3.8 shown")
Vin=0;//cut-in voltage for an ideal diode is zero
Rf=0;//forward resistance for an ideaal diode is zero
disp("For an ideal diode")
Vm=15;
Vdc=-Vm/%pi;
printf("\n DC output voltage is %.2f V\n ",Vdc)
disp("-ve sign indicates that voltage is negative wrt ground")
disp("For a silicon diode Vin=0.7V ")
Vin=0.7;
Vdc=-(Vm-Vin)/%pi;
printf("\n DC output voltage is %.2f V\n ",Vdc)
disp("-ve sign indicates that voltage is negative wrt ground")
|
c18404295aa622a299e4d672eafea257f5ede1e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2627/CH10/EX1.6/Ex_B_1_6.sce | daa084f43b68773515d1c01b40f54cedf8664493 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 345 | sce | Ex_B_1_6.sce | //Part B Ex 1.6
clc;clear;close;
format('v',5);
Av=10;//voltage gain
Ri=1;//kohm
Ro=10;//ohm
Vs=2;//V(Sensor voltage)
Rs=100;//ohm(Sensor resistance)
RL=50;//ohm
Vi=Vs*Ri*1000/(Rs+Ri*1000);//V
Vo=Av*Vi*RL/(Ro+RL);//V
Po=Vo^2/RL;//W
Pi=Vi^2/Ri;//mW
Ap=Po*1000/Pi;//Power gain
disp(Ap,"Power gain");
//Answer in the book is wrong.
|
006eb5ff2a3dc6ea603bf91c9612fec4e7a0af2f | a1161d9e9d26e0a7b20c31269be145f13d9d3e89 | /QA/tests/na_k/nak_md.tst | 4f3bf051ac7f07a12599a38516e8671bd1bfda66 | [
"LicenseRef-scancode-warranty-disclaimer",
"ECL-2.0"
] | permissive | nwchemgit/nwchem | c06e7e1fe11b3afad17b167f29a97c4fa3ad0fda | c5a8125298a6ea7d6eb27b07c196ea8041aa7198 | refs/heads/master | 2023-09-05T17:18:34.513866 | 2023-09-02T02:56:47 | 2023-09-02T02:56:47 | 111,318,191 | 425 | 164 | NOASSERTION | 2023-09-11T16:34:14 | 2017-11-19T17:48:21 | Fortran | UTF-8 | Scilab | false | false | 1,500 | tst | nak_md.tst | Time = 0.000
Temperature = 302.00
Volume = 0.00
Pressure = 5.55E+07
Energy = 0.000E+00
Time = 0.002
Temperature = 298.70
Volume = 15.70
Pressure = 5.94E+07
Energy = -1.878E+04
Time = 0.004
Temperature = 297.43
Volume = 15.70
Pressure = 5.87E+07
Energy = -1.878E+04
Time = 0.006
Temperature = 298.57
Volume = 15.70
Pressure = 5.35E+07
Energy = -1.878E+04
Time = 0.008
Temperature = 301.64
Volume = 15.70
Pressure = 4.42E+07
Energy = -1.878E+04
Time = 0.010
Temperature = 305.56
Volume = 15.70
Pressure = 3.25E+07
Energy = -1.878E+04
Time = 0.012
Temperature = 309.05
Volume = 15.70
Pressure = 2.23E+07
Energy = -1.879E+04
Time = 0.014
Temperature = 311.08
Volume = 15.70
Pressure = 1.45E+07
Energy = -1.879E+04
Time = 0.016
Temperature = 311.17
Volume = 15.70
Pressure = 9.78E+06
Energy = -1.880E+04
Time = 0.018
Temperature = 309.49
Volume = 15.70
Pressure = 8.35E+06
Energy = -1.880E+04
|
f1eee1f72dde3db78fad593fcdbf1887367a1fc1 | 793c335f1b908533abaf8a266b47e942ee70b973 | /logs/parsed_tree.tst | f82f527b5bbed279005d285a19ee98eddad69e5d | [] | no_license | ani555/E1-246-Assignment3 | 3d287fac1199986a719843d0629da034f15cd46a | 861195a3582e65a5c05bfc1c0c1d0c36956ef727 | refs/heads/master | 2020-05-15T20:57:09.387733 | 2019-04-21T19:22:56 | 2019-04-21T19:22:56 | 182,490,251 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 109 | tst | parsed_tree.tst | (S
(NP (DT the) (NN movie))
(VP (MD will) (VP (VB be) (NP (VBN released) (JJ next) (NN week))))
(. .))
|
aa14d53cbd6cc0f3d693479dc1bd466925512972 | c557cd21994aaa23ea4fe68fa779dd8b3aac0381 | /test/inc-after-fw.tst | d31ed51b963cf66a89c2a4254263580eec4f3d6b | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | dougsong/reposurgeon | 394001c0da4c3503bc8bae14935808ffd6f45657 | ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b | refs/heads/master | 2023-03-09T15:22:45.041046 | 2023-02-25T08:33:06 | 2023-02-25T08:33:06 | 280,299,498 | 1 | 0 | NOASSERTION | 2023-02-25T08:33:08 | 2020-07-17T01:45:32 | Go | UTF-8 | Scilab | false | false | 142 | tst | inc-after-fw.tst | ## Test incorporate command - after case with --firewall
set testmode
read <min.fi
@min(=C) incorporate --after --firewall sample.tar
write -
|
51b6cc3a8a9c6120a199d07282b1ea3b3ffafe69 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set4/s_Chemistry_R._Chang_884.zip/Chemistry_R._Chang_884/CH5/EX5.1/Example5_1.sce | e8f7886accd05f6fd37faf85d3b600423f5d4cda | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 237 | sce | Example5_1.sce | errcatch(-1,"stop");mode(2);//Pressure Units
;
;
printf("\t Example 5.1\n");
Pbaro=688;//pressure in mm Hg
Patm=Pbaro/760;//pressure in atm
printf("\t the presuure in atmospheres is : %4.3f atm\n",Patm);
//End
exit();
|
3cb220ad8ccf0090b8d378f8b966e0065f67c135 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.0/macros/percent/%lssflss.sci | c690a54da6b247ece8ecedb1042db03eb3362dd9 | [
"MIT",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 379 | sci | %lssflss.sci | function [s]=%lssflss(s1,s2)
// s=[s1;s2] in state-space
//!
// origine s. steer inria 1987
//
[s1,s2]=sysconv(s1,s2)
[a1,b1,c1,d1,x1,dom1]=s1(2:7)
[a2,b2,c2,d2,x2]=s2(2:6)
[n1,n1]=size(a1);[n2,n2]=size(a2)
[p1,m1]=size(d1);[p2,m2]=size(d2)
a1=[a1 0*ones(n1,n2);0*ones(n2,n1) a2]
c1=[c1 0*ones(p1,n2);0*ones(p2,n1) c2]
s=minss(list('lss',a1,[b1;b2],c1,[d1;d2],[x1;x2],dom1))
|
42f47b381d464179c7e25a3aa4d75865e9885da2 | 94c9fb094976265935872b32b6e6a4fd9454ef31 | /tp_reg_trace_mod_simp_1.sce | 69d9d1b3475a280076ff4349043382ca40f2bd4a | [] | no_license | dtbinh/tp-scilab | 6d2373af479d9cb1d1494f3ccc5abcae0697b8ac | 4c41c77eb4a4021022fa91614cfe4f7a4417f4e5 | refs/heads/master | 2021-01-10T12:23:53.166922 | 2013-12-19T17:23:18 | 2013-12-19T17:23:18 | 49,208,752 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 116 | sce | tp_reg_trace_mod_simp_1.sce | // tracé de la droite
z=1:0.1:8; t=gam(1)+gam(2)*z;
plot2d(r1,X,-2,"111","Age",[1,0,8,16]);
plot2d(z,t,[1],"000");
|
675406942ff2aba3c2fadf42ab7dca50483147bc | 3dfde5edd2a32028f4eb7cf329c7f784043fa6c0 | /filters.sci | dfac0594efd13cb210631c55b338cc20ebcc91f2 | [] | no_license | Chadys/mini_toshop | b26fb5f94c77c70e82e167c8a201a92a67d731a6 | a3f0a49f669a5a3b0b3afd952b5a44383ee2a7d0 | refs/heads/master | 2021-01-18T20:19:43.794349 | 2017-04-13T14:14:44 | 2017-04-13T14:14:44 | 86,955,863 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,875 | sci | filters.sci | function flt = moyenneur(T)
// filtre flou uniforme
// param : T = taille du filtre
// nombre impaire (idéalement entre 3 et 15)
if ~exists("T","local") then
T=3
end
if ~modulo(T,2) | T<3 | T>15 then
error('T must be an odd number between 3 and 15!');
end
flt = ones(T,T) * 1/9
endfunction
function flt = sharpener(T)
// filtre accentuation des détails
// param : T = taille du filtre
// nombre impaire (idéalement entre 3 et 15)
if ~exists("T","local") then
T=3
end
if ~modulo(T,2) | T<3 | T>15 then
error('T must be an odd number between 3 and 15!');
end
flt = zeros(T,T)
middle = floor(T/2)
flt(middle, middle) = 2
flt = flt - moyenneur(T)
endfunction
function flt = gaussien(T, sigma)
// filtre flou pondéré
// param : T = taille du filtre
// nombre impaire (idéalement entre 3 et 15)
// param : sigma = coef de gauss
// petit double ~entre 0 et 3?
if ~exists("sigma","local") then
sigma = 1.4
end
if ~exists("T","local") then
T=3
end
if ~modulo(T,2) | T<3 | T>15 then
error('T must be an odd number between 3 and 15!');
end
indices = -floor(T/2) : floor(T/2);
[x y] = meshgrid(indices, indices);
flt = exp(-((x.^2 + y.^2) / (2*sigma^2)))/(2*%pi*sigma^2)
endfunction
function [D,G,H,B] = sobel(T)
// filtre de détection de contour
// renvoit les 4 filtres de sobel possibles
// param : T = taille du filtre
// nombre impaire (idéalement entre 3 et 15)
if ~exists("T","local") then
T=3
end
if ~modulo(T,2) | T<3 | T>15 then
error('T must be an odd number between 3 and 15!');
end
D = -floor(T/2) : floor(T/2)
for i = 2 : T
D($+1,:) = D(1,:)*(min(abs(i-1), abs(i-T))+1)
end
G = -D
B = D'
H = -B
endfunction
function flt = laplacien(T)
// meilleur filtre de détection de contour
// param : T = taille du filtre
// 4 ou 8
if ~exists("T","local") then
T = 8
end
if T<>4 & T<>8 then
error('T must be 4 or 8!');
end
if T == 4 then
flt = [0 1 0 ; 1 -4 1 ; 0 1 0]
else
flt = [1 1 1 ; 1 -8 1 ; 1 1 1]
end
endfunction
function new_img = convolute(img, flt, border_mode)
// application d'un filtre de convolution
// param : flt = filtre
// matrice à deux dimensions
// param : border_mode = mode de gestion de la bordure
// entre 1 et 3
//border_mode 1 = border to 0
//border_mode 2 = partial convolution
//border_mode 3 = mirror border used
if ~exists("border_mode","local") then
border_mode = 3
end
[x,y,c] = size(img)
img = im2double(img)
[flt_x,flt_y] = size(flt)
border_l_limit = floor(flt_x/2)
border_c_limit = floor(flt_y/2)
for i=1 : x
for j=1 : y
//if border
if border_mode == 1 & (i <= border_l_limit | j <= border_c_limit |...
i > x-border_l_limit | j > y-border_c_limit) then
//put to zero border pixels
new_img(i,j,:) = [0 0 0]
else
new_val = hypermat([1 1 3])
for ii = -border_l_limit : border_l_limit
for jj = -border_c_limit : border_c_limit
//if outside border
if i+ii < 1 | i+ii > x | j+jj < 1 | j+jj > y then
//mirror border
if border_mode == 3 then
I = max(i+ii, 1)
I = min(I, x)
J = max(j+jj, 1)
J = min(J, y)
new_val = new_val + img(I, J,:)*flt(border_l_limit+1+ii, border_c_limit+1+jj)
end
else
new_val = new_val + img(i+ii, j+jj,:)*flt(border_l_limit+1+ii, border_c_limit+1+jj)
end
end
end
new_img(i, j,:) = matrix(new_val,1,c)
end
end
end
new_img = im2uint8(new_img)
endfunction
function new_img = median_filter(img, filter_size, border_mode)
// application d'un filtre median
// param : filter_size = taille du filtre
// vector à deux entrées ([3 3] ou [5 7] par exemple)
// idéalement le même chiffre et nombre impaire entre 3 et 15
// param : border_mode = mode de gestion de la bordure
// entre 1 et 3
//border_mode 1 = border to 0
//border_mode 2 = partial convolution
//border_mode 3 = mirror border used
if ~exists("filter_size","local") then
filter_size = [3 3]
end
if ~exists("border_mode","local") then
border_mode = 3
end
[x,y, c] = size(img)
border_l_limit = floor(filter_size(1)/2)
border_c_limit = floor(filter_size(2)/2)
for i=1 : x
for j=1 : y
//if border
if border_mode == 1 & (i <= border_l_limit | j <= border_c_limit |...
i > x-border_l_limit | j > y-border_c_limit) then
//put to zero border pixels
new_img(i,j,:) = [0 0 0]
else
haut = max(i-border_l_limit, 1)
bas = min(i+border_l_limit, x)
gauche = max(j-border_c_limit,1)
droite = min(j+border_c_limit, y)
voisins = img(haut:bas, gauche:droite,:)
//mirror border
if border_mode == 3 then
for k=i-border_l_limit:1
voisins(border_l_limit+1,:,:)=voisins(1,:,:)
end
for k=j-border_c_limit:1
voisins(:,border_c_limit+1,:)=voisins(:,1,:)
end
for k=x+1:i+border_l_limit
voisins(border_l_limit+1,:,:)=voisins(border_l_limit,:,:)
end
for k=y+1:j+border_c_limit
voisins(:,border_c_limit+1,:)=voisins(:,border_c_limit,:)
end
end
n_y = length(voisins(:,:,1))
voisins = gsort(matrix(voisins, 1, n_y, c))
new_img(i,j,:) = matrix(voisins(:,n_y/2,:),1,c)
end
end
end
new_img = uint8(new_img)
endfunction
function new_img = despeckle(img, filter_size, border_mode)
// application d'un filtre de débruitage
// param : filter_size = taille du filtre
// vector à deux entrées ([3 3] par exemple)
// idéalement le même chiffre et nombre impaire entre 3 et 15
// param : border_mode = mode de gestion de la bordure
// entre 1 et 2
//border_mode 1 = border to 0
//border_mode 2 = partial convolution
if ~exists("filter_size","local") then
filter_size = [3 3]
end
if ~exists("border_mode","local") then
border_mode = 2
end
[x,y, c] = size(img)
border_l_limit = floor(filter_size(1)/2)
border_c_limit = floor(filter_size(2)/2)
for i=1 : x
for j=1 : y
//if border
if border_mode == 1 & (i <= border_l_limit | j <= border_c_limit |...
i > x-border_l_limit | j > y-border_c_limit) then
//put to zero border pixels
new_img(i,j,:) = [0 0 0]
else
haut = max(i-border_l_limit, 1)
bas = min(i+border_l_limit, x)
gauche = max(j-border_c_limit,1)
droite = min(j+border_c_limit, y)
tmp = 1
for ii = haut:bas
for jj = gauche:droite
//if not center pixel
if ii <> i | jj <> j then
voisins(tmp,:) = double(matrix(img(ii,jj,:),1,c))
tmp = tmp+1
end
end
end
color_intensity = mean(voisins,2)
ecart_type = stdev(color_intensity)
if abs(mean(color_intensity) - double(img(i,j))) > ecart_type then
new_img(i,j,:) = mean(voisins,1)
else
new_img(i,j,:) = matrix(img(i,j,:),1,c)
end
end
end
end
new_img = uint8(new_img)
endfunction
function new_img = outlining(img, filter_size, border_mode)
// application des quatre filtres de sobel
// param : filter_size = taille du filtre
// nombre impaire (idéalement entre 3 et 15)
// param : border_mode = mode de gestion de la bordure
// entre 1 et 3
//border_mode 1 = border to 0
//border_mode 2 = partial convolution
//border_mode 3 = mirror border used
if ~exists("filter_size","local") then
filter_size = 3
end
if ~exists("border_mode","local") then
border_mode = 3
end
[x,y,c] = size(img)
[D,G,H,B] = sobel(filter_size)
d = convolute(img, D,border_mode)
g = convolute(img, G,border_mode)
h = convolute(img, H,border_mode)
b = convolute(img, B,border_mode)
for i=1 : x
for j=1 : y
new_values = uint32(d(i,j,:))+g(i,j,:)+h(i,j,:)+b(i,j,:)
new_img(i,j,:) = min(matrix(new_values,1,3),resize_matrix(255,1,c,"",255))
end
end
new_img = uint8(new_img)
endfunction |
87d6d769a722ccbc6627e97287fac36ef8f1c337 | 66106821c3fd692db68c20ab2934f0ce400c0890 | /test/jintgen/redef_enc_02.tst | 4df959d644d86bc7a297c559c02c0dd6690a9ce1 | [] | no_license | aurelf/avrora | 491023f63005b5b61e0a0d088b2f07e152f3a154 | c270f2598c4a340981ac4a53e7bd6813e6384546 | refs/heads/master | 2021-01-19T05:39:01.927906 | 2008-01-27T22:03:56 | 2008-01-27T22:03:56 | 4,779,104 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 188 | tst | redef_enc_02.tst | // @Harness: verifier
// @Purpose: "Test for redefinitions of format"
// @Result: "RedefinedFormat @ 7:10"
architecture redef_enc_01 {
format F = { a[3:0] }
format F = { a[7:0] }
}
|
b50a2b43a20cbca993892d569a08302f632a0637 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH13/EX13.3/Ex13_3.sce | 65974b03c9f81a0785465cf466354a120c2bb7d3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 251 | sce | Ex13_3.sce | //Ex13_3
clc
Rf = 1.5*10^6//feeback resistance
Cf = 1*10^-9//capacitance across feedback
f0 = 1/(2*%pi*Rf*Cf)//frequency of oscillation
disp("Rf = "+string(Rf)+"ohm")
disp("Cf = "+string(Cf)+"F")
disp("f0 = 1/(2*pi*Rf*Cf) = "+string(f0)+"Hz")
|
034f002cd4da765029ebeabb6d1468001a7babbc | 449d555969bfd7befe906877abab098c6e63a0e8 | /275/CH2/EX2.2.68/Ch2_2_68.sce | a4cf6342fea78a335a34f88da128b8e7e35e7636 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 806 | sce | Ch2_2_68.sce | clc
disp("Example 2.68")
printf("\n")
disp("Calculate the line regulation, output resistance, load regulation & ripple rejection ratio")
printf("Given\n")
printf("1 Resistance are in ohms \n 2 Current are in ampere \n 3 voltage sources are in volt\n")
//input voltage
Vi=16
//output voltage
Vo=6
//load current
ILmax=60*10^-3
//dynamic impedence
Zz=7
//series resistance
R=150
//Source effect
delVi=(10*16)/100
RL=Vo/ILmax
//Zz||RL
Rp=(Zz*RL)/(Zz+RL)
delVo=(delVi*Rp)/(R+Rp)
//Line regulation
LR=(delVo*100)/Vo
//load effect
delIL=ILmax
Ro=(Zz*R)/(Zz+R)
delVo1=delIL*Ro
//output resistance
Rout=Ro
//Ripple rejection ratio
VrobyVri=Rp/(R+Rp)
printf("line regulation is %f \n",LR)
printf("output resistance is %d ohm\n",Rout)
printf("Ripple rejection ratio %f \n",VrobyVri) |
f35c8d37ee7c690a01646f9f68f5a7e14d91b6df | 449d555969bfd7befe906877abab098c6e63a0e8 | /3630/CH14/EX14.13/Ex14_13.sce | 811014bbbc788cf9d2e2ef24499c73ad6b92cbd0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 221 | sce | Ex14_13.sce | clc;
Av=120;
Cbc=0.000000000006;
CinM=Av*Cbc;
CoutM=Cbc;
disp('Farad',CinM,"CinM=")//The answers vary due to round off error
disp('pFarad',CoutM*1000000000000,"CoutM=")//The answers vary due to round off error
|
2a10715a3b4eadf5267744593409485fe105dee3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1172/CH6/EX6.14.2/Example6_14b.sce | 20241230c3c4befc6b703772f119b1bb2d614b20 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 443 | sce | Example6_14b.sce | clc
//Given that
c = 3e8 // speed of light in m/s
ratio = 1.95e+03 // Ratio of relativistic mass and rest mass
// sample problem 14b page No. 227
printf("\n \n\n # Problem 14b # \n")
printf("\n Standard formula used \n m = m_o/ sqrt ( 1- (v/c)^2)")
ratio_1 = 1 /(2* ratio^2) // calculation of ratio of velocity to velocity of light for
printf ("\n Ratio of velocity to velocity of light for particle is 1 - %e .", ratio_1 )
|
c92efa9f38450eafe46e04f6fd204d8621a998db | 449d555969bfd7befe906877abab098c6e63a0e8 | /2159/CH10/EX10.8/108.sce | fee61853cac6c3c4791d7da9d09f0c6eaed3931e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 204 | sce | 108.sce | // problem 10.8
d2=0.6
Q=15/60
N=1450/60
V1=2.6
g=9.81
y2=30
w=9810
Vf1=V1
Vf2=V1
u2=3.142*d2*N
x=Vf2/tand(y2)
Vw2=u2-x
Hm=Vw2*u2/g
P=(w*Q*Hm)/1000
disp(P,Hm,"head developed, pump power")
|
f77052cf0906bbd5d0fecea75618cda6717f227c | b26cbe6bc3e201f030705aaf9eb82da94def231f | /tests/determinism-016.tst | 6d7aeac8c2c37256960fcd55901b69ab820b1f92 | [] | no_license | RP-pbm/Recurrence-plot | f86c5cd85460661b01a609f8f4281d2cda6b4e07 | b5da95f9b30c1a924a002102219bf0a2ad47df2c | refs/heads/master | 2022-07-24T12:11:34.163543 | 2022-07-09T19:32:43 | 2022-07-09T19:32:43 | 92,934,698 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 21 | tst | determinism-016.tst | ../inputs/mini-14.ssv |
ab7f76814b1d886ff7cad22a5d708da5c4a3cad8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2951/CH3/EX3.3.A/additional_ex_3.sce | c665cb5e00b4f13e543d01c809454016231f2702 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 409 | sce | additional_ex_3.sce | clc;
clear;
disp("efficiency(n)=(useful power/total power)*100%");
disp(" =total sideband power/(total sideband power+carrier power)*100%");
syms m Pc
N=[((m^2)*Pc/2)/(Pc*(1+(m^2)/2))];
disp("*100% ",N);
disp("----------------------------------------------------------------");
m=0.7 //modulation index
n=[m^2/(m^2+2)]*100; //efficiency
disp(n,"the percentage of useful power is ");
|
98fe5446d88272220d7fc44163f0325371b44eef | 449d555969bfd7befe906877abab098c6e63a0e8 | /74/CH6/EX6.1/example1_sce.sce | f8a55a2324564f8679d9f216f3054298962f61a9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 116 | sce | example1_sce.sce | //chapter 6
// example 6.1
//page 246
Gm=55*10^-6;
C=8.75*10^-12;
Fh=Gm/(2*3.14*C);//Fh=f-3db
disp(Fh)//result |
549614e138c015983af84b181dd2b8436d443e11 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH31/EX31.2/31_2.sce | 0bfb1426e809ad6c03d36bd1f3319bdab46c5130 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 308 | sce | 31_2.sce | clear//
//Variables
fo = 2.2 * 10**6 //Frequency (in Hertz)
//Calculation
f1o = fo * 2**0.5 //New frequency (in Hertz)
//Result
printf("\n It will work at frequency of %0.2f MHz when capacitance is reduced by 50 percentage.",f1o * 10**-6)
|
1cfa91dad86c8739f97e98259560f4120508cb43 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2534/CH6/EX6.5/Ex6_5.sce | fa46b80c9cbfda8dce6e5fcb2a536b93b6def01e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 583 | sce | Ex6_5.sce | //Ex6_5
clc
VBB = 1
VCC = 12
IC = 12*10^-3
VCE = 4
beta = 80
VBE = 0.7
disp("VBB = "+string(VBB)+"V")//base supply voltage
disp("VCC = "+string(VCC)+"V")//collector supply voltage
disp("IC = "+string(IC)+"A")//collector current
disp("VCE = "+string(VCE)+"V")//voltage across collector and emitter
disp("beta = "+string(beta))//current gain
disp("VBE = "+string(VBE)+"V")//voltage across base and emitter
IB = IC/beta
disp("IB = IC/beta = "+string(IB)+"A")//base current
RC = (VCC - VCE)/IC
disp("RC = (VCC - VCE)/IC = "+string(int(RC))+"ohm")//collector resistance
|
aba5aa1d0f1f7d5ad1c5a6cca14e999432b5b35d | 6bd47868c9c7b3e9469b27f60a4757816a62060b | /Turunan Numerik/turunan2.sci | 89eb7ec4c9bc29c2f6353c1f37d5f4c82b463443 | [] | no_license | fahrioghanial/Program-Metode-Numerik | 555401132e47516ff38ab7d38e1056c16e45ab1a | 83cfe9144c72a3adbabbe71923f32ab6209b02e8 | refs/heads/master | 2023-02-28T16:14:24.353765 | 2021-02-04T08:04:46 | 2021-02-04T08:04:46 | 335,882,015 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,130 | sci | turunan2.sci | /*
Nama : Mohamad Fahrio Ghanial Fatihah
NPM : 140810190005
Deskripsi : Program Turunan Kedua
*/
clear;
clc;
printf('\nProgram Penghitung Turunan Kedua\n');
X = [0.10 0.12 0.14 0.16 0.18 0.20];
Y = [0.004 0.006 0.008 0.011 0.015 0.018];
printf('Diketahui Data Berikut:\n');
printf('x\tf(x)\n');
for i=1:6
printf('%.2f\t%.3f\n', X(i),Y(i));
end
b=input('Masukkan nilai x yang akan dicari f``(x) nya = ');
h=0.02;
fDAksen_maju = "null";
fDAksen_mundur = "null";
fDAksen_pusat = "null";
for i=1:6
if b==X(i)
if i-1 == 0
fDAksen_maju=(Y(i+2)-2*Y(i+1)+Y(i))/(h*h);
elseif i-1 == 1
fDAksen_maju=(Y(i+2)-2*Y(i+1)+Y(i))/(h*h);
fDAksen_pusat=(Y(i+1)-2*Y(i)+Y(i-1))/(h*h);
elseif i+1 == 7
fDAksen_mundur=(Y(i-2)-2*Y(i-1)+Y(i))/(h*h);
elseif i+1 == 6
fDAksen_mundur=(Y(i-2)-2*Y(i-1)+Y(i))/(h*h);
fDAksen_pusat=(Y(i+1)-2*Y(i)+Y(i-1))/(h*h);
else
fDAksen_maju=(Y(i+2)-2*Y(i+1)+Y(i))/(h*h);
fDAksen_mundur=(Y(i-2)-2*Y(i-1)+Y(i))/(h*h);
fDAksen_pusat=(Y(i+1)-2*Y(i)+Y(i-1))/(h*h);
end
end
end
printf('Jadi nilai f``(%.2f) adalah\t:\n',b);
if fDAksen_mundur=="null" && fDAksen_maju=="null" && fDAksen_pusat=="null"
printf('Nilai x yang anda masukkan tidak terdapat didalam tabel!');
elseif fDAksen_mundur=="null" && fDAksen_pusat=="null"
printf('Berdasarkan Hampiran Beda-Maju :%.5f\n',fDAksen_maju);
elseif fDAksen_maju=="null" && fDAksen_pusat=="null"
printf('Berdasarkan Hampiran Beda-Mundur :%.5f\n',fDAksen_mundur);
elseif fDAksen_maju=="null"
printf('Berdasarkan Hampiran Beda-Mundur :%.5f\n',fDAksen_mundur);
printf('Berdasarkan Hampiran Beda-Pusat :%.5f\n',fDAksen_pusat);
elseif fDAksen_mundur=="null"
printf('Berdasarkan Hampiran Beda-Maju :%.5f\n',fDAksen_maju);
printf('Berdasarkan Hampiran Beda-Pusat :%.5f\n',fDAksen_pusat);
else
printf('Berdasarkan Hampiran Beda-Maju :%.5f\n',fDAksen_maju);
printf('Berdasarkan Hampiran Beda-Mundur :%.5f\n',fDAksen_mundur);
printf('Berdasarkan Hampiran Beda-Pusat :%.5f\n',fDAksen_pusat);
end
|
2d01861c83f1258fb189df6308a17272c5f9742f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1958/CH1/EX1.4/Chapter1_example4.sce | 22f8ea8c7f50048de5f5f5737e4afe8b778f2c7d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 363 | sce | Chapter1_example4.sce | clc
clear
//Input data
//A small ball is released from height of 4r measured from the bottom of the loop, where r is the radius of the loop
//Calculations
ar=(6*9.8)//Radial acceleration in m/s^2
at=(9.8*sind(90))//Tangential acceleration in m/s^2
//Output
printf('Radial acceleration is %3.1f m/s^2 \n Tangential acceleration is %3.1f m/s^2',ar,at)
|
bbd1fd32da03ed235a9729adddab230d5334a8ce | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3.1/macros/percent/%lnc.sci | a93cc591232e454552174f786f4642ea7fa955be | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 61 | sci | %lnc.sci | function [r]=%lnc(l1,l2)
//%lnc(l1,l2) : l1==l2
//!
r=%t
|
ac19f29913b54e68664af9c29c38a809faa77f99 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2657/CH18/EX18.4/Ex18_4.sce | e65f5e06f04f620d950eaa3ea3bc08b66c541449 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,465 | sce | Ex18_4.sce | //Calculations on oil engine
clc,clear
//Given:
n=4 //Number of cylinders
d_o=5 //Diameter of orifice in cm
Cd=0.6 //Coefficient of discharge for orifice
d=10.5,l=12.5 //Bore and stroke in cm
N=1200 //Engine speed in rpm
T=147 //Brake torque delivered in Nm
m_f=5.5 //Fuel consumption in kg/hr
CV=43100 //Calorific value in kJ/kg
deltaP_o=5.7 //Head across orifice in cm of water
P1=1.013 //Atmospheric pressure in bar
T1=20+273 //Atmospheric temperature in K
g=9.81 //Accelaration due to gravity in m/s^2
//Solution:
//(a)
bp=2*%pi*N/60*T*10^-3 //Brake power in kW
eta_bt=bp*3600/(m_f*CV) //Brake thermal efficiency
//(b)
A=%pi/4*d^2*10^-4 //Area of cylinder in m^2
bmep=bp*1000/(n*l/100*A*N/(2*60)) //Brake mean effective pressure in N/m^2
//(c)
rho_w=1000 //Mass density of water in kg/m^3
deltaP_o=rho_w*g*deltaP_o/100 //Pressure drop across orifice in N/m^2
R=0.287 //Specific gas constant in kJ/kgK
rho_a=P1*10^5/(R*10^3*T1) //Mass density of air in kg/m^3
rho_a=round(10*rho_a)/10
A_o=%pi/4*d_o^2*10^-4 //Area of orifice in m^2
V_a=Cd*A_o*sqrt(2*deltaP_o/rho_a) //Air inhaled in m^3/s
V_s=(%pi/4)*d^2*l*n*N/(2*60)*10^-6 //Swept volume in m^3/s
eta_vol=V_a/V_s //Volumetric efficiency
//Results:
printf("\n (a)Brake thermal efficiency, eta_bt = %.1f percent",eta_bt*100)
printf("\n (b)Brake mean effective pressure, bmep = %.2f bar",bmep*10^-5)
printf("\n (c)Volumetric efficiency, eta_vol = %.1f percent\n\n",eta_vol*100)
|
673fa48dbf07066cf50beb165016e2b73c4e912d | 9adf1bc6de8cda036ee25fde7a658b3ca8cdf477 | /TABELLE/src/results/stratPG-C.nursery/.svn/text-base/result6s0.tst.svn-base | abb1d2e15bce64480c263abb83a15a95c4b8cd43 | [] | no_license | deepak0431/granada | fc9acf52590a1315805702af41d87760ef089545 | 077460440ded909242697d5f0fd1de8526c53ac6 | refs/heads/master | 2021-01-10T11:58:32.017549 | 2011-12-15T01:51:29 | 2011-12-15T01:51:29 | 51,353,969 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 27,708 | result6s0.tst.svn-base | @relation nursery
@attribute parents {pretentious, great_pret, usual}
@attribute has_nurs {critical, very_crit, less_proper, proper, improper}
@attribute form {incomplete, foster, completed, complete}
@attribute children {1, 3, more, 2}
@attribute housing {critical, less_conv, convenient}
@attribute finance {inconv, convenient}
@attribute social {problematic, nonprob, slightly_prob}
@attribute health {priority, not_recom, recommended}
@attribute class {recommend, very_recom, spec_prior, priority, not_recom}
@data
priority priority
very_recom priority
priority priority
priority priority
priority priority
not_recom not_recom
priority priority
very_recom priority
priority not_recom
not_recom not_recom
priority priority
priority priority
priority priority
priority priority
not_recom not_recom
priority priority
priority priority
priority priority
not_recom not_recom
not_recom not_recom
priority priority
not_recom not_recom
not_recom not_recom
priority priority
priority priority
priority priority
not_recom not_recom
not_recom not_recom
very_recom priority
priority priority
very_recom priority
not_recom not_recom
very_recom not_recom
priority not_recom
not_recom not_recom
priority priority
priority priority
not_recom not_recom
very_recom very_recom
priority priority
priority priority
priority priority
priority priority
priority priority
not_recom not_recom
very_recom priority
very_recom priority
priority priority
not_recom priority
priority priority
priority priority
not_recom not_recom
very_recom very_recom
priority not_recom
priority priority
priority priority
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
priority priority
priority priority
priority priority
priority priority
priority priority
priority priority
priority priority
priority priority
not_recom not_recom
not_recom not_recom
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
priority not_recom
priority priority
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
priority priority
not_recom not_recom
priority priority
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority priority
very_recom priority
not_recom not_recom
not_recom not_recom
priority spec_prior
priority priority
priority spec_prior
not_recom not_recom
priority priority
priority priority
not_recom not_recom
priority priority
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
very_recom priority
not_recom not_recom
not_recom priority
priority priority
priority priority
not_recom not_recom
priority spec_prior
priority priority
very_recom very_recom
priority priority
not_recom not_recom
priority priority
very_recom very_recom
very_recom very_recom
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority priority
priority priority
not_recom not_recom
not_recom priority
priority priority
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority priority
priority priority
priority priority
not_recom not_recom
priority spec_prior
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority spec_prior
priority priority
priority priority
priority priority
priority priority
priority priority
not_recom not_recom
priority priority
priority priority
not_recom not_recom
very_recom very_recom
not_recom not_recom
not_recom not_recom
priority not_recom
priority priority
priority priority
priority priority
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
priority not_recom
not_recom not_recom
priority spec_prior
not_recom not_recom
very_recom very_recom
not_recom not_recom
not_recom not_recom
priority not_recom
priority priority
not_recom not_recom
very_recom priority
very_recom priority
not_recom not_recom
priority priority
priority priority
priority priority
very_recom priority
priority priority
not_recom not_recom
very_recom priority
not_recom not_recom
priority priority
priority priority
not_recom not_recom
priority priority
priority priority
not_recom not_recom
very_recom very_recom
priority priority
priority very_recom
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
very_recom very_recom
priority priority
priority priority
priority priority
priority priority
priority priority
priority priority
not_recom not_recom
not_recom not_recom
priority priority
very_recom priority
not_recom not_recom
priority priority
very_recom priority
priority spec_prior
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority priority
priority priority
not_recom not_recom
priority priority
priority priority
priority priority
priority priority
priority priority
not_recom very_recom
priority priority
not_recom priority
not_recom not_recom
priority priority
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
priority spec_prior
not_recom not_recom
priority priority
not_recom not_recom
priority priority
priority priority
priority priority
not_recom not_recom
not_recom not_recom
priority not_recom
not_recom not_recom
priority priority
priority priority
priority priority
priority priority
not_recom not_recom
not_recom not_recom
priority not_recom
priority priority
priority priority
priority priority
priority priority
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
priority priority
priority priority
priority priority
not_recom not_recom
not_recom priority
not_recom spec_prior
priority priority
priority spec_prior
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
priority priority
spec_prior spec_prior
spec_prior not_recom
spec_prior spec_prior
priority priority
priority priority
priority priority
spec_prior spec_prior
priority priority
priority spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
priority spec_prior
priority spec_prior
not_recom not_recom
priority priority
not_recom not_recom
priority priority
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
priority priority
not_recom not_recom
spec_prior spec_prior
priority spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
priority spec_prior
priority priority
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
priority priority
not_recom not_recom
priority spec_prior
spec_prior spec_prior
priority spec_prior
not_recom priority
priority priority
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
priority spec_prior
not_recom not_recom
not_recom not_recom
priority priority
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
priority priority
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
spec_prior spec_prior
not_recom not_recom
spec_prior priority
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior priority
spec_prior priority
spec_prior spec_prior
not_recom not_recom
spec_prior priority
spec_prior priority
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
priority spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
priority priority
spec_prior spec_prior
priority priority
spec_prior spec_prior
not_recom not_recom
spec_prior priority
spec_prior priority
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior priority
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
priority spec_prior
not_recom not_recom
not_recom not_recom
not_recom not_recom
spec_prior priority
spec_prior spec_prior
not_recom priority
spec_prior priority
not_recom not_recom
not_recom not_recom
spec_prior priority
not_recom not_recom
not_recom not_recom
priority priority
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior priority
not_recom not_recom
spec_prior priority
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
priority priority
not_recom not_recom
spec_prior priority
spec_prior priority
spec_prior priority
spec_prior priority
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior priority
not_recom not_recom
spec_prior priority
spec_prior spec_prior
spec_prior priority
not_recom not_recom
spec_prior priority
spec_prior spec_prior
spec_prior priority
spec_prior priority
spec_prior priority
spec_prior spec_prior
spec_prior spec_prior
spec_prior priority
not_recom not_recom
very_recom very_recom
priority priority
very_recom priority
very_recom priority
priority priority
not_recom not_recom
priority priority
priority priority
priority priority
not_recom not_recom
not_recom not_recom
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority spec_prior
not_recom not_recom
priority priority
not_recom not_recom
priority priority
very_recom priority
priority priority
priority spec_prior
not_recom not_recom
priority spec_prior
not_recom not_recom
priority priority
priority priority
priority priority
priority priority
not_recom priority
priority priority
not_recom not_recom
priority priority
priority priority
priority spec_prior
priority priority
priority priority
not_recom not_recom
priority priority
priority priority
priority priority
very_recom very_recom
priority priority
priority priority
priority priority
priority priority
very_recom very_recom
priority priority
priority priority
priority priority
priority priority
not_recom not_recom
priority priority
priority priority
priority spec_prior
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
priority spec_prior
priority priority
priority priority
not_recom not_recom
not_recom not_recom
priority priority
priority priority
very_recom very_recom
priority priority
priority priority
priority priority
not_recom not_recom
priority priority
priority spec_prior
not_recom not_recom
priority priority
priority priority
not_recom not_recom
not_recom not_recom
priority priority
priority priority
priority spec_prior
priority spec_prior
priority not_recom
priority priority
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
priority spec_prior
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority priority
very_recom priority
not_recom not_recom
priority spec_prior
priority priority
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority priority
priority priority
not_recom not_recom
priority priority
priority priority
not_recom not_recom
priority priority
priority spec_prior
priority priority
not_recom not_recom
not_recom not_recom
priority priority
priority not_recom
priority not_recom
priority priority
not_recom not_recom
priority priority
priority priority
priority priority
not_recom not_recom
priority priority
priority spec_prior
priority priority
priority spec_prior
not_recom not_recom
priority not_recom
not_recom not_recom
priority spec_prior
priority spec_prior
priority priority
priority spec_prior
priority spec_prior
priority spec_prior
not_recom not_recom
priority priority
priority spec_prior
not_recom not_recom
not_recom not_recom
priority priority
very_recom very_recom
not_recom not_recom
priority priority
priority priority
priority spec_prior
not_recom not_recom
not_recom not_recom
priority priority
priority priority
not_recom not_recom
priority spec_prior
priority spec_prior
not_recom not_recom
priority priority
priority priority
priority not_recom
priority priority
priority spec_prior
priority priority
priority priority
priority priority
not_recom not_recom
priority priority
not_recom not_recom
not_recom not_recom
priority spec_prior
priority priority
priority priority
not_recom not_recom
not_recom not_recom
priority priority
not_recom not_recom
priority priority
not_recom priority
not_recom not_recom
priority priority
not_recom not_recom
spec_prior not_recom
spec_prior priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority priority
spec_prior spec_prior
priority very_recom
priority priority
priority priority
priority priority
not_recom not_recom
priority priority
not_recom not_recom
not_recom not_recom
spec_prior priority
priority very_recom
priority priority
priority not_recom
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority priority
not_recom not_recom
not_recom not_recom
priority priority
priority priority
not_recom not_recom
spec_prior priority
priority priority
spec_prior priority
spec_prior priority
priority priority
priority priority
priority priority
not_recom not_recom
priority priority
not_recom not_recom
not_recom not_recom
priority priority
priority not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior priority
priority priority
not_recom not_recom
priority priority
spec_prior priority
not_recom not_recom
spec_prior priority
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
priority priority
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
priority priority
priority priority
priority priority
spec_prior priority
not_recom not_recom
not_recom not_recom
spec_prior priority
priority priority
priority priority
not_recom not_recom
priority priority
priority priority
priority priority
spec_prior priority
spec_prior spec_prior
spec_prior priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
not_recom not_recom
not_recom spec_prior
spec_prior priority
priority not_recom
spec_prior spec_prior
priority spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior not_recom
priority priority
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
not_recom spec_prior
not_recom not_recom
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
priority priority
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
not_recom spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior not_recom
priority priority
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
priority spec_prior
not_recom not_recom
not_recom spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
not_recom not_recom
priority spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
priority spec_prior
spec_prior spec_prior
priority priority
priority priority
spec_prior priority
not_recom not_recom
priority priority
spec_prior spec_prior
not_recom not_recom
priority priority
spec_prior priority
spec_prior priority
spec_prior spec_prior
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior priority
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority priority
not_recom not_recom
spec_prior spec_prior
spec_prior priority
not_recom not_recom
priority very_recom
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
priority spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
priority priority
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
priority spec_prior
priority priority
priority priority
not_recom not_recom
priority priority
priority priority
spec_prior not_recom
priority spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
priority not_recom
not_recom not_recom
not_recom not_recom
priority priority
priority priority
priority spec_prior
not_recom not_recom
priority spec_prior
priority spec_prior
not_recom not_recom
priority priority
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority priority
priority priority
not_recom not_recom
priority spec_prior
spec_prior spec_prior
priority priority
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
priority priority
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
not_recom priority
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior priority
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
priority priority
spec_prior spec_prior
spec_prior spec_prior
priority priority
spec_prior spec_prior
spec_prior spec_prior
priority priority
priority spec_prior
spec_prior spec_prior
not_recom not_recom
not_recom priority
priority priority
priority spec_prior
priority spec_prior
not_recom not_recom
priority priority
not_recom not_recom
spec_prior not_recom
priority priority
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority priority
not_recom not_recom
priority spec_prior
priority spec_prior
not_recom not_recom
not_recom not_recom
priority spec_prior
priority priority
not_recom not_recom
not_recom not_recom
priority priority
spec_prior spec_prior
spec_prior spec_prior
priority priority
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
priority priority
priority priority
priority spec_prior
priority priority
priority priority
priority spec_prior
not_recom not_recom
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior not_recom
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
priority priority
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior not_recom
not_recom not_recom
priority spec_prior
spec_prior spec_prior
priority priority
spec_prior priority
spec_prior spec_prior
priority priority
spec_prior spec_prior
priority spec_prior
not_recom not_recom
not_recom not_recom
priority not_recom
not_recom not_recom
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
priority spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
priority spec_prior
not_recom not_recom
spec_prior spec_prior
priority priority
spec_prior spec_prior
spec_prior priority
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
not_recom not_recom
priority priority
not_recom not_recom
spec_prior priority
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior priority
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior priority
spec_prior not_recom
spec_prior spec_prior
priority priority
not_recom not_recom
spec_prior priority
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
spec_prior spec_prior
spec_prior not_recom
spec_prior spec_prior
spec_prior priority
not_recom not_recom
spec_prior spec_prior
spec_prior priority
spec_prior priority
not_recom not_recom
spec_prior spec_prior
priority priority
not_recom not_recom
spec_prior spec_prior
spec_prior not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior priority
spec_prior priority
spec_prior spec_prior
spec_prior spec_prior
spec_prior priority
not_recom not_recom
spec_prior priority
spec_prior spec_prior
spec_prior spec_prior
not_recom spec_prior
spec_prior not_recom
spec_prior priority
spec_prior priority
spec_prior priority
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior not_recom
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior priority
spec_prior spec_prior
spec_prior priority
spec_prior priority
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior priority
spec_prior priority
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
priority priority
not_recom not_recom
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
priority priority
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
not_recom spec_prior
spec_prior priority
spec_prior spec_prior
spec_prior spec_prior
priority priority
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
priority priority
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
priority priority
priority priority
priority spec_prior
not_recom spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
priority priority
spec_prior spec_prior
not_recom spec_prior
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
priority priority
spec_prior spec_prior
not_recom not_recom
not_recom spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
priority spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
priority priority
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
not_recom not_recom
not_recom not_recom
spec_prior priority
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
priority priority
priority spec_prior
spec_prior spec_prior
priority priority
priority priority
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
priority priority
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
not_recom not_recom
spec_prior priority
not_recom not_recom
spec_prior priority
spec_prior spec_prior
priority priority
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior not_recom
not_recom not_recom
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
not_recom spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
not_recom not_recom
not_recom not_recom
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior spec_prior
spec_prior priority
spec_prior spec_prior
| |
63dd02a201edbc09deffb200ee56e8bfe5b6905d | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH13/EX13.4/Example13_4.sce | cdbf348c131c1c07b2cbfc533e76d947c01febae | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 604 | sce | Example13_4.sce | //Example 13.4
clear;
clc;
Kv=10^4;
wx=10^3;
pm=45;
wz=wx;
wp=(wz^2)/Kv;
C=0.1*10^(-6);
R2=1/(wz*C);
R1=(1/(wp*C))-R2;
printf("(a) Designed Passive Lag-Lead Filter :");
printf("\n R1=%.2f kohms",R1*10^(-3));
printf("\n R2=%.2f kohms",R2*10^(-3));
printf("\n C=%.1f uF",C*10^6);
wxact=1.27*10^3;
T=(1+(%i*(wxact/wz)))/(((%i*wxact)/Kv)*(1+((%i*wxact)/wp)));
Tang=((180/%pi)*atan(imag(T)/real(T)))-180;
PMact=180+Tang;
printf("\n\n(b) Actual Value of wx=%.2f krad/s",wxact*10^(-3));
printf("\n Actual Phase Margin (PM)=%.f deg",PMact); |
7ba975cd3e227515fcff68d4d440ef339cb616a2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2054/CH3/EX3.20/Exa3_20.sce | 390c2ee90763b9348766b15cbb17a069905e67ef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 293 | sce | Exa3_20.sce | //Exa:3.20
clc;
clear;
close;
E_g=-163.53;//in volts
I_a=40;//in amperes
R_a=0.2;//in ohms
V=220;//in volts
V_a=E_g+(I_a*R_a);//in volts
alpha_a=acosd(V_a*%pi/(2*V*sqrt(2)));
disp(alpha_a,'Firing Angle (in degrees)=');
P=V_a*I_a*(-1);
disp(P/1000,'Power Supplied (in Kilo-Watts)=') |
00e3fecf649ef3e73e25238eac79c482e8ff05a5 | adad792a303b401b6e5f683f5ffed0dce8bb89cb | /Lan_inter_pol.sce | 530a7fceb6a933e0c6d96016cf228fb34535e264 | [
"MIT"
] | permissive | RDxR10/Numerical-Analysis | db114772f1a915e96d364a2cdb5c92e868da2640 | 10325dd514aa6ae9180dca7ae3a04f7deda5ca56 | refs/heads/master | 2020-09-11T18:51:42.948671 | 2019-11-24T16:01:44 | 2019-11-24T16:01:44 | 222,158,105 | 0 | 0 | null | 2019-11-19T17:10:11 | 2019-11-16T20:53:58 | Scilab | UTF-8 | Scilab | false | false | 321 | sce | Lan_inter_pol.sce | function symboliclagrange(X,Y)
x = poly(0,"x")
for i=1:length(Y)
l(i)=1
for j=1:length(Y)
if i~=j
l(i) = l(i)*(x-X(j))/(X(i)-X(j))
end
end
end
L=0
for i=1:length(Y)
L = L+Y(i)*l(i)
end
disp(L)
endfunction
|
b7cdef66fe2393d2f3db03de55bb246afd8e378b | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/TD78LPW/ATWM1_Working_Memory_MEG_TD78LPW_Session1/ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce | 7fcdf778c91247cd2a3a3faef157c98da835b34d | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,384 | sce | ATWM1_Working_Memory_MEG_Salient_Cued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
41 62 292 292 399 125 2142 2992 1892 fixation_cross gabor_077 gabor_032 gabor_148 gabor_007 gabor_077_alt gabor_032 gabor_148 gabor_007_alt "1_1_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_077_032_148_007_target_position_1_4_retrieval_position_1" gabor_077_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_1_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_077_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_085 gabor_067 gabor_028 gabor_138 gabor_085 gabor_067_alt gabor_028 gabor_138_alt "1_2_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_085_067_028_138_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_001_framed blank blank blank blank fixation_cross_target_position_2_4 "1_2_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2092 2992 1892 fixation_cross gabor_088 gabor_153 gabor_022 gabor_134 gabor_088_alt gabor_153_alt gabor_022 gabor_134 "1_3_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_1900_gabor_patch_orientation_088_153_022_134_target_position_1_2_retrieval_position_2" gabor_circ gabor_104_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_3_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_104_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1742 2992 2192 fixation_cross gabor_068 gabor_053 gabor_132 gabor_003 gabor_068_alt gabor_053 gabor_132_alt gabor_003 "1_4_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_068_053_132_003_target_position_1_3_retrieval_position_1" gabor_116_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_4_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_116_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 2092 2992 2192 fixation_cross gabor_005 gabor_138 gabor_060 gabor_027 gabor_005 gabor_138_alt gabor_060_alt gabor_027 "1_5_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2200_gabor_patch_orientation_005_138_060_027_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_167_framed blank blank blank blank fixation_cross_target_position_2_3 "1_5_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_167_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2042 2992 2442 fixation_cross gabor_089 gabor_071 gabor_008 gabor_148 gabor_089_alt gabor_071_alt gabor_008 gabor_148 "1_6_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_089_071_008_148_target_position_1_2_retrieval_position_1" gabor_089_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_6_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2142 2992 2592 fixation_cross gabor_084 gabor_129 gabor_109 gabor_149 gabor_084_alt gabor_129 gabor_109_alt gabor_149 "1_7_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_084_129_109_149_target_position_1_3_retrieval_position_1" gabor_084_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_7_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2092 2992 2142 fixation_cross gabor_151 gabor_180 gabor_032 gabor_062 gabor_151 gabor_180_alt gabor_032 gabor_062_alt "1_8_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_151_180_032_062_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_062_framed blank blank blank blank fixation_cross_target_position_2_4 "1_8_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_050 gabor_077 gabor_137 gabor_166 gabor_050 gabor_077 gabor_137_alt gabor_166_alt "1_9_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_050_077_137_166_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_137_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_9_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 2092 2992 2042 fixation_cross gabor_061 gabor_092 gabor_022 gabor_174 gabor_061 gabor_092 gabor_022_alt gabor_174_alt "1_10_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2050_gabor_patch_orientation_061_092_022_174_target_position_3_4_retrieval_position_2" gabor_circ gabor_042_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_10_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_042_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1792 2992 2442 fixation_cross gabor_140 gabor_029 gabor_089 gabor_156 gabor_140_alt gabor_029 gabor_089 gabor_156_alt "1_11_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_140_029_089_156_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_156_framed blank blank blank blank fixation_cross_target_position_1_4 "1_11_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_156_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2242 2992 1992 fixation_cross gabor_122 gabor_063 gabor_010 gabor_169 gabor_122 gabor_063 gabor_010_alt gabor_169_alt "1_12_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2000_gabor_patch_orientation_122_063_010_169_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_169_framed blank blank blank blank fixation_cross_target_position_3_4 "1_12_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_169_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1992 2992 2292 fixation_cross gabor_122 gabor_166 gabor_003 gabor_040 gabor_122_alt gabor_166 gabor_003 gabor_040_alt "1_13_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_122_166_003_040_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_087_framed blank blank blank blank fixation_cross_target_position_1_4 "1_13_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_048 gabor_119 gabor_080 gabor_161 gabor_048_alt gabor_119 gabor_080_alt gabor_161 "1_14_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_048_119_080_161_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_032_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_14_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2242 2992 2092 fixation_cross gabor_120 gabor_103 gabor_143 gabor_082 gabor_120 gabor_103_alt gabor_143_alt gabor_082 "1_15_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_120_103_143_082_target_position_2_3_retrieval_position_2" gabor_circ gabor_057_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_15_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1842 2992 1992 fixation_cross gabor_179 gabor_158 gabor_110 gabor_134 gabor_179_alt gabor_158_alt gabor_110 gabor_134 "1_16_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2000_gabor_patch_orientation_179_158_110_134_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_134_framed blank blank blank blank fixation_cross_target_position_1_2 "1_16_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_134_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1992 2992 2242 fixation_cross gabor_126 gabor_098 gabor_071 gabor_155 gabor_126 gabor_098_alt gabor_071 gabor_155_alt "1_17_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_126_098_071_155_target_position_2_4_retrieval_position_2" gabor_circ gabor_048_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_17_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1842 2992 2492 fixation_cross gabor_145 gabor_038 gabor_079 gabor_165 gabor_145 gabor_038_alt gabor_079_alt gabor_165 "1_18_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_145_038_079_165_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_127_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_18_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2142 2992 2242 fixation_cross gabor_073 gabor_116 gabor_007 gabor_096 gabor_073 gabor_116_alt gabor_007 gabor_096_alt "1_19_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_073_116_007_096_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_096_framed blank blank blank blank fixation_cross_target_position_2_4 "1_19_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1942 2992 2092 fixation_cross gabor_060 gabor_130 gabor_025 gabor_148 gabor_060_alt gabor_130_alt gabor_025 gabor_148 "1_20_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_060_130_025_148_target_position_1_2_retrieval_position_2" gabor_circ gabor_081_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_20_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2092 2992 2092 fixation_cross gabor_142 gabor_029 gabor_008 gabor_177 gabor_142 gabor_029 gabor_008_alt gabor_177_alt "1_21_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_142_029_008_177_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_008_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_21_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2042 2992 2292 fixation_cross gabor_084 gabor_149 gabor_039 gabor_104 gabor_084 gabor_149_alt gabor_039_alt gabor_104 "1_22_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_084_149_039_104_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_039_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_22_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 1942 2992 2592 fixation_cross gabor_022 gabor_069 gabor_001 gabor_142 gabor_022 gabor_069 gabor_001_alt gabor_142_alt "1_23_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_2600_gabor_patch_orientation_022_069_001_142_target_position_3_4_retrieval_position_1" gabor_158_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_23_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_158_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1842 2992 2442 fixation_cross gabor_134 gabor_029 gabor_062 gabor_169 gabor_134 gabor_029_alt gabor_062_alt gabor_169 "1_24_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_134_029_062_169_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_062_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_24_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2192 2992 2542 fixation_cross gabor_021 gabor_092 gabor_178 gabor_062 gabor_021_alt gabor_092 gabor_178_alt gabor_062 "1_25_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_021_092_178_062_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_131_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_25_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 2192 fixation_cross gabor_092 gabor_031 gabor_151 gabor_166 gabor_092 gabor_031_alt gabor_151_alt gabor_166 "1_26_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_092_031_151_166_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_015_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_26_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 1742 2992 2292 fixation_cross gabor_029 gabor_114 gabor_143 gabor_083 gabor_029 gabor_114 gabor_143_alt gabor_083_alt "1_27_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2300_gabor_patch_orientation_029_114_143_083_target_position_3_4_retrieval_position_2" gabor_circ gabor_162_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_27_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_162_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 2292 fixation_cross gabor_165 gabor_078 gabor_120 gabor_012 gabor_165_alt gabor_078_alt gabor_120 gabor_012 "1_28_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_165_078_120_012_target_position_1_2_retrieval_position_1" gabor_030_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_28_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2192 2992 1942 fixation_cross gabor_158 gabor_018 gabor_052 gabor_092 gabor_158_alt gabor_018 gabor_052_alt gabor_092 "1_29_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_158_018_052_092_target_position_1_3_retrieval_position_1" gabor_108_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_29_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_108_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2042 2992 2142 fixation_cross gabor_116 gabor_086 gabor_062 gabor_002 gabor_116 gabor_086 gabor_062_alt gabor_002_alt "1_30_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_116_086_062_002_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_002_framed blank blank blank blank fixation_cross_target_position_3_4 "1_30_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1842 2992 2592 fixation_cross gabor_152 gabor_168 gabor_099 gabor_036 gabor_152_alt gabor_168_alt gabor_099 gabor_036 "1_31_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_152_168_099_036_target_position_1_2_retrieval_position_2" gabor_circ gabor_121_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_31_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 2242 2992 1992 fixation_cross gabor_169 gabor_079 gabor_121 gabor_142 gabor_169 gabor_079 gabor_121_alt gabor_142_alt "1_32_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2000_gabor_patch_orientation_169_079_121_142_target_position_3_4_retrieval_position_1" gabor_034_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_32_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_034_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_051 gabor_070 gabor_020 gabor_179 gabor_051_alt gabor_070_alt gabor_020 gabor_179 "1_33_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_051_070_020_179_target_position_1_2_retrieval_position_1" gabor_051_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_33_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2042 2992 2242 fixation_cross gabor_065 gabor_093 gabor_112 gabor_026 gabor_065 gabor_093_alt gabor_112_alt gabor_026 "1_34_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_065_093_112_026_target_position_2_3_retrieval_position_2" gabor_circ gabor_093_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_34_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1892 2992 1942 fixation_cross gabor_091 gabor_162 gabor_139 gabor_023 gabor_091_alt gabor_162 gabor_139_alt gabor_023 "1_35_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_091_162_139_023_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_004_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_35_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1992 2992 1892 fixation_cross gabor_136 gabor_046 gabor_088 gabor_156 gabor_136 gabor_046_alt gabor_088 gabor_156_alt "1_36_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_136_046_088_156_target_position_2_4_retrieval_position_2" gabor_circ gabor_046_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_36_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1942 2992 2242 fixation_cross gabor_146 gabor_027 gabor_093 gabor_059 gabor_146 gabor_027_alt gabor_093_alt gabor_059 "1_37_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_146_027_093_059_target_position_2_3_retrieval_position_2" gabor_circ gabor_075_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_37_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 1892 2992 2042 fixation_cross gabor_165 gabor_088 gabor_142 gabor_119 gabor_165 gabor_088_alt gabor_142 gabor_119_alt "1_38_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_1900_3000_2050_gabor_patch_orientation_165_088_142_119_target_position_2_4_retrieval_position_1" gabor_030_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_38_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_030_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2192 2992 1992 fixation_cross gabor_170 gabor_091 gabor_128 gabor_006 gabor_170_alt gabor_091 gabor_128 gabor_006_alt "1_39_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2000_gabor_patch_orientation_170_091_128_006_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_006_framed blank blank blank blank fixation_cross_target_position_1_4 "1_39_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1792 2992 2192 fixation_cross gabor_045 gabor_152 gabor_063 gabor_125 gabor_045_alt gabor_152 gabor_063 gabor_125_alt "1_40_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2200_gabor_patch_orientation_045_152_063_125_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_063_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_40_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_063_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2192 2992 2342 fixation_cross gabor_035 gabor_119 gabor_063 gabor_145 gabor_035 gabor_119 gabor_063_alt gabor_145_alt "1_41_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2350_gabor_patch_orientation_035_119_063_145_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_010_framed blank blank blank blank fixation_cross_target_position_3_4 "1_41_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2192 2992 2542 fixation_cross gabor_086 gabor_001 gabor_170 gabor_149 gabor_086_alt gabor_001 gabor_170_alt gabor_149 "1_42_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_086_001_170_149_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_030_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_42_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2242 2992 2492 fixation_cross gabor_170 gabor_151 gabor_011 gabor_084 gabor_170_alt gabor_151 gabor_011_alt gabor_084 "1_43_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_170_151_011_084_target_position_1_3_retrieval_position_1" gabor_170_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_43_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2042 2992 1942 fixation_cross gabor_099 gabor_013 gabor_175 gabor_058 gabor_099_alt gabor_013_alt gabor_175 gabor_058 "1_44_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_099_013_175_058_target_position_1_2_retrieval_position_2" gabor_circ gabor_013_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_44_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_091 gabor_136 gabor_024 gabor_061 gabor_091 gabor_136_alt gabor_024_alt gabor_061 "1_45_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_091_136_024_061_target_position_2_3_retrieval_position_2" gabor_circ gabor_136_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_45_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2142 2992 2192 fixation_cross gabor_156 gabor_074 gabor_137 gabor_050 gabor_156_alt gabor_074 gabor_137 gabor_050_alt "1_46_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_156_074_137_050_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_050_framed blank blank blank blank fixation_cross_target_position_1_4 "1_46_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 2142 2992 1942 fixation_cross gabor_002 gabor_143 gabor_092 gabor_160 gabor_002 gabor_143_alt gabor_092 gabor_160_alt "1_47_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_002_143_092_160_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_024_framed blank blank blank blank fixation_cross_target_position_2_4 "1_47_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1992 2992 2292 fixation_cross gabor_119 gabor_102 gabor_136 gabor_165 gabor_119 gabor_102_alt gabor_136_alt gabor_165 "1_48_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2300_gabor_patch_orientation_119_102_136_165_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_165_framed blank blank blank blank fixation_cross_target_position_2_3 "1_48_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_165_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1742 2992 2142 fixation_cross gabor_006 gabor_120 gabor_052 gabor_139 gabor_006_alt gabor_120 gabor_052 gabor_139_alt "1_49_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_006_120_052_139_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_139_framed blank blank blank blank fixation_cross_target_position_1_4 "1_49_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1942 2992 2592 fixation_cross gabor_070 gabor_130 gabor_092 gabor_110 gabor_070 gabor_130 gabor_092_alt gabor_110_alt "1_50_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_070_130_092_110_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_045_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_50_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 2142 2992 2342 fixation_cross gabor_097 gabor_053 gabor_075 gabor_117 gabor_097 gabor_053_alt gabor_075 gabor_117_alt "1_51_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_2150_3000_2350_gabor_patch_orientation_097_053_075_117_target_position_2_4_retrieval_position_1" gabor_097_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_51_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_097_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1842 2992 2142 fixation_cross gabor_115 gabor_058 gabor_173 gabor_004 gabor_115 gabor_058_alt gabor_173 gabor_004_alt "1_52_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_115_058_173_004_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_139_framed blank blank blank blank fixation_cross_target_position_2_4 "1_52_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1992 2992 2092 fixation_cross gabor_098 gabor_030 gabor_083 gabor_117 gabor_098_alt gabor_030 gabor_083 gabor_117_alt "1_53_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_098_030_083_117_target_position_1_4_retrieval_position_1" gabor_051_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_53_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_078 gabor_134 gabor_008 gabor_162 gabor_078 gabor_134 gabor_008_alt gabor_162_alt "1_54_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_078_134_008_162_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_162_framed blank blank blank blank fixation_cross_target_position_3_4 "1_54_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1892 2992 1892 fixation_cross gabor_008 gabor_158 gabor_072 gabor_132 gabor_008_alt gabor_158 gabor_072 gabor_132_alt "1_55_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_008_158_072_132_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_180_framed blank blank blank blank fixation_cross_target_position_1_4 "1_55_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2092 2992 2392 fixation_cross gabor_089 gabor_066 gabor_010 gabor_119 gabor_089_alt gabor_066 gabor_010_alt gabor_119 "1_56_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_089_066_010_119_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_010_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_56_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1992 2992 2392 fixation_cross gabor_048 gabor_091 gabor_010 gabor_074 gabor_048 gabor_091_alt gabor_010_alt gabor_074 "1_57_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2400_gabor_patch_orientation_048_091_010_074_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_074_framed blank blank blank blank fixation_cross_target_position_2_3 "1_57_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_074_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2192 2992 2492 fixation_cross gabor_023 gabor_045 gabor_088 gabor_071 gabor_023_alt gabor_045 gabor_088 gabor_071_alt "1_58_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_023_045_088_071_target_position_1_4_retrieval_position_1" gabor_023_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_58_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1742 2992 2492 fixation_cross gabor_148 gabor_115 gabor_097 gabor_076 gabor_148 gabor_115_alt gabor_097 gabor_076_alt "1_59_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_148_115_097_076_target_position_2_4_retrieval_position_2" gabor_circ gabor_165_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_59_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_027 gabor_137 gabor_071 gabor_153 gabor_027 gabor_137 gabor_071_alt gabor_153_alt "1_60_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_027_137_071_153_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_153_framed blank blank blank blank fixation_cross_target_position_3_4 "1_60_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_010 gabor_042 gabor_165 gabor_124 gabor_010 gabor_042_alt gabor_165 gabor_124_alt "1_61_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_010_042_165_124_target_position_2_4_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_61_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 2242 2992 2092 fixation_cross gabor_030 gabor_100 gabor_059 gabor_079 gabor_030_alt gabor_100 gabor_059 gabor_079_alt "1_62_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_030_100_059_079_target_position_1_4_retrieval_position_1" gabor_030_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_62_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 1842 2992 2542 fixation_cross gabor_007 gabor_142 gabor_171 gabor_063 gabor_007_alt gabor_142_alt gabor_171 gabor_063 "1_63_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2550_gabor_patch_orientation_007_142_171_063_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_063_framed blank blank blank blank fixation_cross_target_position_1_2 "1_63_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_063_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1792 2992 2542 fixation_cross gabor_096 gabor_081 gabor_116 gabor_035 gabor_096_alt gabor_081 gabor_116_alt gabor_035 "1_64_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_096_081_116_035_target_position_1_3_retrieval_position_1" gabor_145_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_64_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1892 2992 1892 fixation_cross gabor_052 gabor_035 gabor_180 gabor_120 gabor_052 gabor_035 gabor_180_alt gabor_120_alt "1_65_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_052_035_180_120_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_073_framed blank blank blank blank fixation_cross_target_position_3_4 "1_65_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 61 292 292 399 125 1942 2992 2042 fixation_cross gabor_036 gabor_174 gabor_060 gabor_118 gabor_036_alt gabor_174_alt gabor_060 gabor_118 "1_66_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_036_174_060_118_target_position_1_2_retrieval_position_1" gabor_085_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_66_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 63 292 292 399 125 1942 2992 2342 fixation_cross gabor_161 gabor_081 gabor_110 gabor_137 gabor_161_alt gabor_081 gabor_110 gabor_137_alt "1_67_Encoding_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_2350_gabor_patch_orientation_161_081_110_137_target_position_1_4_retrieval_position_2" gabor_circ gabor_031_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_67_Retrieval_Working_Memory_MEG_P4_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_031_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1892 2992 2392 fixation_cross gabor_178 gabor_012 gabor_152 gabor_040 gabor_178 gabor_012 gabor_152_alt gabor_040_alt "1_68_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_178_012_152_040_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_040_framed blank blank blank blank fixation_cross_target_position_3_4 "1_68_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 62 292 292 399 125 1892 2992 1942 fixation_cross gabor_150 gabor_124 gabor_001 gabor_106 gabor_150 gabor_124_alt gabor_001_alt gabor_106 "1_69_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_150_124_001_106_target_position_2_3_retrieval_position_2" gabor_circ gabor_124_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_69_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 64 292 292 399 125 2242 2992 2392 fixation_cross gabor_149 gabor_082 gabor_127 gabor_067 gabor_149_alt gabor_082 gabor_127 gabor_067_alt "1_70_Encoding_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2400_gabor_patch_orientation_149_082_127_067_target_position_1_4_retrieval_position_2" gabor_circ gabor_082_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_70_Retrieval_Working_Memory_MEG_P4_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_082_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
4e853940fa37bce6b06336174ac0a6790d731b36 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3250/CH2/EX2.2/Ex2_2.sce | 4b9a127c6bb33e44876d439ce772e14c7e705138 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 819 | sce | Ex2_2.sce | clc
// Given that
h=15 // Height of spur in cm
l= 50 // Length of cast in cm
w= 25 // weidth of cast in cm
h1= 15 // Height of cast in cm
g= 981 // Acceleration due to gravity in cm/sec^2
Ag= 5 // Cross sectional area of the grate in cm^2
Dm = 7800 // Density of molten Fe in Kg/m^3
Neta = 0.00496 // Kinetic viscosity in Kg/m-sec
theta = 90 // Angle in degree
Eq = 25 // (L/D) Equivalent
// Sample Problem 2 on page no. 53
printf("\n # PROBLEM 2.2 # \n")
v3= sqrt(2* g * h)*(10^(-2))
d= sqrt((Ag*4)/(%pi))*(10^(-2))
Re = Dm*v3*d/Neta
f = 0.0791*(Re)^(-1/4)
L=0.12 // in meter
Cd= (1+0.45+4*f*((L/d)+Eq))^(-1/2)
v3_ = Cd*v3
Re_ = (v3_/v3)*(Re)
f_ = 0.0791 *(Re_)^(-1/4)
Cd_ = (1+0.46+4*f_*(L/d + Eq))^(-1/2)
v3__ = Cd_*v3
V = l*w*h1
tf= (V/(Ag*v3__))*(10^-2)
printf("\n Filling time for first design = %f sec. ", tf)
|
e1ad20a3bc4041c4c9f7b552300dbe6359a7d07a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1199/CH4/EX4.10/4_10.sci | 697189e77bf0a59fe2dd6a8a9db5977ae06f2148 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 146 | sci | 4_10.sci | // 4.10
clc;
Fc=430-370;
disp('At 403 change in frequency')
Fc1=403-370;
Fuel_level=Fc1*3000/Fc;
printf("\nFuel level =%.1f L",Fuel_level)
|
e2086316edf4445fc81b7acbe83e0cd0108ea1e1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1247/CH4/EX4.5/example4_5.sce | 0b92713a793f139b2e6daeea99991efc1ba7322e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 387 | sce | example4_5.sce | clear;
clc;
// Stoichiometry
// Chapter 4
// Material Balances involving Chemical Reaction
// Example 4.5
// Page 121
printf("Example 4.5, Page 121 \n \n");
// solution
v = 1 //[l] water (basis)
// 1 mol (100mg) CaCO3 gives 1 mol (56) Cao
// use table 3.3 and eg 3.9
x = 56*390.6/100 //[mg/l] lime produced
printf("Amount of lime required = "+string(x)+" mg/l.")
|
ede2802a5182376bd4e10153c96de6eb3514e4bf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1280/CH5/EX5.3/5_3.sce | 6fd3415ab3cb0721473563613a658cc7e1091869 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 145 | sce | 5_3.sce | clc
//initialisation of variables
Q= 10 //gpm
d= 1 //in
//CALCULATIONS
v= Q*4/(%pi*d^2*3.12)
//RESULTS
printf ('veloctity = %.1f fps',v)
|
c468e0f0a7c7f76bf4a494b5a56dad59b2e80be4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH15/EX9.15.24/Ex9_15_24.sce | b441837e280f1cce589d7c31b0c70bcbe4f222fc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 284 | sce | Ex9_15_24.sce | //Section-9,Example-1,Page no.-E.51
//To calculate the ionic mobility of K+ ions.
clc;
l=0.04
t=4000
I=6*10^-3
A=0.3*10^-4
k=1.0
v=l/t //Velocity of the ion(ms^-1)
F_s=I/(A*k) //Field strength(Vm^-1)
I_mo=v/F_s
disp(I_mo,'Ionic mobility of K+ ion(m^2V^-1s^-1)')
|
4003bc427c5748ac598c4d97cba01784b997340c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH20/EX20.2/20_02.sce | da746575a6971f4d3d09f4a3a284243548b26c41 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 403 | sce | 20_02.sce | clear;
clc;
V=3000e3;
r1=30;
r=5000e3;
vb2=11e3;
vb3=33e3;
x=.2;
Xt=.05*r/V;
Xl=r1*r/(vb3^2);
xtotal=(x+Xt+Xl)*%i;
MVA=r*%i*1e-6/xtotal;
Ifault=MVA*1e6/(sqrt(3)*vb3*%i);
Ir=real(Ifault);
Ii=imag(Ifault);
Imod=sqrt((Ir^2)+(Ii^2));
Iangle=atand(Ir/Ii)-90;
Imod=round(Imod);
MVA=round(MVA*10)/10;
mprintf("the value of falut current = %d/_%d Amp \n fault MVA =%f MVA",Imod,Iangle,MVA);
|
92e8b3211bb97363294dbddacf80dbd1bc893c4a | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3/macros/util/g_sqrt.sci | 968957b6ad0293e4d293a7d877179ec6a2bdf865 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 66 | sci | g_sqrt.sci | function sp=g_sqrt(a)
[ij,v,mn]=spget(a)
sp=sparse(ij,sqrt(v),mn)
|
137c66fb888a1f69194dd69e42c0df30a233b2f0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /767/CH3/EX3.9.1/Ch03Exa3_9_1.sci | e5968f3454dda2f4f4b84b7423f6225236c8a2bc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 478 | sci | Ch03Exa3_9_1.sci | // Scilab code Exa. 3.9.1 : To calculate the age of uranium mineral: Page no. 143 : (2011)
t_h = 4.5e+09; // Half life of mineral, years
D_c = 0.6931/t_h; // Decay constant of minerals, years^-1
N_1 = 6.023e+023/238; // Number of nuclei in 1g of Uranium
N = 6.023e+023*0.093/206; // Number of nuclei in 0.093g of lead
t = log(1+N/N_1)/D_c; // Age of the mineral, years
printf("\n Age of the mineral : %6.4e years ", t)
// Result
// Age of the mineral : 6.6261e+008 years |
4b179c2911505a7f5e86581c5c9b46420db0f48a | 449d555969bfd7befe906877abab098c6e63a0e8 | /704/CH2/EX2.24/ex2_24.sce | 413a28f0f536c9b4b42fa46052f199d719d002c3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 532 | sce | ex2_24.sce | //Caption:Percentage change in speed of a d.c. motor
//Exam:2.24
clc;
clear;
close;
V=240;//supply voltage(in V)
R_a=0.5;//armature resistance(in Ohm)
I_1=100;//armature current (in Amp)
I_2=50;//changed armature current(in Amp)
E_1=V-R_a*I_1;//induced emf(in V)
E_2=V-R_a*I_2;//changed induced emf due to I_2
//flux per pole is constant
N_r=E_2/E_1;//ratio of speed in machine due to voltage change
N_rp=(N_r-1)*100;//Percentage change in speed of d.c. motor
disp(N_rp,'Percentage change in speed of d.c. motor=='); |
5a04e131394aa83625e2857df476e283db943826 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3511/CH6/EX6.7/Ex6_7.sce | 27d986f1f48968ae4a33e320f437605c2729e28b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 623 | sce | Ex6_7.sce | clc;
eff_C=0.7042; // Efficiency of the compressor
eff_T=0.71; // Efficiency of the turbine
Q=476.354; // Head added in kJ/kg
WR=0.0544; // Work ratio
T01=300;// Total inlet temperature in kelvin
Cpa=1.005;// Specific heat of air at constant pressure in kJ/kg K
Cpg=1.147;// Specific heat of fuel at constant pressure in kJ/kg K
rg=1.33;// Specific heat ratio of fuel
r=1.4; // Specific heat ratio of air
c_t=(1-WR)*(eff_T*eff_C);
t=((Q/(Cpg*T01))+1-1/eff_C)/(1-c_t/eff_C); // Temperature ratio
c=c_t*t;
rp=c^(r/(r-1)); // Pressure ratio
disp (rp,"Pressure ratio = ");
disp (t,"Temperature ratio = ");
|
85b0ce2a1dc0d804b86fc18e1806c1d23d6b954d | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpic2escifiles6/PhHiddenData.sci | d5333cd1f096d47a331f84c431eaebc22b5aeb27 | [] | no_license | ketpic/ketcindy-scilab-support | e1646488aa840f86c198818ea518c24a66b71f81 | 3df21192d25809ce980cd036a5ef9f97b53aa918 | refs/heads/master | 2021-05-11T11:40:49.725978 | 2018-01-16T14:02:21 | 2018-01-16T14:02:21 | 117,643,554 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 105 | sci | PhHiddenData.sci | // 08.08.22
function Out=PhHiddenData()
global PHHIDDENDATA;
Out=PHHIDDENDATA;
endfunction;
|
9ae53756b7710b330b84bca54b52390154e03030 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1223/CH15/EX15.16/Ex15_16.sce | 8a87694aa03a6ccdd12fc4cd8f0fff4ee7f333ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 317 | sce | Ex15_16.sce | clear;
clc;
//Example 15.16
Vz=6.3;
Vbe=0.6;
Veb=0.6;
Vo=8;
R1=3.9;
R2=3.4;
R3=0.576;
Ic3=(Vz-3*Vbe)/(R1+R2+R3);
printf('\nbias current =%.3f mA\n',Ic3)
Vb7=Ic3*R1+2*Vbe;
printf('\ntemperature compensated reference voltage=%.2f V\n',Vb7)
R13=2.23;
R12=R13*Vo/Vb7-R13;
printf('\nR12=%.2f KOhm\n',R12)
|
325cfd1bf75450b883b21e312b1a74c98c74c6c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3535/CH9/EX9.3/Ex9_3.sce | 7344f0eac6a3ea0893638ca5025c4fd47056a9b2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 268 | sce | Ex9_3.sce | //Chapter 9, Example 9.3, Page 245
clc
clear
//Find fluence and H
Sp = 10**9
dt = 600
r = 1500
E = 0.03103
phi = Sp*dt/(4*%pi*r**2)
H = 1.602*10**-10*E*phi
printf("fluence = %e cm^2\n",phi)
printf(" H = %f microSv\n",H*10**8)
// Answer may vary due to round off error
|
99015759f2870327f670134caf16a37b7ff4617a | be79bec46a532a2d059c03f59f67a1f501c2e371 | /test/testcases/directed/log.tst | c7e4f797feb856e3f34ece39750138885a68a36f | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | sycomix/optimized-routines | 5987a6a4cab10c469cc147d1d8e667fd4d8ae94a | e875f40f0b2ad71c5381a431e6d71829770c7ab7 | refs/heads/master | 2020-03-30T22:15:08.212539 | 2018-09-18T09:36:04 | 2018-09-18T09:36:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,786 | tst | log.tst | ; Directed test cases for log
;
; Copyright (c) 2018, Arm Limited.
; SPDX-License-Identifier: Apache-2.0
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
func=log op1=7ff80000.00000001 result=7ff80000.00000001 errno=0
func=log op1=fff80000.00000001 result=7ff80000.00000001 errno=0
func=log op1=7ff00000.00000001 result=7ff80000.00000001 errno=0 status=i
func=log op1=fff00000.00000001 result=7ff80000.00000001 errno=0 status=i
func=log op1=7ff00000.00000000 result=7ff00000.00000000 errno=0
func=log op1=fff00000.00000000 result=7ff80000.00000001 errno=EDOM status=i
func=log op1=7fefffff.ffffffff result=40862e42.fefa39ef.354 errno=0
func=log op1=ffefffff.ffffffff result=7ff80000.00000001 errno=EDOM status=i
func=log op1=3ff00000.00000000 result=00000000.00000000 errno=0
func=log op1=bff00000.00000000 result=7ff80000.00000001 errno=EDOM status=i
func=log op1=00000000.00000000 result=fff00000.00000000 errno=ERANGE status=z
func=log op1=80000000.00000000 result=fff00000.00000000 errno=ERANGE status=z
func=log op1=00000000.00000001 result=c0874385.446d71c3.639 errno=0
func=log op1=80000000.00000001 result=7ff80000.00000001 errno=EDOM status=i
func=log op1=40000000.00000000 result=3fe62e42.fefa39ef.358 errno=0
func=log op1=3fe00000.00000000 result=bfe62e42.fefa39ef.358 errno=0
|
ac7ed23ea834e559d9da3892460d2a0f7a58e594 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3813/CH4/EX4.20/Ex4_20.sce | 735e05895f63772a5051d4bebb55d3c6092e8030 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 588 | sce | Ex4_20.sce | //Electric Drives:concepts and applications by V.subrahmanyam
//Publisher:Tata McGraw-Hill
//Edition:Second
//Ex4_20
clc;
clear;
R=0.05;// Resistance in ohm
N0=1000;//Speed in rpm
Rf=46;// Resistance in ohm
I1=75;//Current in A
I2=150;//Current in A
I3=250;//Current in A
V=230;// voltage in V
Eb=230;//Back emf in V
If=V/Rf;
Ia1=I1-If;
Eb1=V-(Ia1*R);
N1=(Eb1/Eb)*N0;
disp(N1,"The speed N1 in rpm is:")
Ia2=I2-If;
Eb2=V-(Ia2*R);
N2=(Eb2/Eb)*N0;
disp(N2,"The speed N2 in rpm is:")
Ia3=I3-If;
Eb3=V-(Ia3*R);
N3=(Eb3/Eb)*N0;
disp(N3,"The speed N3 in rpm is:")
|
fc535e58d21840275527683d066502791b70cdad | 449d555969bfd7befe906877abab098c6e63a0e8 | /291/CH4/EX4.5f/eg4_5f.sce | afda4e25370f9bb68d255244b5d9f7a0b9b8dedb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 348 | sce | eg4_5f.sce | //As scilab does not symbolic computations, this example is solved taking N=5
prob = 1/5 //probability that a letter is put into the right envelope
EX1 = 1*prob+0*(1-prob);
EX2 = 1*prob+0*(1-prob);
EX3 = 1*prob+0*(1-prob);
EX4 = 1*prob+0*(1-prob);
EX5 = 1*prob+0*(1-prob);
EX= EX1 + EX2+ EX3 +EX4 + EX5;
disp(EX, "Thus, the expectation is") |
87fb7cbc70624d214657a33741f4782c1a8ff1f1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2708/CH2/EX2.13/ex_2_14.sce | 22d6f0f5bbb88981637121f99c909289605abe9a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 306 | sce | ex_2_14.sce | //Example 2.14 //Resolving power
clc;
clear;
//given data
c=12.5D-5;// grating element in cm
w=5D-5;// wavelength used in cm
N=40000;//no. of lines on grating
n=c/w;// order for maximum resolving power
n=floor(n);//n should be integer
P=n*N;// maximum resolving power
disp(P,"Resolving power ")
|
2c95dade626f1a567c81b8df6b7ae048e0800144 | 449d555969bfd7befe906877abab098c6e63a0e8 | /788/CH7/EX7.6.b/7_6_soln.sce | 961695b9c2a5241ca1c96d8832f9be5b327f1674 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 960 | sce | 7_6_soln.sce | clc;
pathname=get_absolute_file_path('7_6_soln.sce')
filename=pathname+filesep()+'7_6_data.sci'
exec(filename)
// Solution:
// theoretical flow-rate,
Q_T=(V_D*10^-6)*(N/60); //m^3/s
Q_T=fix(Q_T)+(fix(ceil((Q_T-fix(Q_T))*10^5))/10^5); //m^3/s ,rounding off the answer
// volumetric efficiency,
eta_v=(Q_T/Q_A)*100; //%
// theoretical torque,
T_T=((V_D*10^-6)*(p*10^5))/(2*%pi); //Nm
// mechanical efficiency,
eta_m=(T_A/T_T)*100; //%
// overall efficiency,
eta_o=(eta_v/100)*(eta_m/100)*100; //%
eta_o=fix(eta_o)+(fix(floor((eta_o-fix(eta_o))*10))/10); //% ,rounding off the answer
// actual horsepower delivered by motor,
HP_A=(T_A*N*2*%pi)/(60*1000); //kW
// Results:
printf("\n Results: ")
printf("\n The volumetric efficiency is %.1f percent.",eta_v)
printf("\n The mechanical efficiency is %.1f percent.",eta_m)
printf("\n The overall efficiency is %.1f percent.",eta_o)
printf("\n The actual horsepower delivered by the motor is %.1f kW.",HP_A)
|
349c8a278df1f8f0fd9bef2e34cddacb63fb95c8 | 717ddeb7e700373742c617a95e25a2376565112c | /278/CH4/EX4.14/ex_4_14.sce | c6d1bcbbf811337166e773abafb82d7c4a91a146 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 1,320 | sce | ex_4_14.sce | //find stress 1.)when supports are unyielding 2.)when supports yield by 0.1 mm
clc
//solution
//given
t1=37//deg celcius
t2=20//deg celcius
Es=210*10^9//N/m^2
Ed=74*10^9//N/m^2
as=11.7*10^-6//per degree celcius
aa=23.4*10^-6//per degree celcius
ds=0.05//m
da=0.025//m
ls=0.6//m
la=0.3//m
pi=3.14
//refer fig4.16 in book
t=t1-t2//degree celcius
x1=as*ls*t//contraction in steel bar
x2=aa*la*t//contaction in aluminium bar
x=x1+x2//total contraction
//assume support B is removed,therefore there will no stress in bar,let us assume P force is applied to the right end to brougth in contact with support B..refer ffig 4.17
As=(pi/4)*ds^2//m^2//area of steel bar
Aa=(pi/4)*da^2//m^2
//we know dls=change in length=(P*ls)/(As*Es),therefore dls=P*1.455*10^-9//m
//dla=P*8.257*10^-9//m
//threfore total dl=dls + dla=9.712*10^-9 *P//m
//P*9.712*10^-9=x
P=x/(9.712*10^-9)
fs=P/As//stress in steel bar//N/m^2
fa=P/Aa//stress in aluminiumbar//N/m^2
//when supports are yielding by 0.1 mm
X=x-10^-4//m
P1=X/(9.712*10^-9)//N
fs1=P1/As//N/m^2
fa1=P1/Aa//N/m^2
printf(" the initial stress in steel bar is, %f N/m^2\n",fs)
printf("the initial stress in aluminium bar is,%f N/m^2\n",fa)
printf("the final stress in steel bar is,%f N/m^2\n",fs1)
printf("the final stress in alu bar is,%f N/m^2",fa1) |
fb3e1e08256ca21aa35661a1556ac30a1e770929 | 449d555969bfd7befe906877abab098c6e63a0e8 | /615/CH2/EX2.7/2_7.sce | 4536091470ffc89393d2cf2b3679edcccd2251b9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 557 | sce | 2_7.sce | //acids and bases//
//example 2.7//
N1=1/10;//normality of NaOH//
N2=1/20;//normality of HCl//
V1=1;//volume of NaOH in lit//
V2=1;//volume of HCl in lit//
printf("Since NaOH is stronger than HCl,the resultant solution will contain excess of NaOH");
V=V1+V2;//volume of resultant solution//
N=(N1*V1-N2*V2)/V;
printf("\nOH- ion concentration is %fg.ion/lit",N);
k=1*10^-14;//ionization constant of water//
H1=k/N;
H=H1/10^-13;
printf("\nH+ ion concentration is %f*10^-13g.ion/lit",H);
pH=-log10(H1);
printf("\npH of the solution is %f",pH);
|
b9b451a86bcf70d526819569d0a6479c6aaaba85 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1100/CH13/EX13.4/13_4.sce | be8a78670f108e89667cbd6ace7feb2a46e07f26 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 330 | sce | 13_4.sce | clc
//initialisation of variables
h1= 1371 //Btu/lb
h2s= 1149 //Btu/lb
h3= 118 //Btu/lb
Q1= 1253 //Btu/lb
W= 156 //Btu/lb
Qw= 680 //Btu/lb
//CALCULATIONS
Qh= h1-W-h3
y= W+0.9*Qh
r= y/Q1
x= Qh+Qw
z= y/x
//RESULTS
printf ('Fraction of energy supplied = %.2f ',r)
printf (' \n Fraction of energy supplied= %.2f ',z)
|
b17ef7acc2bf4d6f7c4d39812e13e66e194a96ec | 1cd726d8d89a8862be33ddcf214e11697981b87a | /SCILAB/Assignment-2.sce | 92f84ad695537fcab241ed21ce87954db4ad23ca | [] | no_license | raghavatreya/raghavnetbeanproject12 | d05194eb9fda37fbcadd3b98d5c5f1a6eecc28e4 | 39a70aa5ab6b818caa3ffe6d53d94b56d372ab65 | refs/heads/master | 2021-01-01T04:11:54.479691 | 2016-04-30T06:54:59 | 2016-04-30T06:54:59 | 57,429,400 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,200 | sce | Assignment-2.sce | // ans : 1 ------------------------------- 13 9 7
disp("1. Check value of variable -ve,+ve or zero using if-else")
x=input("Enter value : ") // input x
if x>0 then
disp("x is +ve")
elseif x==0 then
disp("x is zero")
else
disp("x ix -ve")
end
// ans 2 ---------------------------------
disp("While loop to print 1 to 5")
x=1
while x<=5 // using while loop
mprintf(" %d ",x)
x=x+1
end
disp("for loop to print 1 to 5")
for i=1:5 // using for loop
mprintf(" %d ",i)
end
//ans 3 ---------------------------------
disp("Matrix Addition")
A=[1,2,3; 4,5,6 ; 9,10,11]
B=[1,5,6; 7,9,4 ; 45,1,5]
C=[0,0,0;0,0,0;0,0,0]
disp("Matrix A")
disp(A)
disp("Matrix B")
disp(B)
disp("addition of A and B using for loop ")
disp("Matrix C=A+B")
for i=1:3 //matrix addition
for j=1:3
C(i,j)=A(i,j)+B(i,j)
end
end
disp(C)
disp("")
D=[0,0,0;0,0,0;0,0,0]
for i=1:3 // matrix multiplication
for j=1:3
p=1,q=1
for k=1:3
C(i,j)=C(i,j)+A(i,p)*B(q,j)
p=p+1
q=q+1
end
end
end
disp(" Matrix D=A*B using for loop")
disp(D)
//ans 4 ----------------------------------
disp("Transpose of A :")
for i=1:3
for j=1:3
C(i,j)=A(j,i)
end
end
disp(C)
// ans 5 ---------------------------------
disp("Printing reverse of a given Number")
m=input("Input A Number ")
y=int(m)
x=0
while y>=1
x=int((x*10))+int(modulo(y,10)); //type casting to neglect after decimal values
y=y/10;
end
mprintf("Reverse of given number is : %d",x);
//ans 6 -----------------------------------
y=input(" Enter A Number : ")
z=y
largest_digit=0
while y>=1
m=modulo(y,10)
if largest_digit<m then
largest_digit=m
end
y=y/10
end
mprintf("Largest digit of %d is : %d\n",z,largest_digit)
mprintf("Sum of first & last digit is : %d",m+modulo(z,10))
//ans 7 -----------------------------------
disp("Number of Colomn ")
x=input("Enter First Colomn Number")
disp(A)
//ans 8 -----------------------------------
disp("Ans : 8")
A=[1,4,8;5,4,7;6,7,4]
disp(A)
for i=1:3
for j=1:3
if modulo(A(i,j),5)==0 | modulo(A(i,j),7)==0 then
mprintf("A[%d][%d]=%d\n",i,j,A(i,j));
end
end
end
// Q9 is repeated question
//ans 10 -----------------------------------error
disp("Ans : 10")
for i=1:3
for j=1:3
flag=1
for i=1:sqrt(x)
if modulo(A(i,j),x)==0 then
flag=0
end
end
if flag==1 then
mprintf("A[%d][%d]=%d\n",i,j,A(i,j));
end
end
end
//ans 11------------------------------------
disp("Ans : 11")
sums=0
mul=1
x=input("Enter any no : ")
while x>=1
l=modulo(x,10)
sums=sums+int(l)
mul=mul*int(l)
x=x/10
end
if sums==mul then
disp("--- Perfect Number")
else
disp("--- Not Perfect No ")
end
//ans 12
x=input("Ans : 12 : Enter the no. of terms to display finbonacci series (>24): ")
f0=0
f1=1
disp(f0)
disp(f1)
for i=1:x-2
f2=f0+f1
f0=f1
f1=f2
disp(f2)
end
// delete an duplicate number for matrix
//ans 14
A=[5,5,5;5,5,5;5,5,5]
disp("ANs : 14 ")
disp(A)
s=A(1,1)+A(1,2)+A(1,3) // sum of first raw..
flag=1
for i=1:3
s1=0 // sum of raw
s2=0 // sum of column
for j=1:3
s1=s1+A(i,j)
s2=s2+A(j,i)
end
if s1~=s | s2~=s then
flag=0
break;
end
end
d1=0
d2=0
i=1
j=3
while i<=3
d1=d1+A(i,i)
d2=d2+A(i,j)
j=j-1
i=i+1
end
if d1~=s | d2~=s then
flag=0
end
if flag==1 then
disp("Magic Square")
else
disp("Not magic Square")
end
//ans 15
//1
mprintf("\n")
for line=1:4
for spaces=1:4-line
mprintf(" ")
end
for star=1:line
mprintf("* ")
end
mprintf("\n")
end
//2
for i=1:5
for spaces=1:5-i
mprintf(" ")
end
for j=1:i
mprintf("%d ",6-i)
end
mprintf("\n")
end
//3
c=65
for i=1:4
for spaces=1:4-i
mprintf(" ")
end
for j=1:i
mprintf("%c ",ascii(c))
c=c+1
end
mprintf("\n")
end
|
77d02000526ec4d979ab34e001ba23fa488ea061 | 5d82f71e1a123a1668d57610279c729e0da1f75d | /SMORA/scripts/SCILAB/plot_IVW_graphs.sci | 83688ed2168a381a784178cdada3ea6755b9e621 | [
"MIT"
] | permissive | jdtechio/smora-code | 7e43d967619b2284d47980b098f9ee30560b2f08 | 5e8ab18878bcb65aa945931c018292cd677f981c | refs/heads/master | 2020-06-14T08:14:48.608702 | 2016-12-12T20:25:31 | 2016-12-12T20:25:31 | 75,209,681 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,163 | sci | plot_IVW_graphs.sci | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
FILENAMES = ["statistics_online_SMORA_L.txt", "statistics_online_SMORA_XL.txt"];
tests = length(length(FILENAMES));
for i = 1:tests
FILENAME = FILENAMES(i);
Array = csvRead(FILENAME, ";",[],[],[],[],[],[2]);
pwm = Array(:,1);
samples = Array(:,2);
voltage = Array(:,3);
current = Array(:,4);
velocity = Array(:,5);
subplot(tests, 2, i*2-1)
ax2=gca();
plot(voltage, current)
ax2.margins(3)=0.15;
ax2.margins(4)=0.15;
//ax2.axes_visible(1)="off";//hide labels ans tics of y axis
//xtitle(sprintf("PWM: %d, AVG VELOCITY: %7.3f", PWM, avg_velocity), "us", "degrees")
xtitle(FILENAME);
xlabel("Voltage (V)");
ylabel("Current (mA)");
subplot(tests, 2, i*2)
ax1=gca();
plot(voltage, velocity)
ax1.margins(3)=0.15;
ax1.margins(4)=0.15;
//ax1.axes_visible(1)="off";//hide labels ans tics of y axis
//xtitle(sprintf("CURRENT - MEAN:%7.3f, DEV:%7.3f", avg_current, deviation_current), "us", "mA")
xtitle(FILENAME);
xlabel("Voltage (v)");
ylabel("Velocity (°/s)");
end
|
cf8f7056abab1baea68764941093d840a826b5e1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1871/CH4/EX4.35/Ch04Ex35.sce | e433ea0f41bff69d026363756281ca1fa0a30691 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 406 | sce | Ch04Ex35.sce | // Scilab code Ex4.35: : Pg:188 (2008)
clc;clear;
N = 500; // Number of fringes
x = 0.01474; // Distance traversed by the mirror when N fringes cross the field of view, cm
//Since x = N*Lambda/2, solving for Lambda
Lambda = 2*x/(N*1e-08); // wavelngth of light, angstrom
printf("\nThe wavelength of light = %4.0f angstrom", Lambda);
// Result
// The wavelength of light = 5896 angstrom |
09d692324248d9f25720f5800d70ac18c4674f18 | 2eac84edf941c64588fef76f10d02309aabcb2fb | /Library/Math/Scilab/starter.sce | 8700a6a8baa9455eb1ef5965930fa96ba3c79e0b | [
"BSD-3-Clause"
] | permissive | AlexisTM/X2C | fdd93bd33b931ea448ba516f5e3f9af6a5149a6a | 31f39b598afe271a7fd46ef1ee9e06c410b1120c | refs/heads/master | 2021-08-07T04:26:24.391617 | 2017-11-07T14:34:33 | 2017-11-07T14:34:33 | 109,844,123 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 13,232 | sce | starter.sce | // This file was generated by createLibraryStarter.sce on 03-03-2017 01:17
mprintf("+++ Loading X2C library Math\n");
funcprot(0);
jimport("at.lcm.x2c.utils.Utils");
X2CRootDir = jinvoke(jinvoke(Utils, "getRootDirectory"), "toString");
X2CRootDir = strsubst(X2CRootDir, "\", "/");
curDir = strsubst(pwd(), "\", "/");
fs = filesep();
// load interface functions
exec("x2c_uSub.sci", -1);
exec("x2c_uAdd.sci", -1);
exec("x2c_Sum.sci", -1);
exec("x2c_Sub.sci", -1);
exec("x2c_Sqrt.sci", -1);
exec("x2c_Sin.sci", -1);
exec("x2c_Sign.sci", -1);
exec("x2c_Negation.sci", -1);
exec("x2c_Mult.sci", -1);
exec("x2c_L2Norm.sci", -1);
exec("x2c_Exp.sci", -1);
exec("x2c_Div.sci", -1);
exec("x2c_Cos.sci", -1);
exec("x2c_Average.sci", -1);
exec("x2c_Atan2.sci", -1);
exec("x2c_Add.sci", -1);
exec("x2c_Abs.sci", -1);
// load/create palette for library
if isfile("Math.xpal")
// palette already exists -> load saved palette
xcosPalAdd("Math.xpal", "X2C");
else
// load blocks and build palette
pal = xcosPal("Math");
allIconsAvailable = %t;
// Abs
mprintf("Loading block Abs...")
o = x2c_Abs("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Abs" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../../General/Doc/Images/Dummy.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Add
mprintf("Loading block Add...")
o = x2c_Add("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Add" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../Doc/Images/Add.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Atan2
mprintf("Loading block Atan2...")
o = x2c_Atan2("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Atan2" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../Doc/Images/Atan2.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Average
mprintf("Loading block Average...")
o = x2c_Average("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Average" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../../General/Doc/Images/Dummy.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Cos
mprintf("Loading block Cos...")
o = x2c_Cos("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Cos" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../Doc/Images/Cos.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Div
mprintf("Loading block Div...")
o = x2c_Div("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Div" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../Doc/Images/Div.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Exp
mprintf("Loading block Exp...")
o = x2c_Exp("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Exp" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../../General/Doc/Images/Dummy.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// L2Norm
mprintf("Loading block L2Norm...")
o = x2c_L2Norm("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "L2Norm" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../../General/Doc/Images/Dummy.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Mult
mprintf("Loading block Mult...")
o = x2c_Mult("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Mult" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../Doc/Images/Mult.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Negation
mprintf("Loading block Negation...")
o = x2c_Negation("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Negation" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../../General/Doc/Images/Dummy.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Sign
mprintf("Loading block Sign...")
o = x2c_Sign("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Sign" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../../General/Doc/Images/Dummy.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Sin
mprintf("Loading block Sin...")
o = x2c_Sin("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Sin" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../Doc/Images/Sin.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Sqrt
mprintf("Loading block Sqrt...")
o = x2c_Sqrt("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Sqrt" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../../General/Doc/Images/Dummy.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Sub
mprintf("Loading block Sub...")
o = x2c_Sub("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Sub" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../Doc/Images/Sub.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// Sum
mprintf("Loading block Sum...")
o = x2c_Sum("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "Sum" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.image = "file:///" + curDir + "/../../General/Doc/Images/Dummy.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// uAdd
mprintf("Loading block uAdd...")
o = x2c_uAdd("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "uAdd" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.fillColor="#E8D600";
style.gradientColor="#E8D600";
style.image = "file:///" + curDir + "/../Doc/Images/Add.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// uSub
mprintf("Loading block uSub...")
o = x2c_uSub("define");
pal_icon = X2CRootDir + "Library" + fs + "Math" + fs + "Doc" + fs + "Icons" + fs + "uSub" + ".png";
if ~isfile(pal_icon)
pal_icon = [];
allIconsAvailable = %f;
end
style = struct();
style.rounded = %f; // rectangular block with sharp edges
style.fillColor = "#61BDFC" // light blue;
style.gradientColor = "#61BDFC" // light blue;
// ++ BlockGenerator: Style
style.fillColor="#E8D600";
style.gradientColor="#E8D600";
style.image = "file:///" + curDir + "/../Doc/Images/Sub.svg"
// -- BlockGenerator: Style
pal = xcosPalAddBlock(pal, o, pal_icon, style);
clear("o");
mprintf("done\n");
// load palette
xcosPalAdd(pal, "X2C");
if allIconsAvailable then
// save palette
xcosPalExport(pal, "Math.xpal");
end
// cleanup
clear("pal")
clear("pal_icon")
clear("style")
end
mprintf("---\n");
|
cae847768b61038d625c18078e78faaf9c487e54 | 449d555969bfd7befe906877abab098c6e63a0e8 | /27/CH10/EX10.3.3/Example_10_3_3.sce | 82b3e0c361e046f9c4631ae2263627133e0bf435 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 524 | sce | Example_10_3_3.sce | //Example 10.3.2 Page 358
//Non-Linear Dynamics and Chaos, First Indian Edition Print 2007
//Steven H. Strogatz
clear;
clear;
clc;
close;
set(gca(),"auto_clear","off") //hold on
r=0:0.1:5;
size1=length(r);
x=zeros(601,size1);
x(1,1:size1)=0.1;
for r1=1:size1
for n=1:600
x(n+1,r1)=r(r1)*x(n,r1)*(1-x(n,r1));
end
end
//z=zeros(301,size1);
for r1=1:size1
for n=300:600
//z(n-299,r1)=x(n+1,r1);
plot2d(r(r1),x(n+1),style=-2)
end
end
// End of Example |
af8ebd61dd84059eb3ab694170a2a840c3d72c52 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3816/CH3/EX3.2/3_2.sce | fb4cab769f1e06065b794c4add61eea2830bd849 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 236 | sce | 3_2.sce | clc;
clear;
S=108;//slot
m=3;
p=8;
disp('for 16 pole 3 phase machine :')
g1=S/(p*m);
disp(g1,'The integral slot winding is:')
disp('For 10 pole 3 phase machine :')
p1=5;
g2=S/(p1*m);
disp(g2,'The integral slot winding is:')
|
c4e08e71eed3b1c6f13bf971589f8cabcde3f388 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH22/EX22.5/22_5.sce | bfc474112b1f33761b438044f718a0c82d3abbab | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 595 | sce | 22_5.sce | //Example 22.5
//RBF Network
//Page no. 773
clc;clear;close;
deff('y=f(x)','y=10*sin(x)')
printf('Input\t\tDesired\t\tNetwork\t\tError\n\t\t Output\t\t Output\n---------------------------------------------------------\n')
in=[0.7053,0.7060,0.7097,1.5056,1.5103,1.5377,2.2481,2.2514,2.2599,3.7076,3.7229,3.7364,5.0002,5.0022,5.0028,6.3749,6.3799,6.3886]
n=[6.4828,6.4883,6.5164,9.9786,9.9816,9.9944,7.7926,7.7718,7.7180,-5.3625,-5.4910,-5.6034,-9.5884,-9.5828,-9.5809,0.9163,0.9663,1.0527]
for i=1:18
printf(' %.4f\t\t%.4f\t\t%.4f\t\t%.4f\n',in(i),f(in(i)),n(i),f(in(i))-n(i))
end |
7539829a2af69f0d49d9b44e5aaaedd5c21731eb | df82401a4fbb64f37b3ed00aa17d82600996f811 | /integracao - trapezio.sce | c3abcc6e58e7803f88e11cbee6851871b9595e51 | [] | no_license | ItaloOliveiraF/Algoritmos | 9600fa8e95fed942414250e92e93286320548795 | ff32fb26414e14d7b55b39cba7025eb2f844ea5b | refs/heads/master | 2020-04-04T19:11:32.124542 | 2018-10-26T02:59:35 | 2018-10-26T02:59:35 | 156,195,729 | 1 | 0 | null | 2018-11-05T09:56:50 | 2018-11-05T09:56:49 | null | UTF-8 | Scilab | false | false | 375 | sce | integracao - trapezio.sce | clear;
clc;
// Definição da função f(x)
function y = f(x)
y = log(x) - 1
endfunction
// Implementação Trapézio
function [I] = Trapezio(a, b, n)
h = (b-a)/n;
x = a:h:b;
y = f(x);
I = y(1);
for i=2:n
I = I + 2*y(i);
end
I = (h/2)*(I+y(n+1));
endfunction
// Exemplo de chamada
I = Trapezio(1, 3, 10)
|
ef3e41d019cc8ce4fce4ca398aaf58bdb6abedd8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /162/CH7/EX7.2/example72.sce | fbfbcf00e0e67884436d1e7cb3c7683e5d697c48 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 209 | sce | example72.sce | //Example 7.2
//Convolution of two periodic signals
clc;
x1=[1,2,3,4];
x2=[3,1,1,3];
X1=fft(x1,-1);
X2=fft(x2,-1);
X3=X1.*X2;
x3=fft(X3,1);
disp(x3,'Convolution of the two given periodic signals is'); |
1f5b8e3618e0af03702ce7061c7ba36a73136fb3 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/prony/prony8.sce | 6656f3e313fbce8c964a7da39812c6a802be10d5 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 346 | sce | prony8.sce | //check o/p when less than 3 i/p args are passed to the function
impr=[1 2 3 4 56 6 6];
den_ord=4;
[num,den]=prony(impr,num_ord);
disp(num);
disp(den);
//output
//!--error 10000
//Not enough input arguments
//at line 3 of function narginchk called by :
//at line 2 of function prony called by :
//[num,den]=prony(impr,num_ord);
|
21d5afee87ed7b6b701e4929f144a11992604fab | 449d555969bfd7befe906877abab098c6e63a0e8 | /2744/CH5/EX5.3/Ex5_3.sce | bf507d5bc3605682b9502e0b1c0bd42fcd833e67 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 543 | sce | Ex5_3.sce | clear;
clc;
d = 16;// inches
I = 618;// inch units
l = 24;// feet
f = 15/2;// tons/in^2
Z = I/(d/2);// inch-units
M_r = f*Z;// ton-inches
//If the load is uniformly spread over its span,BM = W*l/8
W1 = 8*M_r/(12*l);//tons
//If the load is concentrated at the centre,BM = W*l/4
W2 = 4*M_r/(12*l);//tons
printf('If the load is uniformly spread over its span, then W is given by \n W = %.1f tons\n = %.3f ton per foot run',W1,W1/l);
printf('\n If the load is concentrated at the centre, then W is given by\n W = %.2f tons',W2);
|
948da6c3692ec659983324891c7d0c0458de7e5e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3784/CH2/EX2.1/Ex2_1.sce | f6a4828be8aa58540832508d2cf79bb25edb2bc2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 951 | sce | Ex2_1.sce | clc
//variable initialisation
a1=0//Initial Firing Angle of Converter
Vl=460//Line to Line Voltage in Volts
Ia=170//armature Current in Ampere
Ra=0.0999//Armature Resistance in ohm
K=0.33
a2=30
N1=1750//Rotor Speed in rpm
//solution
Vm=(sqrt(2)/sqrt(3))*Vl
Va=(3*sqrt(3)/%pi)*Vm*cosd(a1)
Ia1=17
Eb1=Va-(Ia1*Ra)
N0=Eb1/K//no load Speed in rpm
Va2=Va*cosd(a2)//For alpha=30
Eb2=Va2-(Ia1*Ra)
N01=Eb2/K//No load speed at alpha=30
Eb3=K*N1//For Full load Condition
Va3=Eb3+(Ia*Ra)
a3=acosd(Va3/Va)
P=Va3*Ia
Irms=Ia*sqrt(((180-a3)/180))
Vph=Vl/sqrt(3)
pf=P/(3*Vph*Irms)//Power Factor
Eb4=Va3-(Ia1*Ra)
N4=Eb4/K
R=(N4-N1)*100/N1//Speed Regulation
printf('\n\n No load speed at alpha 0=%0.1f rpm\n\n',N0)
printf('\n\n No load speed at alpha 30=%0.1f rpm\n\n',N01)
printf('\n\n The Firing Angle for rated speed=%0.1f\n\n',a3)
printf('\n\n Power Factor at rated speed=%0.1f\n\n',pf)
printf('\n\n Speed Regulation=%0.1f\n\n',R)
|
0718e2536c102ad11be962661059314f4b9262cb | c28130b62911f5891f14826350089c73c907d3b5 | /exo15_cn2.sci | 1b4785858238946261924c2600fb3f2a8b75b848 | [
"MIT"
] | permissive | zyron92/Simulation_of_Cardiac_Excitation | f1709d032613f49427a72716b4e258c3b578b739 | 66813dc24128d9cb171e77d4f780b6bf54011d15 | refs/heads/master | 2021-01-19T10:25:43.810588 | 2017-02-16T12:58:38 | 2017-02-16T12:58:38 | 82,180,177 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 658 | sci | exo15_cn2.sci | //Appeler la fonction slaplacien
exec('exo7_slaplacien.sci',-1)
function[e_etoile]=cn2(e_mid,dt,D,n,L)
A = L .* (-dt/2) + eye(n*n,n*n)
b = ( L .* (dt/2) + eye(n*n,n*n))*e_mid
//factorisation ALU
A = sparse(A)
Lu_mat = umf_lufact(A);
//résoudre Ax=e_etoile
e_etoile = umf_lusolve(Lu_mat,b)
//libère la mémoire
umf_ludel(Lu_mat)
endfunction
//-- L'exemple --//
//D=1 //Constant conductivité
//n=2 //Taille de grille
//dt=2 //Pas de temps
//--les vecteurs (condition) initiaux de taille n*n et matrice L qu'on a choisi ; ici n=2
//e_mid=[1,0,1,0]'
//--affiche les valeurs de e*
//L=slaplacien(D,n);
//[e_etoile]=cn2(e_mid,dt,D,n,L)
|
62b30dac29baae1f6b9ccbe76ce57e159ccff9fa | 178822612bcd418dc12ba7a649304a24ab618d60 | /Numerical Analysis/PointfixeSystemeCorr.sci | 8feb20415c2f0549ea1cf200cb9aeff1bc077c14 | [] | no_license | engom/Math_Problem_Solving | b56c6cbfbff6c416c519795b9ab8f0c0bbba5ea3 | 6538c476681ae4ee803ea9b3a8944c5f370e1961 | refs/heads/master | 2022-05-25T01:13:16.123161 | 2016-02-13T11:32:28 | 2016-02-13T11:32:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 115 | sci | PointfixeSystemeCorr.sci | function [x]=PointfixeSysteme(f,x0,niter)
x(:,1)=x0;
for i=1:niter,
x(:,i+1)=f(x(:,i));
end
endfunction |
2ff0f6782678d63eab5a1742f22af6ced7b8e788 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3834/CH2/EX2.3.1/Ex2_3_1.sce | dc7ee3329b9cfb663886021da1500102b39c1939 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 523 | sce | Ex2_3_1.sce | //Fiber-optics communication technology, by Djafer K. Mynbaev and Lowell L. Scheiner
//Example 2.3.1
//OS=Windows 10
////Scilab version Scilab 6.0.0-beta-2(64 bit)
clc;
clear;
//given
lambda=650E-9;//wavelength in meter
h=6.6E-34;//Planck's constant in SI units
c=3E8;//velocity of light in m/s
Ep=(h*c/lambda);//energy of single photon in V
E=1e-3;///total energy in joules
N=(E/Ep);//number of photos
mprintf("\n Number of photons=%.1f x10^15 ",N/1e15);//division by 1e15 to convert the unit to x10^15
|
fc249e2c75f1fd909f58b7311830c5f0882de315 | 5f48beee3dc825617c83ba20a7c82c544061af65 | /tests/s/112.tst | 8850fbbd818467c572d340e8c106ebab653dd3ec | [] | no_license | grenkin/compiler | bed06cd6dac49c1ca89d2723174210cd3dc8efea | 30634ec46fba10333cf284399f577be7fb8e5b61 | refs/heads/master | 2020-06-20T12:44:17.903582 | 2016-11-27T03:08:20 | 2016-11-27T03:08:20 | 74,863,612 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 39 | tst | 112.tst | void main(void)
{
int x;
x+1=x;
}
|
44771a4ab143b09424eedb6db0a4b0ec8d8c45e7 | d145a801b8f64afaf9dd0330b93936ca3343cbdb | /test_suite/test-rest.tst | c1d4b62a533bc6435d38a4f17ea05ceb60b796f5 | [] | no_license | ChemCryst/crystals | 0fff27ff8576b7c7199e1eaa671407d50132b98e | 8087c68d7f05b903473cee1cb131c06f819dc660 | refs/heads/master | 2023-08-17T16:36:03.675124 | 2023-06-26T10:54:29 | 2023-06-26T10:54:29 | 152,602,292 | 2 | 0 | null | 2023-06-26T10:54:30 | 2018-10-11T14:09:45 | Roff | UTF-8 | Scilab | false | false | 31,070 | tst | test-rest.tst | \ Test the restraint processing
\set time slow
\rele print CROUTPUT:
#LIST 1
REAL 4.9249 11.0348 15.3223 90.0000 90.0000 90.0000
END
#SPACE
SYM P 21 21 21
END
#LIST 3
READ NSCATTERERS= 4
SCAT TYPE= C 0.003300 0.001600 2.310000 20.843920
CONT 1.020000 10.207510 1.588600 0.568700
CONT 0.865000 51.651249 0.215600
SCAT TYPE= H 0.000000 0.000000 0.493000 10.510910
CONT 0.322910 26.125731 0.140190 3.142360
CONT 0.040810 57.799770 0.003040
SCAT TYPE= N 0.006100 0.003300 12.212610 0.005700
CONT 3.132200 9.893310 2.012500 28.997540
CONT 1.166300 0.582600 -11.529010
SCAT TYPE= O 0.010600 0.006000 3.048500 13.277110
CONT 2.286800 5.701110 1.546300 0.323900
CONT 0.867000 32.908939 0.250800
END
#LIST 4
SCHEME 9 NPARAM= 0 TYPE=1/2FO
CONT WEIGHT= 2.0000000 MAX= 10000.0000 ROBUST=N
CONT DUNITZ=N TOLER= 6.0000 DS1= 1.0000
CONT DS2= 1.0000 QUASI= 0.2500
END
#
# Punched on 11/03/16 at 11:20:13
#
#LIST 5
READ NATOM = 22, NLAYER = 0, NELEMENT = 0, NBATCH = 0
OVERALL 1.597815 0.050000 0.050000 1.000000 -0.272027 0.0000000
ATOM O 1. 1.000000 0. 0.022787 0.392382 0.816344
CON U[11]= 0.023165 0.048976 0.050752 0.002610 0.000711 0.001690
CON SPARE= 1.00 0 27262979 1 0
ATOM C 2. 1.000000 0. 0.264040 0.383740 0.834406
CON U[11]= 0.031111 0.024769 0.032160 -0.003190 -0.000338 0.001515
CON SPARE= 1.00 0 27787267 1 0
ATOM N 3. 1.000000 0. 0.459793 0.408987 0.776060
CON U[11]= 0.022122 0.036908 0.032528 0.002634 -0.003084 0.001358
CON SPARE= 1.00 0 25690115 1 0
ATOM C 4. 1.000000 0. 0.396783 0.452845 0.690378
CON U[11]= 0.027880 0.031565 0.032000 0.003412 0.000903 -0.000984
CON SPARE= 1.00 0 25690115 1 0
ATOM C 5. 1.000000 0. 0.263518 0.368848 0.628233
CON U[11]= 0.036678 0.031267 0.031052 0.003556 0.001187 0.002210
CON SPARE= 1.00 0 25165827 1 0
ATOM O 6. 1.000000 0. 0.270916 0.253970 0.655054
CON U[11]= 0.062110 0.027582 0.036865 0.002381 -0.007355 -0.000883
CON SPARE= 1.00 0 25690115 1 0
ATOM C 7. 1.000000 0. 0.143769 0.167191 0.596659
CON U[11]= 0.085196 0.037372 0.043648 -0.002112 -0.006427 -0.012855
CON SPARE= 1.00 0 25690115 1 0
ATOM O 8. 1.000000 0. 0.165078 0.400843 0.559974
CON U[11]= 0.071291 0.038419 0.035651 0.005382 -0.013876 -0.000556
CON SPARE= 1.00 0 25165827 1 0
ATOM C 9. 1.000000 0. 0.331339 0.586277 0.680106
CON U[11]= 0.040136 0.029209 0.045047 0.004976 0.000650 -0.004393
CON SPARE= 1.00 0 25165827 1 0
ATOM C 10. 1.000000 0. 0.601360 0.540042 0.650835
CON U[11]= 0.034446 0.049134 0.049586 0.011722 0.005060 -0.009754
CON SPARE= 1.00 0 25165827 1 0
ATOM C 11. 1.000000 0. 0.360778 0.347552 0.923654
CON U[11]= 0.045786 0.039787 0.031428 -0.001340 -0.000093 0.005476
CON SPARE= 1.00 0 25165827 1 0
ATOM H 73. 1.000000 1. 0.136163 0.087136 0.633003
CON U[11]= 0.070760 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 1.00 0 524290 0 0
ATOM H 72. 1.000000 1. -0.035024 0.192784 0.593789
CON U[11]= 0.071532 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 1.00 0 524290 0 0
ATOM H 71. 1.000000 1. 0.231813 0.163619 0.540773
CON U[11]= 0.082407 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 1.00 0 25690114 0 0
ATOM H 91. 1.000000 1. 0.298191 0.634751 0.735234
CON U[11]= 0.051704 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 1.00 0 25165826 0 0
ATOM H 92. 1.000000 1. 0.182449 0.603075 0.635514
CON U[11]= 0.046401 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 1.00 0 25165826 0 0
ATOM H 101. 1.000000 1. 0.800588 0.556211 0.685836
CON U[11]= 0.087570 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 1.00 0 25165826 0 0
ATOM H 102. 1.000000 1. 0.627086 0.531419 0.585334
CON U[11]= 0.047074 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 1.00 0 25165826 0 0
ATOM H 113. 1.000000 1. 0.548422 0.329671 0.925729
CON U[11]= 0.064825 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 1.00 0 25165826 0 0
ATOM H 112. 1.000000 1. 0.320041 0.411907 0.962281
CON U[11]= 0.085151 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 1.00 0 25165826 0 0
ATOM H 111. 1.000000 1. 0.220924 0.273460 0.938925
CON U[11]= 0.091012 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 1.00 0 25165826 0 0
ATOM H 31. 1.000000 1. 0.627608 0.398644 0.789716
CON U[11]= 0.037649 0.000000 0.000000 0.000000 0.000000 0.000000
CON SPARE= 1.00 0 25690114 0 0
END
#LIST 13
CRYST FRIEDELPAIRS=N TWINNED=N SPREAD=GAUSSIA
DIFFRACTION GEOMETRY=UNKNOWN RADIATION=XRAYS
CONDI WAVEL= 0.71073 0.000 0.000 0.5869359 0.6427007 0.0001788 90.000
MATR 0.000000000 0.000000000 0.000000000
CONT 0.000000000 0.000000000 0.000000000
CONT 0.000000000 0.000000000 0.000000000
END
#LIST 23
MODIFY ANOM=Y EXTI=N LAYER=N BATCH=N
CONT PARTI=N UPDA=N ENANT=Y
MINIMI NSING= 0 F-SQ=Y RESTR=Y REFLEC=Y
ALLCYCLES U[MIN]= 0.00000000
CONT MIN-R= 0.000000 MAX-R= 100.000
CONT MIN-WR= 0.000000 MAX-WR= 100.000
CONT MIN-SUMSQ= 0.030000 MAX-SUMSQ= 10000.000
CONT MIN-MINFUNC= 0.000000 MAX-MINFUNC= 999999986991104.000
INTERCYCLE MIN-DR= -5.000000 MAX-DR= 100.000
CONT MIN-DWR= -5.000000 MAX-DWR= 100.000
CONT MIN-DSUMSQ=-10.000000 MAX-DSUMSQ= 10000.000
CONT MIN-DMINFUNC= 0.000000 MAX-DMINFUNC= 999999986991104.000
REFINE SPEC=CONSTRAIN UPDATE=PARAMETERS TOL= 0.60000
END
#LIST 28
READ NSLICE= 0 NOMIS= 0 NCOND= 0
MINIMA
CONT SINTH/L**2 = 0.01000
CONT RATIO = 2.00000
END
#LIST 39
OVERALL 0.00000000 0.00000000 0.00000000 0.00000000
CONT 0.00000000 0.00000000 0.00000000 0.00000000
CONT 0.00000000 0.00000000 0.00000000 0.00000000
READ NINT= 2 NREAL= 1
INT INFO 0 0 0 0 0 0
CONT 113 0 1 0 0
INT OVER 1 1 0 0 0 0
CONT 0 0 0 0 0
REAL SFLS 0. 1.000000 0.000000 0.000000 0.000000 0.000000
CONT 0.000000 0.000000 0.000000 0.000000 0.000000
END
#
# Punched on 11/03/16 at 11:22:47
#
#LIST 40
DEFAULTS TOLTYPE= 1 TOLERANCE= 1.210 MAXBONDS = 12
READ NELEM= 0 NPAIR= 0 NMAKE= 0 NBREAK= 0
END
#
# Punched on 11/03/16 at 11:23:09
#
#LIST 6
READ NCOEFFICIENT = 5, TYPE = COMPRESSED, UNIT = DATAFILE
INPUT H K L /FO/ RATIO
MULTIPLIERS 1.0 1.0 1.0 12.465121269 16.281723022
END
0 0 2 494 547 4 103 284 6 37 35 512 1 0 2 19 47 3 -12 -16 4 15 20 5 122 430 6 35
47 512 2 0 0 108 79 1 85 635 2 511 753 3 99 544 4 171 570 5 73 231 6 -32 -36 512
3 0 1 671 957 2 71 523 3 123 723 4 254 768 5 84 335 6 27 26 512 4 0 1 374 688 2
30 105 3 285 780 4 174 649 5 35 55 6 58 81 512 5 0 1 905 722 2 292 844 3 62 255
4 152 491 5 118 208 512 6 0 0 874 396 1 165 635 2 52 283 3 104 439 4 178 498 5
-16 -11 512 7 0 1 32 104 2 254 728 3 149 540 4 56 162 5 39 47 512 8 0 0 352 343
1 200 666 2 310 736 3 210 417 4 256 483 5 25 20 512 9 0 1 330 546 2 294 729 3 97
235 4 113 182 512 10 0 0 11 6 1 106 344 2 118 396 3 87 135 4 112 179 512 11 0 1
25 30 2 12 12 3 80 116 4 41 38 512 12 0 0 84 133 1 93 224 2 16 13 3 62 74 512 13
0 1 12 7 2 106 188 512 14 0 0 173 168 1 12 5 512
0 1 1 559 367 2 579 785 3 379 767 4 75 328 5 81 290 6 58 116 512 1 1 -6 38 55 -5
178 491 -4 68 256 -3 140 530 -2 485 763 2 484 784 3 139 658 4 72 306 5 181 476 6
24 19 512 2 1 -6 51 78 -5 124 396 -4 299 641 -3 80 452 -2 317 841 -1 509 900 0
736 192 1 507 828 2 321 805 3 81 434 4 301 696 5 126 409 6 44 66 512 3 1 -6 22
19 -5 214 541 -4 131 622 -3 392 758 -2 199 767 -1 297 816 0 422 542 1 295 896 2
200 763 3 387 912 4 135 661 5 211 612 6 11 5 512 4 1 -6 34 29 -5 80 201 -4 132
633 -3 154 733 -2 448 846 -1 442 671 0 358 399 1 443 874 2 446 746 3 158 636 4
131 562 5 77 217 6 12 5 512 5 1 -5 35 45 -4 37 108 -3 236 672 -2 97 491 -1 195
644 0 72 323 1 191 661 2 97 617 3 232 712 4 36 103 5 40 69 512 6 1 -5 28 30 -4
170 529 -3 152 578 -2 133 662 -1 181 660 0 548 552 1 178 642 2 132 699 3 150 500
4 172 461 5 38 58 512 7 1 -5 204 315 -4 65 175 -3 221 602 -2 185 643 -1 184 585
0 123 394 1 189 561 2 190 701 3 220 619 4 66 170 5 205 266 512 8 1 -5 92 176 -4
112 287 -3 93 333 -2 156 554 -1 184 473 0 279 479 1 184 562 2 157 612 3 94 265 4
110 333 5 92 172 512 9 1 -4 99 149 -3 138 331 -2 120 519 -1 306 461 0 29 48 1
315 566 2 118 428 3 142 377 4 107 161 512 10 1 -4 66 85 -3 28 20 -2 157 389 -1
160 440 0 220 369 1 166 445 2 158 372 3 36 51 4 60 71 512 11 1 -4 50 47 -3 25 21
-2 28 64 -1 18 20 0 65 152 1 18 22 2 30 66 3 -15 -9 4 54 51 512 12 1 -3 58 68 -2
75 163 -1 21 21 0 35 54 1 16 9 2 71 182 3 42 67 512 13 1 -2 62 129 -1 50 95 0 47
65 1 49 81 2 55 92 512 14 1 -1 32 37 0 58 83 1 46 71 512
0 2 1 942 367 2 414 813 3 351 728 4 212 655 5 93 292 6 44 63 512 1 2 -6 55 92 -5
144 352 -4 229 676 -3 326 628 -2 369 825 -1 412 647 0 -6 -7 1 412 797 2 368 783
3 323 751 4 225 674 5 152 438 6 59 112 512 2 2 -6 4 1 -5 106 338 -4 189 624 -3
107 496 -2 282 769 -1 423 867 0 615 428 1 424 898 2 283 758 3 111 588 4 185 611
5 107 343 6 22 15 512 3 2 -6 25 22 -5 76 304 -4 175 733 -3 404 855 -2 296 889 -1
214 802 0 999 729 1 218 870 2 291 864 3 401 841 4 180 758 5 77 230 6 24 14 512 4
2 -6 55 81 -5 125 428 -4 244 648 -3 67 393 -2 329 778 -1 343 731 0 73 327 1 347
902 2 328 814 3 68 325 4 246 653 5 117 376 6 55 78 512 5 2 -5 126 299 -4 168 566
-3 177 670 -2 344 756 -1 101 507 0 45 179 1 100 649 2 349 932 3 175 656 4 168
550 5 124 348 512 6 2 -5 111 251 -4 61 185 -3 93 324 -2 310 824 -1 385 674 0 604
550 1 387 647 2 313 836 3 97 429 4 69 219 5 116 246 512 7 2 -5 -24 -21 -4 135
322 -3 121 480 -2 58 293 -1 165 583 0 289 534 1 166 668 2 56 236 3 122 490 4 137
395 5 -24 -20 512 8 2 -5 15 8 -4 123 228 -3 140 422 -2 238 705 -1 146 381 0 72
248 1 144 603 2 234 629 3 146 373 4 119 276 5 33 40 512 9 2 -4 80 121 -3 68 107
-2 145 522 -1 60 178 0 -7 -2 1 63 211 2 140 529 3 70 179 4 82 134 512 10 2 -4 67
92 -3 140 220 -2 105 341 -1 76 275 0 44 102 1 79 262 2 103 399 3 130 317 4 61 62
512 11 2 -4 48 48 -3 37 41 -2 44 118 -1 59 126 0 131 325 1 63 181 2 56 173 3 42
49 4 39 40 512 12 2 -3 60 75 -2 22 20 -1 143 310 0 33 59 1 139 270 2 21 25 3 48
70 512 13 2 -2 46 66 -1 56 96 0 19 18 1 63 114 2 46 73 512 14 2 -1 20 13 0 58 94
1 18 11 512
0 3 1 450 663 2 386 762 3 88 475 4 120 535 5 25 32 6 10 4 512 1 3 -6 59 100 -5
114 333 -4 79 345 -3 206 707 -2 519 774 0 184 668 2 514 798 3 204 749 4 81 363 5
117 380 6 57 111 512 2 3 -6 11 5 -5 65 170 -4 88 387 -3 55 228 -2 609 704 -1 379
918 0 132 424 1 377 778 2 600 812 3 55 265 4 86 352 5 64 192 6 0 0 512 3 3 -6 67
114 -5 174 556 -4 212 675 -3 152 636 -2 393 848 -1 350 601 1 357 777 2 385 877 3
149 687 4 214 716 5 172 451 6 58 91 512 4 3 -6 33 28 -5 37 72 -4 49 183 -3 192
774 -2 276 839 -1 250 660 0 170 548 1 250 935 2 282 707 3 195 721 4 50 167 5 21
28 6 -7 -2 512 5 3 -5 87 229 -4 89 435 -3 57 227 -2 292 765 -1 379 678 0 230 578
1 383 766 2 290 774 3 55 223 4 93 337 5 79 220 512 6 3 -5 46 69 -4 125 379 -3
154 593 -2 280 789 -1 441 699 0 352 596 1 446 738 2 282 781 3 157 599 4 126 371
5 53 100 512 7 3 -5 47 83 -4 35 69 -3 156 544 -2 305 761 -1 131 487 0 300 604 1
131 579 2 306 728 3 155 589 4 30 56 5 41 54 512 8 3 -5 24 12 -4 92 211 -3 108
330 -2 148 449 -1 324 567 0 51 158 1 321 658 2 145 567 3 103 278 4 90 250 5 19
14 512 9 3 -4 82 113 -3 73 122 -2 184 432 -1 89 298 0 365 460 1 85 346 2 181 507
3 72 188 4 73 111 512 10 3 -4 47 50 -3 71 120 -2 38 41 -1 148 387 0 102 310 1
152 405 2 27 65 3 60 128 4 44 50 512 11 3 -3 -8 -1 -2 94 212 -1 72 192 0 261 385
1 60 177 2 84 224 3 59 65 512 12 3 -2 58 91 -1 149 291 0 54 120 1 154 334 2 47
91 3 -10 -4 512 13 3 -2 61 95 -1 70 146 0 77 160 1 73 129 2 71 134 512 14 3 0
-21 -18 512
0 4 1 35 330 2 650 758 3 86 457 4 37 104 5 189 498 6 76 150 512 1 4 -6 38 55 -5
0 0 -4 358 670 -3 344 736 -2 224 782 -1 568 700 0 10 38 1 552 658 2 221 787 3
337 796 4 359 590 5 9 5 6 41 61 512 2 4 -6 47 49 -5 86 237 -4 133 542 -3 282 796
-2 367 903 -1 333 943 0 352 726 1 336 778 2 359 824 3 282 717 4 134 551 5 82 249
6 52 76 512 3 4 -6 55 52 -5 57 169 -4 94 463 -3 110 609 -2 144 780 -1 387 777 0
142 378 1 394 895 2 143 612 3 112 576 4 99 412 5 60 164 6 78 96 512 4 4 -6 54 62
-5 173 543 -4 96 479 -3 89 517 -2 268 889 -1 687 656 0 22 74 1 699 905 2 268 708
3 85 398 4 90 343 5 172 444 6 62 105 512 5 4 -5 28 38 -4 140 588 -3 106 532 -2
163 665 -1 274 697 0 871 598 1 275 747 2 162 706 3 108 509 4 130 464 5 30 41 512
6 4 -5 65 118 -4 50 130 -3 171 625 -2 205 609 -1 105 373 0 87 377 1 106 615 2
205 747 3 171 568 4 48 127 5 63 122 512 7 4 -5 101 142 -4 118 338 -3 95 336 -2
61 229 -1 113 421 0 10 8 1 116 642 2 67 298 3 93 366 4 121 352 5 100 204 512 8 4
-5 25 15 -4 134 205 -3 35 45 -2 236 563 -1 111 359 0 229 555 1 113 533 2 233 611
3 47 97 4 132 381 5 35 39 512 9 4 -4 18 7 -3 61 82 -2 153 451 -1 169 452 0 517
589 1 171 640 2 149 527 3 60 143 4 16 6 512 10 4 -4 39 30 -3 41 55 -2 110 188 -1
219 371 0 212 394 1 219 519 2 110 371 3 46 76 4 12 4 512 11 4 -3 98 130 -1 92
248 0 181 329 1 88 271 2 77 250 3 98 206 512 12 4 -3 90 115 -2 35 47 -1 94 235 0
21 27 1 80 226 2 38 67 3 93 168 512 13 4 -2 88 154 -1 15 9 0 124 216 1 22 21 2
81 142 512 14 4 0 38 39 512
0 5 1 9 20 2 666 628 3 484 773 4 49 167 5 32 57 6 88 107 512 1 5 -6 42 30 -5 157
355 -4 271 612 -3 291 732 -2 68 373 -1 438 874 0 750 718 1 437 794 2 69 495 3
288 712 4 271 665 5 152 412 6 44 32 512 2 5 -6 58 64 -5 199 490 -4 258 641 -3
151 649 -2 202 876 -1 237 980 0 372 776 1 240 777 2 201 728 3 147 709 4 259 683
5 204 490 6 77 111 512 3 5 -6 68 78 -5 77 269 -4 216 633 -3 98 527 -2 30 135 -1
365 785 0 909 539 1 367 916 2 34 149 3 100 521 4 214 500 5 76 221 6 48 49 512 4
5 -5 36 67 -4 57 224 -3 163 710 -2 175 842 -1 384 696 0 465 816 1 384 929 2 171
685 3 163 660 4 53 154 5 42 68 512 5 5 -5 66 162 -4 193 568 -3 105 527 -2 203
654 -1 296 496 0 299 536 1 301 785 2 204 674 3 110 485 4 194 531 5 65 143 512 6
5 -5 95 149 -4 125 364 -3 280 680 -2 83 361 -1 262 548 0 150 522 1 262 827 2 81
456 3 276 653 4 127 414 5 89 192 512 7 5 -5 85 111 -4 78 225 -3 277 538 -2 147
484 -1 110 398 0 473 601 1 119 598 2 146 590 3 288 589 4 81 237 5 75 132 512 8 5
-5 47 35 -4 33 32 -3 166 367 -2 85 314 -1 274 526 0 87 357 1 276 726 2 86 356 3
165 392 4 39 63 5 69 103 512 9 5 -4 98 156 -3 86 179 -2 132 301 -1 335 460 0 249
552 1 338 692 2 138 463 3 81 194 4 111 156 512 10 5 -4 108 127 -3 122 237 -2 133
225 -1 85 251 0 200 417 1 87 304 2 128 402 3 120 198 4 104 128 512 11 5 -3 26 21
-1 73 176 0 93 229 1 72 215 2 60 142 3 36 53 512 12 5 -3 61 76 -2 39 63 -1 87
184 0 46 107 1 84 202 2 46 80 3 42 60 512 13 5 -2 57 71 -1 63 108 0 114 205 1 52
91 2 54 93 512
0 6 0 530 626 1 109 692 2 226 838 3 158 669 4 209 638 5 196 463 6 72 91 512 1 6
-6 -12 -4 -5 71 182 -4 213 572 -3 209 686 -2 276 704 -1 163 999 0 191 885 1 167
667 2 270 805 3 211 699 4 210 550 5 71 205 6 29 22 512 2 6 -6 40 34 -5 60 197 -4
196 581 -3 125 678 -2 397 799 -1 687 939 0 224 632 1 680 695 2 395 700 3 126 723
4 196 696 5 57 110 6 35 27 512 3 6 -5 97 316 -4 93 430 -3 140 687 -2 25 109 -1
125 748 0 226 755 1 128 858 2 24 77 3 139 610 4 91 324 5 97 225 512 4 6 -5 113
333 -4 174 578 -3 210 722 -2 132 702 -1 23 54 0 341 811 1 26 143 2 130 610 3 210
731 4 174 497 5 112 263 512 5 6 -5 88 186 -4 151 459 -3 113 540 -2 298 620 -1 88
349 0 131 643 1 92 596 2 295 734 3 112 488 4 148 458 5 99 230 512 6 6 -5 101 133
-4 40 101 -3 100 403 -2 233 618 -1 129 425 0 525 625 1 134 670 2 231 737 3 97
339 4 47 106 5 104 225 512 7 6 -5 95 125 -4 143 323 -3 175 412 -2 172 527 -1 225
477 0 126 378 1 226 745 2 178 543 3 176 498 4 144 345 5 73 139 512 8 6 -4 170
196 -3 176 377 -2 157 439 -1 147 380 0 211 577 1 150 588 2 161 605 3 176 406 4
175 328 512 9 6 -4 18 10 -3 79 173 -2 99 207 -1 153 371 0 119 412 1 149 570 2
100 392 3 77 186 4 45 38 512 10 6 -4 20 10 -3 156 204 -2 45 67 -1 117 311 0 40
89 1 118 426 2 32 73 3 158 288 4 7 1 512 11 6 -3 10 3 -2 155 266 -1 22 27 0 62
151 1 17 21 2 141 326 3 34 51 512 12 6 -2 57 111 -1 21 17 0 114 234 1 32 47 2 59
92 512 13 6 -1 54 98 0 -13 -8 1 44 66 512
0 7 1 65 369 2 253 729 3 352 740 4 112 424 5 119 301 512 1 7 -5 76 191 -4 142
500 -3 101 506 -2 82 507 -1 417 868 0 446 917 1 412 678 2 80 617 3 100 585 4 136
538 5 73 176 512 2 7 -5 97 218 -4 70 258 -3 142 724 -2 224 764 -1 85 624 0 459
781 1 82 474 2 219 699 3 139 749 4 69 336 5 84 204 512 3 7 -5 28 29 -4 72 298 -3
132 608 -2 443 734 -1 78 491 0 306 855 1 77 568 2 439 770 3 132 625 4 78 287 5
37 56 512 4 7 -5 85 173 -4 59 203 -3 153 682 -2 255 749 -1 384 585 0 17 49 1 386
836 2 249 766 3 155 664 4 57 153 5 80 172 512 5 7 -5 12 7 -4 188 598 -3 45 194
-2 120 419 -1 319 560 0 86 484 1 325 864 2 121 564 3 42 140 4 184 575 5 20 17
512 6 7 -5 18 6 -4 91 289 -3 140 350 -2 51 308 -1 119 413 0 84 410 1 116 638 2
50 217 3 137 438 4 89 305 5 24 13 512 7 7 -5 59 75 -4 55 108 -3 132 318 -2 139
616 -1 163 465 0 269 710 1 158 685 2 138 620 3 129 343 4 59 103 5 56 68 512 8 7
-4 93 155 -3 26 32 -2 82 185 -1 261 445 0 23 46 1 256 676 2 78 335 3 24 30 4 94
207 512 9 7 -4 72 100 -3 28 36 -2 204 284 -1 98 295 0 112 300 1 91 350 2 199 545
3 32 28 4 69 81 512 10 7 -3 37 40 -2 31 34 -1 141 293 0 90 252 1 134 389 2 41 99
3 43 80 512 11 7 -3 36 31 -2 97 134 -1 89 209 0 142 297 1 87 215 2 89 190 3 35
55 512 12 7 -2 115 197 -1 88 177 0 75 145 1 80 151 2 119 200 512 13 7 -1 12 7 0
12 7 1 36 45 512
0 8 0 866 487 1 136 775 2 89 645 3 85 536 4 119 499 5 18 9 512 1 8 -5 72 102 -4
91 379 -3 219 707 -2 178 874 -1 510 883 0 416 792 1 508 606 2 175 806 3 218 819
4 88 403 5 68 100 512 2 8 -5 155 377 -4 153 521 -3 76 428 -2 69 387 -1 421 859 0
303 668 1 411 722 2 74 437 3 70 340 4 154 487 5 153 207 512 3 8 -5 44 64 -4 77
307 -3 200 677 -2 177 785 -1 91 619 0 168 613 1 93 502 2 175 709 3 200 733 4 73
267 5 44 42 512 4 8 -5 107 206 -4 113 418 -3 245 697 -2 121 586 -1 251 759 0 346
713 1 253 788 2 117 532 3 244 703 4 109 368 5 112 177 512 5 8 -5 90 181 -4 55
185 -3 90 405 -2 127 485 -1 250 568 0 27 94 1 248 819 2 125 569 3 93 361 4 53
171 5 81 116 512 6 8 -5 38 24 -4 31 39 -3 16 16 -2 65 364 -1 345 569 0 299 630 1
344 780 2 68 345 3 16 19 4 31 42 5 39 24 512 7 8 -4 76 101 -3 92 211 -2 241 495
-1 183 455 0 78 379 1 186 695 2 244 621 3 96 344 4 77 185 512 8 8 -4 69 104 -3
86 228 -2 89 254 -1 295 336 0 41 105 1 294 735 2 87 357 3 95 170 4 73 138 512 9
8 -4 11 3 -3 99 144 -2 145 244 -1 73 193 0 129 385 1 76 285 2 140 470 3 105 259
4 32 21 512 10 8 -3 108 159 -2 75 122 -1 61 144 0 104 276 1 67 202 2 78 199 3
116 168 512 11 8 -3 128 174 -2 65 136 -1 97 228 0 42 82 1 100 239 2 68 136 3 113
197 512 12 8 -2 72 114 -1 146 257 0 33 60 1 144 251 2 80 151 512 13 8 0 102 159
512
0 9 1 134 648 2 -12 -27 3 148 587 4 133 515 5 99 141 512 1 9 -5 68 118 -4 8 7 -3
290 766 -2 221 870 -1 245 871 0 9 20 1 246 784 2 220 725 3 289 795 4 -7 -5 5 60
82 512 2 9 -5 44 59 -4 99 408 -3 228 707 -2 289 839 -1 39 195 0 197 616 1 37 181
2 285 439 3 226 630 4 97 351 5 23 15 512 3 9 -4 131 486 -3 171 567 -2 246 731 -1
149 780 0 182 808 1 151 661 2 244 619 3 171 640 4 130 402 5 20 10 512 4 9 -5 42
48 -4 149 439 -3 166 542 -2 96 463 -1 103 525 0 224 686 1 104 535 2 102 498 3
163 602 4 142 339 5 52 44 512 5 9 -5 47 68 -4 119 328 -3 164 429 -2 179 540 -1
215 622 0 336 800 1 216 689 2 177 717 3 169 433 4 123 295 5 45 42 512 6 9 -4 59
82 -3 79 220 -2 97 408 -1 167 533 0 83 453 1 167 637 2 98 479 3 80 290 4 64 144
5 51 55 512 7 9 -4 71 90 -3 67 172 -2 20 51 -1 237 441 0 187 478 1 245 678 2 7 5
3 73 185 4 76 172 512 8 9 -3 25 27 -2 55 201 -1 82 182 0 88 328 1 76 352 2 54
222 3 7 3 4 110 149 512 9 9 -4 27 18 -3 96 145 -2 171 426 -1 65 160 0 68 174 1
61 216 2 169 385 3 99 219 512 10 9 -3 46 43 -2 73 121 -1 105 252 0 49 122 1 107
266 2 64 145 3 46 77 512 11 9 -2 72 133 -1 50 83 0 50 97 1 45 98 2 68 143 512 12
9 -1 20 13 0 -22 -22 1 0 0 512
0 10 0 227 525 1 57 281 2 355 756 3 179 688 4 89 311 5 39 33 512 1 10 -5 12 6 -4
132 458 -3 327 709 -2 132 698 -1 99 643 0 75 531 1 99 601 2 128 640 3 329 712 4
135 445 5 -8 -1 512 2 10 -5 85 169 -4 228 530 -3 181 761 -2 164 718 -1 138 663 0
137 933 1 141 693 2 161 737 3 178 626 4 229 451 5 85 116 512 3 10 -4 53 115 -3
298 597 -2 123 529 -1 307 769 0 379 775 1 303 703 2 119 597 3 294 663 4 52 70 5
9 2 512 4 10 -5 103 183 -4 123 312 -3 137 435 -2 60 251 -1 226 716 0 118 582 1
221 837 2 61 391 3 135 453 4 115 180 5 112 150 512 5 10 -5 24 22 -4 127 353 -3
72 236 -2 72 290 -1 156 670 0 73 395 1 155 696 2 72 393 3 75 294 4 121 223 5 17
6 512 6 10 -4 65 84 -3 48 94 -2 197 459 -1 253 527 0 235 589 1 256 755 2 203 529
3 48 106 4 78 97 512 7 10 -4 20 13 -3 147 334 -2 97 342 -1 94 287 0 398 536 1
101 491 2 93 351 3 146 415 4 10 3 512 8 10 -4 93 122 -3 47 72 -2 150 402 -1 192
410 0 218 478 1 191 517 2 150 381 3 35 69 4 100 133 512 9 10 -3 81 128 -2 30 30
-1 110 280 0 40 88 1 109 367 2 39 66 3 78 127 512 10 10 -3 38 40 -1 57 136 0 10
5 1 57 123 2 -30 -23 3 34 34 512 11 10 -2 44 59 -1 62 125 0 141 273 1 69 156 2
45 83 512 12 10 -1 113 162 0 -23 -19 1 117 173 512
0 11 1 51 244 2 183 748 3 39 175 4 142 231 5 6 1 512 1 11 -5 39 58 -4 85 185 -3
90 473 -2 228 735 -1 439 727 0 217 735 1 436 797 2 229 622 3 82 274 4 92 143 5
43 39 512 2 11 -5 25 22 -4 20 23 -3 130 552 -2 280 686 -1 339 840 0 187 588 1
339 749 2 284 654 3 128 363 4 -13 -6 5 46 39 512 3 11 -5 50 64 -4 58 133 -3 66
257 -2 182 618 -1 72 420 0 145 664 1 74 414 2 181 508 3 66 220 4 56 95 5 42 43
512 4 11 -5 27 20 -4 83 186 -3 91 350 -2 76 288 -1 28 75 0 156 658 1 32 104 2 74
291 3 92 276 4 83 137 5 -18 -8 512 5 11 -4 26 24 -3 97 320 -2 68 204 -1 260 646
0 161 511 1 261 812 2 63 417 3 97 352 4 26 22 512 6 11 -4 65 96 -3 66 128 -2 197
486 -1 214 650 0 179 588 1 213 632 2 196 485 3 67 245 4 56 67 512 7 11 -4 6 1 -3
96 179 -2 115 396 -1 226 368 0 323 543 1 228 632 2 115 354 3 100 206 4 20 8 512
8 11 -3 48 53 -2 76 265 -1 18 17 0 101 299 1 27 53 2 83 157 3 27 34 512 9 11 -3
60 83 -2 18 11 -1 70 176 0 31 56 1 73 202 2 14 12 3 59 110 512 10 11 -1 64 150 0
4 1 1 67 178 2 75 132 512 11 11 -2 13 6 -1 80 170 0 48 87 1 79 165 2 0 0 512
0 12 0 241 544 1 14 20 2 80 320 3 241 691 4 20 17 5 27 19 512 1 12 -5 27 21 -4
47 69 -3 93 411 -2 39 147 -1 166 670 0 62 290 1 165 470 2 36 169 3 97 447 4 33
27 5 39 29 512 2 12 -5 33 31 -4 71 156 -3 90 356 -2 208 574 -1 146 658 0 114 486
1 148 792 2 210 549 3 90 218 4 66 118 5 6 1 512 3 12 -4 18 20 -3 71 281 -2 28 57
-1 345 723 0 131 595 1 343 532 2 28 65 3 72 300 4 20 14 512 4 12 -4 91 202 -3 79
310 -2 58 232 -1 167 560 0 26 117 1 165 531 2 61 227 3 79 271 4 99 141 512 5 12
-4 23 19 -3 7 3 -2 45 91 -1 88 370 0 28 100 1 88 356 2 38 84 3 19 33 4 -17 -10
512 6 12 -4 57 76 -3 72 114 -2 94 307 -1 152 463 0 30 93 1 151 497 2 97 307 3 74
125 4 65 96 512 7 12 -4 -25 -12 -3 120 177 -2 26 46 -1 70 232 0 77 237 1 65 300
2 28 69 3 117 169 4 32 24 512 8 12 -3 31 29 -2 25 28 -1 164 323 0 19 31 1 161
320 2 21 38 3 35 64 512 9 12 -3 56 81 -1 48 65 0 85 197 1 39 89 2 50 115 3 49 86
512 10 12 -2 -4 -1 -1 35 63 0 43 90 1 35 66 2 19 16 512 11 12 -1 55 96 0 15 14 1
57 84 512
0 13 1 92 426 2 296 457 3 139 362 4 83 185 512 1 13 -4 107 216 -3 9 6 -2 125 493
-1 226 476 0 39 233 1 225 461 2 125 409 3 19 22 4 98 135 512 2 13 -4 77 133 -3
100 301 -2 187 549 -1 114 571 0 232 563 1 118 629 2 180 303 3 101 204 4 71 102
512 3 13 -4 45 66 -3 33 61 -2 94 371 -1 169 696 0 274 584 1 168 571 2 96 437 3
37 54 4 49 58 512 4 13 -4 33 37 -3 103 306 -2 83 291 -1 49 210 0 23 52 1 50 220
2 87 341 3 102 168 4 32 20 512 5 13 -4 122 212 -3 57 111 -2 211 247 -1 158 510 0
110 550 1 160 393 2 206 268 3 47 72 4 126 169 512 6 13 -4 75 84 -3 177 283 -2 46
74 -1 96 332 0 44 157 1 103 201 3 162 202 4 73 91 512 7 13 -3 30 22 -2 16 21 -1
81 256 1 78 399 2 18 41 3 46 110 512 8 13 -3 33 36 -2 42 59 -1 81 244 0 31 84 1
81 179 512 9 13 -2 -17 -8 -1 35 71 0 60 146 1 41 82 2 24 32 512 10 13 -1 50 70 0
95 143 1 34 50 512
0 14 0 65 114 1 211 440 2 19 34 3 43 69 4 37 38 512 1 14 -4 26 24 -3 24 39 -2
162 442 -1 102 378 0 287 639 1 104 324 2 158 414 3 8 3 4 24 21 512 2 14 -4 63
112 -3 50 139 -2 65 247 -1 222 544 0 60 190 1 220 684 2 64 266 3 55 96 4 57 81
512 3 14 -4 45 66 -3 94 273 -2 123 390 -1 177 608 0 181 475 1 178 585 2 126 386
3 91 146 4 62 68 512 4 14 -4 70 118 -3 163 287 -2 25 42 -1 257 473 0 55 185 1
253 417 2 28 55 4 85 109 512 5 14 -3 59 106 -2 110 213 -1 41 118 0 179 428 1 33
85 2 104 161 3 67 116 512 6 14 -3 67 104 -2 -17 -18 -1 109 344 0 16 43 1 107 195
512 7 14 -3 119 182 -2 103 204 -1 79 270 0 67 202 512 8 14 -2 58 88 -1 87 213 1
91 197 512 9 14 -2 62 80 -1 30 30 0 24 29 512 10 14 0 36 44 512
0 15 1 168 333 2 24 46 3 45 73 4 42 47 512 1 15 -3 72 148 -2 56 56 -1 88 312 0
57 337 1 83 217 2 46 118 3 76 176 4 54 69 512 2 15 -4 51 54 -3 79 224 -2 26 43
-1 221 470 0 52 179 1 232 261 2 10 7 3 84 173 4 36 37 512 3 15 -3 93 208 -2 164
358 -1 113 359 0 306 345 1 116 255 2 163 427 3 96 157 512 4 15 -3 66 137 -2 41
80 -1 117 388 0 65 172 1 115 292 3 75 121 512 5 15 -3 67 102 -2 103 234 -1 55
160 0 35 42 1 52 101 3 73 115 512 6 15 -3 124 174 -2 41 62 -1 111 182 0 29 23
512 7 15 -2 69 115 -1 34 63 0 139 202 512 8 15 -2 20 19 -1 61 142 0 52 117 512 9
15 -1 24 30 0 32 52 512
0 16 0 33 36 1 27 23 2 -4 -1 3 49 90 512 1 16 -3 49 77 -2 45 85 -1 163 298 0 58
96 1 158 341 2 42 87 3 57 95 512 2 16 -3 22 26 -2 70 175 -1 127 403 0 126 234 1
126 176 2 72 178 3 24 27 512 3 16 -3 48 77 -2 78 203 -1 46 80 0 34 29 1 50 63 2
76 87 3 45 77 512 4 16 -3 33 39 -2 129 186 -1 8 6 0 157 354 1 17 9 2 133 173 3
15 8 512 5 16 -3 33 38 -2 50 82 -1 65 242 0 29 21 1 64 107 512 6 16 -2 36 46 -1
122 302 0 -22 -16 512 7 16 -2 119 149 -1 41 41 0 9 3 512 8 16 0 29 25 512
0 17 1 -22 -14 2 16 13 3 120 148 512 1 17 -3 44 51 -2 46 105 -1 37 37 0 61 99 1
50 45 2 37 76 3 52 62 512 2 17 -3 20 15 -2 31 45 -1 39 40 0 96 171 1 38 27 2 20
10 3 29 23 512 3 17 -3 16 8 -2 73 169 -1 39 51 0 40 33 1 45 48 2 79 110 3 -20
-11 512 4 17 -1 58 70 0 46 52 1 54 50 2 49 38 512 5 17 -2 50 73 -1 61 97 0 11 4
1 50 56 2 42 41 512 6 17 -1 111 147 0 41 35 1 104 134 512 7 17 0 66 84 1 69 82
512
0 18 1 -28 -21 2 51 86 512 1 18 -1 46 49 0 36 33 1 42 33 2 83 93 512 2 18 -2 79
151 0 -26 -22 1 116 139 2 78 88 512 3 18 -2 60 110 0 45 50 1 27 18 512 4 18 -2
-18 -17 -1 71 99 0 62 59 1 67 77 512 5 18 -1 73 85 0 27 19 512 6 18 0 116 115
512
0 19 1 -18 -9 512 1 19 -1 43 29 0 81 108 1 43 31 512 2 19 0 146 153 1 -7 -1 512
3 19 0 -19 -12 1 73 69 512 4 19 0 24 11 -512
# Punched on 11/03/16 at 11:20:23
#LIST 16
NO
DIST 0.86, 0.02 =
CONT N ( 3) TO H(31)
REST 0.037, 0.002 = H(31,U[ISO])
ANGLE 0.0, 2.0 = MEAN
CONT H(31) TO N ( 3) TO C(2)
CONT H(31) TO N ( 3) TO C(4)
REM 3 H ON SP 3
DIST 0.96, 0.02 =
CONT C ( 7) TO H(73)
CONT C ( 7) TO H(72)
CONT C ( 7) TO H(71)
REST 0.083, 0.002 = H(73,U[ISO])
REST 0.083, 0.002 = H(72,U[ISO])
REST 0.083, 0.002 = H(71,U[ISO])
ANGLE 109.54, 2.0 =
CONT O(6) TO C ( 7) TO H(73)
CONT O(6) TO C ( 7) TO H(72)
CONT O(6) TO C ( 7) TO H(71)
ANGLE 0.0, 2.0 = MEAN H(73) TO C ( 7) TO H(72)
CONT H(73) TO C ( 7) TO H(71)
CONT H(72) TO C ( 7) TO H(71)
U(IJ) 0.,.001= O(1) TO C(2)
VIB 0.,.001= O(1) TO C(2)
END
#
#LIST 12
BLOCK
CONT SCALE
CONT O ( 1 ,X'S,U'S) UNTIL C ( 11 )
CONT H ( 71 ,X'S,U[ISO]) UNTIL H ( 31 )
FIX C(7,X'S)
FIX O(1,U[22]) C(2,U[22])
REM FIX O(1,U'S) C(2,U'S)
END
#
#check
end
#sfls
ref
shift gen=0
end
#
#LIST 12
BLOCK
CONT SCALE
CONT O ( 1 ,X'S,U'S) UNTIL C ( 11 )
CONT H ( 71 ,X'S,U[ISO]) UNTIL H ( 31 )
FIX C(7,X'S)
rem FIX O(1,U[22]) C(2,U[22])
FIX O(1,U'S) C(2,U'S)
END
#
#check
end
#sfls
ref
shift gen=0
end
#
#LIST 16
SAME C(7) H(71) H(72) H(73) AND C(11) h(111) h(112) h(113)
END
\
#
#check
end
#sfls
ref
shift gen=0
end
#end
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.